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 4e5a91f776 select2 4.0
2015-11-17 12:33:30 -07:00

54 lines
1.3 KiB
JavaScript

import Ember from 'ember';
const { Component, get, run: { schedule } } = Ember;
export default Component.extend({
tagName: 'select',
attributeBindings: [
'multiple',
],
options: null,
selected: null,
nameAttr: null,
placeholder: null,
change: function() {
let selectedInComponent = this.get('selected');
let selectedInWidget = this.$().val();
if (this.get('multiple')) {
if (selectedInWidget === null) {
selectedInWidget = [];
}
selectedInComponent = selectedInComponent.toString();
selectedInWidget = selectedInWidget.toString();
}
// We need this to prevent an infinite loop of afterRender -> change.
if (selectedInComponent !== selectedInWidget) {
this.attrs.update(this.$().val());
}
},
didInsertElement: function() {
let options = {};
options.placeholder = this.get('placeholder');
options.templateResult = function(item) {
if (!item.disabled) {
const text = get(item, 'element.innerHTML');
const $item = Ember.$(`<span>${text}</span>`);
return $item;
}
};
this.$().select2(options);
},
didRender: function() {
const selected = this.get('selected');
schedule('afterRender', this, function() {
this.$().val(selected).trigger('change');
});
},
});