Files
iTop/sources/Application/UI/Links/AbstractBlockLinksViewTable.php
bdalsass bdb29fd99a Issue/5074 - Routage, Block UI relations, Links row actions (#369)
* datatable row actions

Below is a sample of extra param to enable feature:

		$aExtraParams['row_actions'] = [
			[
				'tooltip'        => 'remove an element',
				'icon_css_class' => 'fa-minus',
				'js_row_action'   => 'console.log("You clicked the remove button");',
				'confirmation'  => [
					'message'                  => 'UI:ConfirmationMessage',
					'message_row_data'         => "name",
					'remember_choice_pref_key' => 'remove_do_not_show_again',
				],
			],
			[
				'tooltip'        => 'open in new tab',
				'icon_css_class' => 'fa-external-link-square-alt',
				'on_action_js'   => 'window.open("http://localhost/itop-branchs/dev/pages/UI.php?operation=details&class=UserRequest&id=" + aData.id + "&c[menu]=UserRequest%3AOpenRequests");',
			],
			[
				'tooltip'        => 'other actions',
				'icon_css_class' => 'fa-ellipsis-v',
				'on_action_js'   => 'console.log(event);',
			],
		];

* Contrôleur pour la suppression et le détachement de liens
* Block UI pour l'édition des relations
* Block UI pour la visualisation des relations
* Boutons d'actions pour la suppression et le détachement de liens
* Gestion dialogue de confirmation pour les row actions
2022-11-23 16:10:34 +01:00

170 lines
3.9 KiB
PHP

<?php
/**
* @copyright Copyright (C) 2010-2022 Combodo SARL
* @license http://opensource.org/licenses/AGPL-3.0
*/
namespace Combodo\iTop\Application\UI\Links;
use Combodo\iTop\Application\UI\Base\Component\MedallionIcon\MedallionIcon;
use Combodo\iTop\Application\UI\Base\Layout\UIContentBlock;
use MetaModel;
/**
* Class AbstractBlockLinksViewTable
*
* @internal
* @since 3.1.0
* @package Combodo\iTop\Application\UI\Links
*/
abstract class AbstractBlockLinksViewTable extends UIContentBlock
{
// Overloaded constants
public const BLOCK_CODE = 'ibo-abstract-block-links-view-table';
public const DEFAULT_JS_TEMPLATE_REL_PATH = 'application/links/layout';
public const DEFAULT_JS_FILES_REL_PATH = [
'js/links/link_set_worker.js',
];
/** @var \DBObject $oDbObject db object witch link set belongs to */
protected \DBObject $oDbObject;
/** @var string $sObjectClass db object class name */
protected string $sObjectClass;
/** @var string $sAttCode db object link set attribute code */
protected string $sAttCode;
/** @var \AttributeLinkedSet $oAttDef attribute link set */
protected \AttributeLinkedSet $oAttDef;
/** @var string $sTargetClass links target classname */
protected string $sTargetClass;
/**
* Constructor.
*
* @param \WebPage $oPage
* @param \DBObject $oDbObject
* @param string $sObjectClass
* @param string $sAttCode
* @param \AttributeLinkedSet $oAttDef
*
* @throws \CoreException
* @throws \Exception
*/
public function __construct(\WebPage $oPage, \DBObject $oDbObject, string $sObjectClass, string $sAttCode, \AttributeLinkedSet $oAttDef)
{
parent::__construct('', ["ibo-block-links-table"]);
// retrieve parameters
$this->oAttDef = $oAttDef;
$this->sAttCode = $sAttCode;
$this->sObjectClass = $sObjectClass;
$this->oDbObject = $oDbObject;
// Initialization
$this->Init();
// UI Initialization
$this->InitUI($oPage);
}
/**
* Init.
*
* @return void
* @throws \Exception
*/
private function Init()
{
$this->sTargetClass = $this->GetTargetClass();
}
/**
* Initialize UI.
*
* @return void
* @throws \CoreException
*/
private function InitUI(\WebPage $oPage)
{
// header
$this->InitHeader();;
// Table
$this->InitTable($oPage);
}
/**
* InitHeader.
*
* @return void
* @throws \CoreException
*/
private function InitHeader()
{
// MedallionIcon
$oClassIcon = new MedallionIcon(MetaModel::GetClassIcon($this->sTargetClass, false));
$oClassIcon->SetDescription($this->oAttDef->GetDescription())->AddCSSClass('ibo-block-list--medallion');
$this->AddSubBlock($oClassIcon);
}
/**
* InitTable.
*
* @param \WebPage $oPage
*
* @return void
* @throws \ApplicationException
* @throws \ArchivedObjectException
* @throws \CoreException
* @throws \CoreWarning
* @throws \DictExceptionMissingString
* @throws \MySQLException
*/
private function InitTable(\WebPage $oPage)
{
// retrieve db object set
$oOrmLinkSet = $this->oDbObject->Get($this->sAttCode);
$oLinkSet = $oOrmLinkSet->ToDBObjectSet(\utils::ShowObsoleteData());
// add list block
$oBlock = new \DisplayBlock($oLinkSet->GetFilter(), 'list', false);
$this->AddSubBlock($oBlock->GetRenderContent($oPage, $this->GetExtraParam(), 'rel_'.$this->sAttCode));
}
/**
* GetExtraParam.
*
* Provide parameters for display block as list.
*
* @see \DisplayBlock::RenderList
*
* @return array
* @throws \ArchivedObjectException
* @throws \CoreException
*/
abstract function GetExtraParam(): array;
/**
* Return row actions.
*
* Register row actions for table.
*
* @see \Combodo\iTop\Application\UI\Base\Component\DataTable\tTableRowActions
*
* @return \string[][]
*/
abstract function GetRowActions(): array;
/**
* GetTargetClass.
*
* Return link set target class.
*
* @return string
* @throws \Exception
*/
abstract function GetTargetClass(): string;
}