diff --git a/app/pods/protected/compare/controller.js b/app/pods/protected/compare/controller.js index da7295b..00ef991 100644 --- a/app/pods/protected/compare/controller.js +++ b/app/pods/protected/compare/controller.js @@ -9,6 +9,33 @@ export default Ember.Controller.extend({ }; 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', ''); + }, + } }); diff --git a/app/pods/protected/compare/template.hbs b/app/pods/protected/compare/template.hbs index 48c2bd3..fefe9a6 100644 --- a/app/pods/protected/compare/template.hbs +++ b/app/pods/protected/compare/template.hbs @@ -16,6 +16,14 @@ placeholder="Select one or more strains" }} +
  • + + +
  • {{ @@ -28,6 +36,14 @@ placeholder="Select one or more characteristics" }}
  • +
  • + + +