Please add any issues or PR's to it's new location https://github.com/adopted-ember-addons/ember-drag-drop
Simple drag and drop addon for your Ember CLI app.
The goal is to allow you to add drag and drop to your app without having to become an expert in the browser's low level D&D API.
To use this addon, you don't need to:
When using this addon, you get to work with objects in your domain layer, just like everywhere else in Ember. The only two things you need to use are (as you might expect) Draggable Object and Draggable Object Target
ember install ember-drag-drop
Huge thanks to ic-droppable, from which I shamelessly stole as promised.
As of version 0.4.4 you can install the ember-drag-drop-polyfill to enable drag and drop actions on mobile devices. It is my intention to make mobile a first class citizen in this addon, but hopefully this can fill the gaps for now.
The draggable-object
component represents an object you want to drag onto a target.
The two things to provide to the component are:
<DraggableObject @content={{this}}>
{{name}}
</DraggableObject>
At the start of the drag a property of isDraggingObject will be set to true on the content object and false on drag end.
Optionally you can set actions on the component to get notified on drag start and end. The content value of the current object being dragged is sent as the parameter.
<DraggableObject @content={{this}} @dragStartHook={{fn this.myStartAction}} @dragEndHook={{fn this.myEndAction}}>
{{name}}
</DraggableObject>
If you wish to have a drag handle in your component to be the trigger for a drag start action, instead of the whole wrapped template you can specify the jquery selector in the component.
<DraggableObject @content={{this}} @dragHandle='.js-dragHandle'>
<a class="js-dragHandle dragHandle">This is the only element that triggers a drag action</a>
</DraggableObject>
There are two action hooks you can call as well. By default on start drag the element being dragged has an opacity of 0.5 set. If you want to override that and apply your own stylings you can use the 'dragStartHook' and/or the 'dragEndHook' The jquery event is passed as the only parameter.
<DraggableObject @content={{this}} @dragStartHook=(action 'dragStartAction') @dragEndHook=(action 'dragEndAction')}}
<a class="js-dragHandle dragHandle">This is the only element that triggers a drag action</a>
</DraggableObject>
// represents the controller backing the above template
Ember.Controller.extend({
// your regular controller code
actions: {
myStartAction: function(content) {
//Content is the same as the content parameter set above
},
myEndAction: function(content) {
//Content is the same as the content parameter set above
},
}
}
});
The draggable-object-target
represents a place to drag objects. This will trigger an action which accepts the dragged object as an argument.
The two things to provide to the component are:
The action is called with two arguments:
target
, which is the draggable-object-target component.... your regular template code
<DraggableObjectTarget @action={{fn this.increaseRating}} amount={{"5"}}>
Drag here to increase rating
</DraggableObjectTarget>
Optionally you can also get an action fired when an object is being dragged over and out of the drop target. No parameter is currently sent with these actions.
<DraggableObjectTarget @action={{fn this.increaseRating}} @amount={{"5"}} @dragOverAction={{fn this.myOverAction}} dragOutAction={{fn this.myDragOutAction}}>
Drag here to increase rating
</DraggableObjectTarget>
// represents the controller backing the above template
Ember.Controller.extend({
// your regular controller code
actions: {
increaseRating: function(obj,ops) {
var amount = parseInt(ops.target.amount);
obj.incrementProperty("rating",amount);
obj.save();
},
myOverAction: function() {
//will notify you when an object is being dragged over the drop target
},
myDragOutAction: function() {
//will notify you when an object has left the drop target area
},
}
}
});
You can check out an example of this is action here
We now have a basic sorting capabilities in this library. If you wrap the <SortableObjects>
component around your <DraggableObject>
components you can get an array of sorted elements returned.
**Important Note on Ember Versions: If you use Ember version 1.13.2 and above you must user at least addon version 0.3 if you use sorting If you use Ember version 1.12.1 and below you must use 0.2.3 if you use sorting This only applies if you use the sort capabilities, regular dragging is not version specific.
An Example:
<SortableObjects @sortableObjectList={{this.sortableObjectList}} @sortEndAction={{fn this.sortEndAction}} @enableSort={{true}} @useSwap={{true}} @inPlace={{false}} @sortingScope={{"sortingGroup"}}>
{{#each sortableObjectList as |item|}}
<DraggableObject content=item isSortable=true sortingScope="sortingGroup">
{{item.name}}
</DraggableObject>
{{/each}}
</SortableObjects>
On drop of an item in the list, the sortableObjectList is re-ordered and the sortEndAction is fired unless the optional parameter 'enableSort' is false. You can check out an example of this is action here
useSwap
defaults to true and is optional. If you set it to false, then the sort algorithm will cascade the swap of items, pushing the values down the list. See Demo
inPlace
defaults to false and is optional. If you set it to true, then the original list will be mutated instead of making a copy.
sortingScope
is optional and only needed if you have multiple lists on the screen that you want to share dragging between. See Demo
Note: It's important that you add the isSortable=true to each draggable-object or else that item will be draggable, but will not change the order of any item. Also if you set a custom sortingScope they should be the same for the sortable-object and the draggable-objects it contains.
When writing tests, there is a drag
helper you can use to help facilitate dragging and dropping.
.draggable-object.drag-handle
{ pageX: 0, pageY: 0 }
[
[{ clientX: 1, clientY: 500 }, '.drag-move-div'],
[{ clientX: 1, clientY: 600 }, '.drag-move-div']
]
or
[
[{ clientX: 1, clientY: 500 }], // moves drop selector
[{ clientX: 1, clientY: 600 }] // moves drop selector
]
{ pageX: 0, pageY: 0 }
afterDrag() {
// check on state of things
}
beforeDrop() {
// check on state of things
}
.drop-target-div
// new async helper
import { drag } from 'your-app/tests/helpers/drag-drop';
You can pass the CSS selector for the draggable-object-target
and pass a beforeDrop
callback.
Async test Example:
test('drag stuff', async function(assert) {
// setup component
await drag('.draggable-object.drag-handle', {
drop: '.draggable-container .draggable-object-target:nth-child(1)'
});
assert.equal("things happened", true);
});
In this example,
.draggable-object.drag-handle
draggable-object-target:eq(1)
.For a fuller example check out this integration test
Note #1 In order to use async / await style tests you need to tell ember-cli-babel to include a polyfill in ember-cli-build.js
Note #2 You don't have to use the new async/await helper. You can simply keep using the older drag helper ( which makes your tests far slower because you have to start the application for each test. ) This older helper only has one option ( beforeDrop )
// old drag helper
import { drag } from 'your-app/tests/helpers/ember-drag-drop';
For both draggable-object
and draggable-object-target
you can override the default class names and provide your own, or a variable class name by adding an overrideClass property to the component.
An Example:
<DraggableObjectTarget @overrideClass={{'my-new-class-name'}}>
</DraggableObjectTarget>