This repository has been archived on 2025-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
hymenobacterdotinfo/app/pods/components/x-select/component.js
Matthew Dillon dbcc51c80d WIP
2015-11-12 15:43:44 -07:00

39 lines
721 B
JavaScript

import Ember from 'ember';
const { Component } = Ember;
export default Component.extend({
tagName: 'select',
value: null,
nameAttr: null,
listItems: null,
placeholder: null,
selected: null,
selectize: null,
attributeBindings: [
'multiple',
],
change: function() {
this.attrs["update"](this.get('selectize').getValue());
},
didReceiveAttrs: function() {
this._super(...arguments);
if (!this.attrs.update) {
throw new Error(`You must provide an \`update\` action.`);
}
},
didInsertElement: function() {
this.$().selectize({
plugins: ['drag_drop'],
items: this.get('selected'),
});
this.set('selectize', this.$()[0].selectize);
},
});