select2 4.0
This commit is contained in:
parent
b19913aece
commit
4e5a91f776
3 changed files with 34 additions and 21 deletions
|
@ -1,6 +1,6 @@
|
|||
import Ember from 'ember';
|
||||
|
||||
const { Component } = Ember;
|
||||
const { Component, get, run: { schedule } } = Ember;
|
||||
|
||||
export default Component.extend({
|
||||
tagName: 'select',
|
||||
|
@ -11,24 +11,43 @@ export default Component.extend({
|
|||
options: null,
|
||||
selected: null,
|
||||
nameAttr: null,
|
||||
placeholder: null,
|
||||
|
||||
change: function() {
|
||||
this.attrs.update(this.$().select2('val'));
|
||||
},
|
||||
let selectedInComponent = this.get('selected');
|
||||
let selectedInWidget = this.$().val();
|
||||
|
||||
didInsertElement: function() {
|
||||
if (this.get('placeholder')) {
|
||||
this.$().select2({
|
||||
placeholder: this.get('placeholder'),
|
||||
});
|
||||
} else {
|
||||
this.$().select2();
|
||||
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() {
|
||||
Ember.run.schedule('afterRender', this, function() {
|
||||
this.$().select2('val', this.get('selected'));
|
||||
const selected = this.get('selected');
|
||||
schedule('afterRender', this, function() {
|
||||
this.$().val(selected).trigger('change');
|
||||
});
|
||||
},
|
||||
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
"qunit": "~1.20.0",
|
||||
"flakes": "~1.0.0",
|
||||
"moment": "~2.10.6",
|
||||
"select2": "3.5.2",
|
||||
"select2": "4.0.1-rc.1",
|
||||
"antiscroll": "git://github.com/azirbel/antiscroll.git#90391fb371c7be769bc32e7287c5271981428356",
|
||||
"jquery-mousewheel": "~3.1.4",
|
||||
"jquery-ui": "~1.11.4",
|
||||
|
|
|
@ -15,7 +15,7 @@ module.exports = function(defaults) {
|
|||
app.import('bower_components/quill/dist/quill.base.css');
|
||||
app.import('bower_components/quill/dist/quill.snow.css');
|
||||
// select2
|
||||
app.import('bower_components/select2/select2.css');
|
||||
app.import('bower_components/select2/dist/css/select2.min.css');
|
||||
|
||||
// LIBS ////////////////////////////////////////////////////////////////////////
|
||||
// flakes (and deps)
|
||||
|
@ -28,13 +28,7 @@ module.exports = function(defaults) {
|
|||
// quill
|
||||
app.import('bower_components/quill/dist/quill.min.js');
|
||||
// select2
|
||||
app.import('bower_components/select2/select2.min.js');
|
||||
|
||||
// MISC ////////////////////////////////////////////////////////////////////////
|
||||
// select2
|
||||
app.import('bower_components/select2/select2.png', { destDir: 'assets' });
|
||||
app.import('bower_components/select2/select2x2.png', { destDir: 'assets' });
|
||||
app.import('bower_components/select2/select2-spinner.gif', { destDir: 'assets' });
|
||||
app.import('bower_components/select2/dist/js/select2.full.min.js');
|
||||
|
||||
return app.toTree();
|
||||
};
|
||||
|
|
Reference in a new issue