mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
9cbd0f8e78
REFACTOR: some moar ES6 refactoring
39 lines
1,022 B
JavaScript
39 lines
1,022 B
JavaScript
export default Ember.Component.extend({
|
|
tagName: 'div',
|
|
|
|
_init: function(){
|
|
this.$("input").select2({
|
|
multiple: true,
|
|
width: '100%',
|
|
query: function(opts) {
|
|
opts.callback({ results: this.get("available").map(this._format) });
|
|
}.bind(this)
|
|
}).on("change", function(evt) {
|
|
if (evt.added){
|
|
this.triggerAction({
|
|
action: "groupAdded",
|
|
actionContext: this.get("available").findBy("id", evt.added.id)
|
|
});
|
|
} else if (evt.removed) {
|
|
this.triggerAction({
|
|
action:"groupRemoved",
|
|
actionContext: evt.removed.id
|
|
});
|
|
}
|
|
}.bind(this));
|
|
|
|
this._refreshOnReset();
|
|
}.on("didInsertElement"),
|
|
|
|
_format(item) {
|
|
return {
|
|
"text": item.name,
|
|
"id": item.id,
|
|
"locked": item.automatic
|
|
};
|
|
},
|
|
|
|
_refreshOnReset: function() {
|
|
this.$("input").select2("data", this.get("selected").map(this._format));
|
|
}.observes("selected")
|
|
});
|