Created
November 10, 2017 13:27
-
-
Save jgwhite/3c373586d5d89e2b660d14c4f64ac2e5 to your computer and use it in GitHub Desktop.
sortableeee
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
items: ['one', 'two', 'three', 'four'], | |
reorderItems(newOrder) { | |
this.set('items', newOrder); | |
}, | |
up(item) { | |
this.move(item, -1); | |
}, | |
down(item) { | |
this.move(item, 1); | |
}, | |
move(item, delta) { | |
let items = [...this.get('items')]; | |
let index = items.indexOf(item); | |
items.splice(index, 1); | |
items.splice(index + delta, 0, item); | |
console.log(items); | |
this.set('items', items); | |
} | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "0.12.1", | |
"EmberENV": { | |
"FEATURES": {} | |
}, | |
"options": { | |
"use_pods": false, | |
"enable-testing": false | |
}, | |
"dependencies": { | |
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.js", | |
"ember": "2.12.0", | |
"ember-template-compiler": "2.12.0", | |
"ember-testing": "2.12.0" | |
}, | |
"addons": { | |
"ember-data": "2.12.1", | |
"ember-sortable": "1.10.0" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment