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/controller.js
Matthew Dillon 24c870353f 'Select All' in compare.
Fixes #8
2015-09-03 10:50:01 -07:00

41 lines
1 KiB
JavaScript

import Ember from 'ember';
export default Ember.Controller.extend({
actions: {
search: function() {
let query = {
strain_ids: this.get('selectedStrains'),
characteristic_ids: this.get('selectedCharacteristics'),
};
this.transitionToRoute('protected.compare.results', {queryParams: query});
},
selectAllStrains: function() {
let strains = this.get('strains');
let strain_ids = [];
strains.forEach((strain) => {
strain_ids.push(strain.id);
});
this.set('selectedStrains', strain_ids.join(","));
},
deselectAllStrains: function() {
this.set('selectedStrains', '');
},
selectAllCharacteristics: function() {
let chars = this.get('characteristics');
let char_ids = [];
chars.forEach((char) => {
char_ids.push(char.id);
});
this.set('selectedCharacteristics', char_ids.join(","));
},
deselectAllCharacteristics: function() {
this.set('selectedCharacteristics', '');
},
}
});