2024-02-08 21:17:55 +01:00
|
|
|
/**
|
|
|
|
* 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 "./egw_action";
|
|
|
|
import {Et2Tree} from "../etemplate/Et2Tree/Et2Tree";
|
2024-07-31 17:52:24 +02:00
|
|
|
import {EGW_AI_DRAG_ENTER, EGW_AI_DRAG_OUT, EGW_AO_STATE_FOCUSED, EGW_AO_STATE_SELECTED} from "./egw_action_constants";
|
2024-02-08 21:17:55 +01:00
|
|
|
import {egwBitIsSet} from "./egw_action_common";
|
2024-07-25 14:24:57 +02:00
|
|
|
import {SlTreeItem} from "@shoelace-style/shoelace";
|
2024-07-31 17:52:24 +02:00
|
|
|
import {EgwActionObject} from "./EgwActionObject";
|
2024-02-08 21:17:55 +01:00
|
|
|
|
2024-02-21 09:36:56 +01:00
|
|
|
|
2024-02-21 16:13:51 +01:00
|
|
|
export const EXPAND_FOLDER_ON_DRAG_DROP_TIMEOUT = 1000
|
2024-02-21 09:36:56 +01:00
|
|
|
|
2024-07-25 14:24:57 +02:00
|
|
|
export class EgwDragDropShoelaceTree extends egwActionObjectInterface{
|
|
|
|
node: SlTreeItem;
|
|
|
|
id: string;
|
|
|
|
tree: Et2Tree;
|
2024-07-31 17:52:24 +02:00
|
|
|
|
|
|
|
// Reference to the widget that's handling actions for us
|
|
|
|
public findActionTargetHandler : EgwActionObject;
|
2024-02-08 21:17:55 +01:00
|
|
|
|
2024-09-30 21:58:31 +02:00
|
|
|
private timeout : ReturnType<typeof setTimeout>;
|
|
|
|
|
|
|
|
constructor(_tree : Et2Tree)
|
|
|
|
{
|
|
|
|
|
|
|
|
super();
|
|
|
|
this.tree = _tree
|
2024-07-31 17:52:24 +02:00
|
|
|
this.findActionTargetHandler = _tree.widget_object;
|
2024-09-30 21:58:31 +02:00
|
|
|
}
|
2024-02-08 21:17:55 +01:00
|
|
|
|
2024-09-30 21:58:31 +02:00
|
|
|
public doTriggerEvent(egw_event : number, dom_event : Event)
|
|
|
|
{
|
|
|
|
const target = this.tree.findActionTarget(dom_event);
|
|
|
|
if(egw_event == EGW_AI_DRAG_ENTER)
|
|
|
|
{
|
|
|
|
target.target.classList.add("draggedOver", "drop-hover");
|
|
|
|
this.timeout = setTimeout(() =>
|
|
|
|
{
|
|
|
|
if(target.target.classList.contains("draggedOver"))
|
|
|
|
{
|
|
|
|
(<SlTreeItem>target.target).expanded = true
|
|
|
|
}
|
|
|
|
}, EXPAND_FOLDER_ON_DRAG_DROP_TIMEOUT)
|
|
|
|
}
|
|
|
|
else if(egw_event == EGW_AI_DRAG_OUT)
|
|
|
|
{
|
|
|
|
target.target.classList.remove("draggedOver", "drop-hover");
|
|
|
|
clearTimeout(this.timeout)
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
debugger;
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
2024-06-27 17:05:12 +02:00
|
|
|
|
2024-09-30 21:58:31 +02:00
|
|
|
public doSetState(_state)
|
|
|
|
{
|
|
|
|
if(!this.tree || !this.tree.focusItem)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2024-10-01 22:31:05 +02:00
|
|
|
if(this.stateChangeContext)
|
|
|
|
{
|
|
|
|
const target = this.tree.shadowRoot.querySelector("[id='" + this.stateChangeContext.id + "']");
|
|
|
|
|
|
|
|
// Just set the attribute, we're not changing the tree value
|
|
|
|
// The selected attribute will be reset by the tree next render()
|
|
|
|
if(target && egwBitIsSet(_state, EGW_AO_STATE_SELECTED))
|
|
|
|
{
|
|
|
|
target.setAttribute("selected", "");
|
|
|
|
}
|
|
|
|
else if(target)
|
|
|
|
{
|
|
|
|
target.removeAttribute("selected");
|
|
|
|
}
|
|
|
|
if(target && egwBitIsSet(_state, EGW_AO_STATE_FOCUSED))
|
|
|
|
{
|
|
|
|
target.focus();
|
|
|
|
}
|
|
|
|
}
|
2024-02-08 21:17:55 +01:00
|
|
|
|
2024-09-30 21:58:31 +02:00
|
|
|
// Update the "focused" flag
|
|
|
|
if(egwBitIsSet(_state, EGW_AO_STATE_FOCUSED))
|
|
|
|
{
|
2024-10-01 22:31:05 +02:00
|
|
|
this.tree.focus();
|
2024-09-30 21:58:31 +02:00
|
|
|
}
|
|
|
|
if(egwBitIsSet(_state, EGW_AO_STATE_SELECTED))
|
|
|
|
{
|
|
|
|
// _tree.selectItem(this.id, false); // false = do not trigger onSelect
|
|
|
|
}
|
|
|
|
}
|
2024-02-08 21:17:55 +01:00
|
|
|
|
2024-09-30 21:58:31 +02:00
|
|
|
doGetDOMNode()
|
|
|
|
{
|
|
|
|
return this.tree;
|
|
|
|
}
|
2024-02-08 21:17:55 +01:00
|
|
|
}
|