-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Drag and drop | draggable=true demo #4
Comments
Additionally: Apparently the draggable attribute is not an actual boolean attribute, but an enumerated attribute. More info here: lit/lit-element#565 |
Neither of the elements in the below become draggable either through setting the
|
I've also tried a number of different naming variations on the |
Right I've figured this out after poking and prodding it for a good hour or so.
So there was a couple things I was doing wrong, that I'll document here in case others come across this, these may have been clear for someone working in LitElement but coming from Vanilla and React I didn't get it right away:
I think this is still worth setting up an example of drag and drop as it's a fairly common use case for more complex events than |
Sorry for the delay in getting back to you I think this could be good to add to the demos under the Would you be willing to make a PR to add a demo and add the writeup to the faq? |
See lit/lit#460 Gist: You need to have the drag events mutate the underlying data as you move stuff around. You cannot ever allow the DOM to change due to your drop/move, every DOM change has to be driven from the model. I'll share some code: case "start":
this._draggedId = itemId;
e.target.closest(".option-item").classList.add("drag-item");
break;
case "enter": {
if (this._draggedId == null) return; // ignore drag from other places
e.target.closest(".option-item").classList.add("drag-hover");
this._moveItem(this._draggedId, itemId);
// See https://developer.mozilla.org/en-US/docs/Web/API/HTML_Drag_and_Drop_API/Drag_operations#droptargets
e.preventDefault();
break;
}
case "over": {
// See https://developer.mozilla.org/en-US/docs/Web/API/HTML_Drag_and_Drop_API/Drag_operations#droptargets
e.preventDefault();
break;
}
case "leave":
if (this._draggedId == null) return; // ignore drag from other places
e.target.closest(".option-item").classList.remove("drag-hover");
break;
case "drop": {
if (this._draggedId == null) return; // ignore drag from other places
e.target.closest(".option-item").classList.remove("drag-hover");
e.target.closest(".option-item").classList.remove("drag-item");
this._moveItem(this._draggedId, itemId, true);
break;
}
case "end":
if (this._draggedId == null) return; // ignore drag from other places
e.target.closest(".option-item").classList.remove("drag-item");
this._draggedId = null;
break; Some DOM: this._model.map(
(m, idx) => html`
<div
@dragstart="${e => this.dndEvent("start", m.id, e)}"
@dragenter="${e => this.dndEvent("enter", m.id, e)}"
@dragover="${e => this.dndEvent("over", m.id, e)}"
@dragend="${e => this.dndEvent("end", m.id, e)}"
@dragleave="${e => this.dndEvent("leave", m.id, e)}"
@drop="${e => this.dndEvent("drop", m.id, e)}"
draggable="true"
>Item ${m.id}</div>`; Here, Works well for dragging stuff within a list... still figuring out how to drag and drop between different lists, etc. but the principle is the same: data-driven DOM changes |
Look into this complete sample draggable web-component project which was built using LitElement with JavaScript. I implement this with help of @jdu code. I hope this project will help you on this problem. https://github.com/rayanaradha/Draggable-web-component This project contains 3 classes. DragTestOnElement - Component for Draggable item. |
Would be nice to see an example for this as I'm struggling pretty badly trying to get drag and drop to work in LitElement at the moment. I can get it working with Vanilla js easily, but LitElement is doing my head in trying to figure it out without having to import the whole Polymer Gesture library.
The text was updated successfully, but these errors were encountered: