
From what I can tell, the bottleneck is in selectize itself. Will drop this and work on select2.
64 lines
1.5 KiB
JavaScript
64 lines
1.5 KiB
JavaScript
import Ember from 'ember';
|
|
|
|
const { Component } = Ember;
|
|
|
|
export default Component.extend({
|
|
characteristics: null,
|
|
strains: null,
|
|
|
|
"on-search": null,
|
|
"update-strains": null,
|
|
"update-characteristics": null,
|
|
|
|
updateStrains: function(selection) {
|
|
this.attrs["update-strains"](selection);
|
|
},
|
|
|
|
updateCharacteristics: function(selection) {
|
|
this.attrs['update-characteristics'](selection);
|
|
},
|
|
|
|
actions: {
|
|
search: function() {
|
|
const query = {
|
|
strain_ids: this.get('selectedStrains'),
|
|
characteristic_ids: this.get('selectedCharacteristics'),
|
|
};
|
|
this.attrs['on-search'](query);
|
|
},
|
|
|
|
selectAllStrains: function() {
|
|
const strains = this.get('strains');
|
|
const strain_ids = [];
|
|
strains.forEach((strain) => {
|
|
strain_ids.push(strain.get('id'));
|
|
});
|
|
this.updateStrains(strain_ids);
|
|
},
|
|
|
|
deselectAllStrains: function() {
|
|
this.updateStrains([]);
|
|
},
|
|
|
|
selectAllCharacteristics: function() {
|
|
const chars = this.get('characteristics');
|
|
const char_ids = [];
|
|
chars.forEach((char) => {
|
|
char_ids.push(char.get('id'));
|
|
});
|
|
this.updateCharacteristics(char_ids);
|
|
},
|
|
|
|
deselectAllCharacteristics: function() {
|
|
this.updateCharacteristics([]);
|
|
},
|
|
|
|
updateStrainSelection: function(selection) {
|
|
this.updateStrains(selection);
|
|
},
|
|
|
|
updateCharacteristicSelection: function(selection) {
|
|
this.updateCharacteristics(selection);
|
|
},
|
|
},
|
|
});
|