|
|
@ -258,14 +258,12 @@ class Component extends StyleAndScriptStoringComponent { |
|
|
|
* @param {EventDrag} dragEvent |
|
|
|
* @param {Function} action |
|
|
|
*/ |
|
|
|
onDrag(dragEvent, action) { |
|
|
|
onDrag(dragEvent, action = (e) => { e.preventDefault(); }) { |
|
|
|
let selector = `comp-el-mech-drag${dragEvent}`; |
|
|
|
|
|
|
|
return this.addEventListener( |
|
|
|
dragEvent, |
|
|
|
function (event) { |
|
|
|
event.preventDefault(); |
|
|
|
} |
|
|
|
'drag' + dragEvent, |
|
|
|
action |
|
|
|
); |
|
|
|
} |
|
|
|
|
|
|
@ -276,25 +274,19 @@ class Component extends StyleAndScriptStoringComponent { |
|
|
|
*/ |
|
|
|
dropTarget(dndGroup = null) { |
|
|
|
let selector = "comp-el-mech-droptarget"; |
|
|
|
return this.onDrag(EventDrag.OVER) |
|
|
|
.addStyleClass(selector) |
|
|
|
.addEventListener( |
|
|
|
CommonEvents.DROP, |
|
|
|
function (event) { |
|
|
|
event.preventDefault(); |
|
|
|
|
|
|
|
let draggedKey = event.dataTransfer.getData("text"); |
|
|
|
let draggedElement = document.querySelector(`[data-autocompel="${draggedKey}"]`); |
|
|
|
function dropEventCall(event) { |
|
|
|
return dropEventHandler(event, selector); |
|
|
|
} |
|
|
|
|
|
|
|
let target = e.target |
|
|
|
.closest('.' + selector); |
|
|
|
this.addStyleClass(selector) |
|
|
|
.onDrag(EventDrag.OVER); |
|
|
|
|
|
|
|
if (![...target.childNodes].includes(draggedElement)) { |
|
|
|
target |
|
|
|
.appendChild(draggedElement); |
|
|
|
} |
|
|
|
} |
|
|
|
); |
|
|
|
this._element.addEventListener( |
|
|
|
"drop", |
|
|
|
dropEventCall |
|
|
|
); |
|
|
|
return this; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
@ -577,6 +569,7 @@ class Component extends StyleAndScriptStoringComponent { |
|
|
|
); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
if (this.#isCompel) { |
|
|
|
function dealCollected(map, extStoreType) { |
|
|
|
if (map.has(extStoreType)) { |
|
|
|