egroupware_official/api/js/egw_action/EgwDragDropShoelaceTree.ts

76 lines
2.3 KiB
TypeScript
Raw Normal View History

/**
* EGroupware egw_dragdrop_shoelaceTree - egw action framework
*
* @link https://www.egroupware.org
* @author Andreas Stöckel <as@stylite.de>
* @copyright 2011 by Andreas Stöckel
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
* @package egw_action
*/
import {EgwActionObjectInterface} from "./EgwActionObjectInterface";
import {egwActionObjectInterface} from "./egw_action";
import {Et2Tree} from "../etemplate/Et2Tree/Et2Tree";
2024-06-27 17:05:12 +02:00
import {
EGW_AI_DRAG_ENTER,
EGW_AI_DRAG_OUT,
EGW_AI_DRAG_OVER,
EGW_AO_STATE_FOCUSED,
EGW_AO_STATE_SELECTED
} from "./egw_action_constants";
import {egwBitIsSet} from "./egw_action_common";
import {SlTreeItem} from "@shoelace-style/shoelace";
2024-02-21 16:13:51 +01:00
export const EXPAND_FOLDER_ON_DRAG_DROP_TIMEOUT = 1000
export class EgwDragDropShoelaceTree extends egwActionObjectInterface{
node: SlTreeItem;
id: string;
tree: Et2Tree;
constructor(_tree:Et2Tree, _itemId: string) {
super();
this.node = _tree.getDomNode(_itemId);
this.id = _itemId
this.tree = _tree
this.doGetDOMNode = function () {
return this.node;
}
2024-06-27 17:05:12 +02:00
let timeout: NodeJS.Timeout;
this.doTriggerEvent = function (_event) {
2024-06-27 17:05:12 +02:00
if (_event == EGW_AI_DRAG_ENTER)
{
2024-06-27 17:05:12 +02:00
this.node.classList.add("draggedOver");
2024-06-27 17:05:12 +02:00
timeout = setTimeout(() => {
if (this.node.classList.contains("draggedOver"))
{
this.node.expanded = true
}
}, EXPAND_FOLDER_ON_DRAG_DROP_TIMEOUT)
}
if (_event == EGW_AI_DRAG_OUT)
{
(this.node).classList.remove("draggedOver");
2024-06-27 17:05:12 +02:00
clearTimeout(timeout)
}
return true
}
this.doSetState = function (_state) {
if (!_tree || !_tree.focusItem) return;
// Update the "focused" flag
if (egwBitIsSet(_state, EGW_AO_STATE_FOCUSED))
{
_tree.focusItem(this.id);
}
if (egwBitIsSet(_state, EGW_AO_STATE_SELECTED))
{
// _tree.selectItem(this.id, false); // false = do not trigger onSelect
}
}
}
}