mharris717 / ember-drag-drop

Drag and Drop Addon for Ember CLI
MIT License
204 stars 141 forks source link

Possible to style sortable options like Spotify? #177

Closed boonier closed 4 years ago

boonier commented 4 years ago

I'm trying to achieve this effect:

image

Where the index position indicator shows as a line, and the item being dragged shows as a tooltip.

Is something like this possible?

cheers

dgavey commented 4 years ago

Not really with the current events that are passed out. If you are using modern Ember (above 3.12) I would suggest just writing your components without this addon.

I wrote about that here a while back -> https://dev.to/dgavey/simple-drag-and-drop-in-ember-octane-466i

boonier commented 4 years ago

Thanks for the quick reply.