From 24c870353f5ad4cebc21b0a727561f144eca08d4 Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Thu, 3 Sep 2015 10:50:01 -0700 Subject: [PATCH] 'Select All' in compare. Fixes #8 --- app/pods/protected/compare/controller.js | 29 +++++++++++++++++++++++- app/pods/protected/compare/template.hbs | 16 +++++++++++++ 2 files changed, 44 insertions(+), 1 deletion(-) 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" }}
  • +
  • + + +