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/protected/compare/select-form/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

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);
},
},
});