framework/ember/app/mixins/has-item-lists.js

46 lines
1.2 KiB
JavaScript
Raw Normal View History

import Ember from 'ember';
import TaggedArray from 'flarum/utils/tagged-array';
import ActionButton from 'flarum/components/ui/action-button';
export default Ember.Mixin.create({
itemLists: [],
initItemLists: Ember.on('didInsertElement', function() {
var self = this;
this.get('itemLists').forEach(function(name) {
self.initItemList(name);
});
}),
initItemList: function(name) {
this.set(name, this.populateItemList(name));
},
populateItemList: function(name) {
var items = TaggedArray.create();
this.trigger('populate'+name.charAt(0).toUpperCase()+name.slice(1), items);
return items;
},
addActionItem: function(items, tag, label, icon, conditionProperty, actionName, actionTarget) {
if (conditionProperty && !this.get(conditionProperty)) { return; }
var self = this;
actionTarget = actionTarget || self.get('controller');
var item = ActionButton.extend({
label: label,
icon: icon,
action: function() {
actionTarget.send(actionName || tag);
}
});
var itemInstance = item.create();
items.pushObjectWithTag(itemInstance, tag);
return itemInstance;
}
});