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 f0167c858d Checkin.
From what I can tell, the bottleneck is in selectize itself. Will drop
this and work on select2.
2015-11-13 08:16:53 -07:00

50 lines
1 KiB
JavaScript

import Ember from 'ember';
const { Component, isEmpty } = Ember;
export default Component.extend({
tagName: 'select',
nameAttr: null,
listItems: null,
placeholder: null,
selected: null,
selectize: null,
multiple: false,
attributeBindings: [
'multiple',
],
change: function() {
this.attrs["update"](this.$()[0].selectize.getValue());
},
didReceiveAttrs: function() {
this._super(...arguments);
console.log('didReceiveAttrs');
if (!this.attrs.update) {
throw new Error(`You must provide an \`update\` action.`);
}
Ember.run.schedule('actions', this, () => {
console.log('before adding');
this.$()[0].selectize.setValue(this.get('selected'), true);
console.log('after adding')
});
},
didInsertElement: function() {
console.log('didInsertElement');
const options = {
closeAfterSelect: true,
selectOnTab: true,
plugins: ['drag_drop'],
items: this.get('selected'),
}
this.$().selectize(options);
},
});