mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-22 18:18:46 +02:00
N°3190 - Edit n:n LinkedSetIndirect in object details using a tagset-like widget
- Add generic set block ui component - Add model link set (direct and indirect) attribute (display style) - Add model link set direct allowed values - Create link set viewer block UI (BlockLinksSetDisplayAsProperty) - Add set block ui factory for linkset - Add object factory and create new endpoint in object controller (with data binder) - Add link set model, link set repository and link set data transformer services
This commit is contained in:
397
sources/Application/UI/Base/Component/Input/Set/Set.php
Normal file
397
sources/Application/UI/Base/Component/Input/Set/Set.php
Normal file
@@ -0,0 +1,397 @@
|
||||
<?php
|
||||
/**
|
||||
* Copyright (C) 2013-2022 Combodo SARL
|
||||
*
|
||||
* This file is part of iTop.
|
||||
*
|
||||
* iTop is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* iTop is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
*/
|
||||
|
||||
namespace Combodo\iTop\Application\UI\Base\Component\Input\Set;
|
||||
|
||||
use Combodo\iTop\Application\UI\Base\Component\Input\AbstractInput;
|
||||
use Combodo\iTop\Application\UI\Base\Component\Input\Set\DataProvider\iDataProvider;
|
||||
use Dict;
|
||||
|
||||
/**
|
||||
* Class Set
|
||||
*
|
||||
* @package Combodo\iTop\Application\UI\Base\Component\Input\Set
|
||||
* @since 3.1.0
|
||||
*/
|
||||
class Set extends AbstractInput
|
||||
{
|
||||
// Overloaded constants
|
||||
public const BLOCK_CODE = 'ibo-set';
|
||||
public const DEFAULT_HTML_TEMPLATE_REL_PATH = 'base/components/input/set/layout';
|
||||
public const DEFAULT_JS_ON_READY_TEMPLATE_REL_PATH = 'base/components/input/set/layout';
|
||||
|
||||
public const DEFAULT_JS_FILES_REL_PATH = [
|
||||
'js/selectize/plugin_combodo_add_button.js',
|
||||
'js/selectize/plugin_combodo_auto_position.js',
|
||||
'js/selectize/plugin_combodo_update_operations.js',
|
||||
'js/selectize/plugin_combodo_multi_values_synthesis.js',
|
||||
];
|
||||
|
||||
/** @var int|null $iMaxItems Maximum number of items selectable */
|
||||
private ?int $iMaxItems;
|
||||
|
||||
/** @var int|null $iMaxItem Maximum number of displayed options */
|
||||
private ?int $iMaxOptions;
|
||||
|
||||
/** @var bool $bHasRemoveItemButton Enable remove item button */
|
||||
private bool $bHasRemoveItemButton;
|
||||
|
||||
/** @var bool $bHasAddOptionButton Enable add option button */
|
||||
private bool $bHasAddOptionButton;
|
||||
|
||||
/** @var string $sAddButtonTitle Add button title */
|
||||
private string $sAddButtonTitle;
|
||||
|
||||
/** @var bool $bIsPreloadEnabled Load data at initialization (ajax data provider only) */
|
||||
private bool $bIsPreloadEnabled;
|
||||
|
||||
/** @var string|null $sTemplateOptions Template for rendering options in dropdown (twig) */
|
||||
private ?string $sTemplateOptions;
|
||||
|
||||
/** @var string|null $sTemplateItems Template for rendering items in input (twig) */
|
||||
private ?string $sTemplateItems;
|
||||
|
||||
/** @var \Combodo\iTop\Application\UI\Base\Component\Input\Set\DataProvider\iDataProvider $oDataProvider Set data provider */
|
||||
private iDataProvider $oDataProvider;
|
||||
|
||||
/** @var bool $bIsMultiValuesSynthesis Used for bulk modify for example */
|
||||
private bool $bIsMultiValuesSynthesis;
|
||||
|
||||
/** @var bool $bHasError Error flag */
|
||||
private bool $bHasError;
|
||||
|
||||
/**
|
||||
* Constructor.
|
||||
*
|
||||
* @param string|null $sId Block identifier
|
||||
*/
|
||||
public function __construct(string $sId = null)
|
||||
{
|
||||
parent::__construct($sId);
|
||||
|
||||
// Initialization
|
||||
$this->Init();
|
||||
}
|
||||
|
||||
/**
|
||||
* Initialization.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
private function Init()
|
||||
{
|
||||
$this->SetValue('[]');
|
||||
// @todo BDA placeholder depending on autocomplete activation (search...., click to add...)
|
||||
$this->SetPlaceholder(Dict::S('Core:AttributeSet:placeholder'));
|
||||
$this->iMaxItems = null;
|
||||
$this->iMaxOptions = null;
|
||||
$this->bHasRemoveItemButton = true;
|
||||
$this->bHasAddOptionButton = false;
|
||||
$this->sAddButtonTitle = Dict::S('UI:Button:Create');
|
||||
$this->bIsPreloadEnabled = false;
|
||||
$this->sTemplateOptions = null;
|
||||
$this->sTemplateItems = null;
|
||||
$this->bIsMultiValuesSynthesis = false;
|
||||
$this->bHasError = false;
|
||||
}
|
||||
|
||||
/**
|
||||
* SetMaxItems.
|
||||
*
|
||||
* @param int|null $iMaxItems
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function SetMaxItems(?int $iMaxItems): Set
|
||||
{
|
||||
$this->iMaxItems = $iMaxItems;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* GetMaxItems.
|
||||
*
|
||||
* @return int|null
|
||||
*/
|
||||
public function GetMaxItems(): ?int
|
||||
{
|
||||
return $this->iMaxItems;
|
||||
}
|
||||
|
||||
/**
|
||||
* SetMaxOptions.
|
||||
*
|
||||
* @param int|null $iMaxOptions
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function SetMaxOptions(?int $iMaxOptions): Set
|
||||
{
|
||||
$this->iMaxOptions = $iMaxOptions;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* GetMaxOptions.
|
||||
*
|
||||
* @return int|null
|
||||
*/
|
||||
public function GetMaxOptions(): ?int
|
||||
{
|
||||
return $this->iMaxOptions;
|
||||
}
|
||||
|
||||
/**
|
||||
* SetHasRemoveItemButton.
|
||||
*
|
||||
* @param bool $bHasRemoveItemButton
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function SetHasRemoveItemButton(bool $bHasRemoveItemButton): Set
|
||||
{
|
||||
$this->bHasRemoveItemButton = $bHasRemoveItemButton;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* HasRemoveItemButton.
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
public function HasRemoveItemButton(): bool
|
||||
{
|
||||
return $this->bHasRemoveItemButton;
|
||||
}
|
||||
|
||||
/**
|
||||
* SetHasAddOptionButton.
|
||||
*
|
||||
* @param bool $bHasAddOptionButton
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function SetHasAddOptionButton(bool $bHasAddOptionButton): Set
|
||||
{
|
||||
$this->bHasAddOptionButton = $bHasAddOptionButton;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* HasAddOptionButton.
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
public function HasAddOptionButton(): bool
|
||||
{
|
||||
return $this->bHasAddOptionButton;
|
||||
}
|
||||
|
||||
/**
|
||||
* GetAddButtonTitle.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function GetAddButtonTitle(): string
|
||||
{
|
||||
return $this->sAddButtonTitle;
|
||||
}
|
||||
|
||||
/**
|
||||
* SetAddButtonTitle.
|
||||
*
|
||||
* @param string $sTitle
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function SetAddButtonTitle(string $sTitle): Set
|
||||
{
|
||||
$this->sAddButtonTitle = $sTitle;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* SetPreloadEnabled.
|
||||
*
|
||||
* @param bool $bEnabled
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function SetPreloadEnabled(bool $bEnabled): Set
|
||||
{
|
||||
$this->bIsPreloadEnabled = $bEnabled;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* IsPreloadEnabled.
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
public function IsPreloadEnabled(): bool
|
||||
{
|
||||
return $this->bIsPreloadEnabled;
|
||||
}
|
||||
|
||||
/**
|
||||
* SetOptionsTemplate.
|
||||
*
|
||||
* @param string $sTemplate
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function SetOptionsTemplate(string $sTemplate): Set
|
||||
{
|
||||
$this->sTemplateOptions = $sTemplate;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return options template.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function GetOptionsTemplate(): ?string
|
||||
{
|
||||
return $this->sTemplateOptions;
|
||||
}
|
||||
|
||||
/**
|
||||
* HasOptionsTemplate.
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
public function HasOptionsTemplate(): bool
|
||||
{
|
||||
return $this->sTemplateOptions != null;
|
||||
}
|
||||
|
||||
/**
|
||||
* SetItemsTemplate.
|
||||
*
|
||||
* @param string $sTemplate
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function SetItemsTemplate(string $sTemplate): Set
|
||||
{
|
||||
$this->sTemplateItems = $sTemplate;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return items template.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function GetItemsTemplate(): ?string
|
||||
{
|
||||
return $this->sTemplateItems;
|
||||
}
|
||||
|
||||
/**
|
||||
* HasItemsTemplate.
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
public function HasItemsTemplate(): bool
|
||||
{
|
||||
return $this->sTemplateItems != null;
|
||||
}
|
||||
|
||||
/**
|
||||
* SetDataProvider.
|
||||
*
|
||||
* @param \Combodo\iTop\Application\UI\Base\Component\Input\Set\DataProvider\iDataProvider $oDataProvider
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function SetDataProvider(iDataProvider $oDataProvider): Set
|
||||
{
|
||||
$this->oDataProvider = $oDataProvider;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get data provider.
|
||||
*
|
||||
* @return iDataProvider
|
||||
*/
|
||||
public function GetDataProvider(): iDataProvider
|
||||
{
|
||||
return $this->oDataProvider;
|
||||
}
|
||||
|
||||
/**
|
||||
* SetIsMultiValuesSynthesis.
|
||||
*
|
||||
* @param bool $bIsMultiValuesSynthesis
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function SetIsMultiValuesSynthesis(bool $bIsMultiValuesSynthesis): Set
|
||||
{
|
||||
$this->bIsMultiValuesSynthesis = $bIsMultiValuesSynthesis;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* IsMultiValuesSynthesis.
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
public function IsMultiValuesSynthesis(): bool
|
||||
{
|
||||
return $this->bIsMultiValuesSynthesis;
|
||||
}
|
||||
|
||||
/**
|
||||
* SetHasError.
|
||||
*
|
||||
* @param $bHasError
|
||||
*
|
||||
* @return $this
|
||||
*/
|
||||
public function SetHasError($bHasError): Set
|
||||
{
|
||||
$this->bHasError = $bHasError;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* HasError.
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
public function HasError(): bool
|
||||
{
|
||||
return $this->bHasError;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user