diff --git a/app/pods/components/measurement-search-panel/component.js b/app/pods/components/measurement-search-panel/component.js new file mode 100644 index 0000000..35aff9d --- /dev/null +++ b/app/pods/components/measurement-search-panel/component.js @@ -0,0 +1,48 @@ +import Ember from 'ember'; + +export default Ember.Component.extend({ + classNames: ["grid-1", "gutter-50"], + + setup: function() { + Ember.RSVP.hash({ + species: this.store.findAll('species'), + strains: this.store.findAll('strain'), + characteristicTypes: this.store.findAll('characteristic-type'), + characteristics: this.store.findAll('characteristic'), + }).then((models) => { + // Set up search parameters + let selects = [ + { model: 'species', id: 'id', text: 'speciesName', + children: 'strains', cid: 'id', ctext: 'fullName' }, + { model: 'characteristicTypes', id: 'id', text: 'characteristicTypeName', + children: 'characteristics', cid: 'id', ctext: 'characteristicName' }, + ]; + + selects.forEach((item /*, index, enumerable*/) => { + models[item.model] = models[item.model].filter((i) => { + if (!Ember.isEmpty(i.get(item.children))) { return true; } + }); + models[item.model] = models[item.model].sortBy(item.text); + let temp = models[item.model].map((data) => { + let temp_children = []; + data.get(item.children).forEach((child) => { + temp_children.push({id: child.get(item.cid), text: child.get(item.ctext)}); + }); + return { + text: data.get(item.text), + children: temp_children, + }; + }); + this.set(item.model, temp); + }); + }); + }.on('init'), + + actions: { + search: function() { + let strains = this.get('selectedStrains'), + characteristics = this.get('selectedCharacteristics'); + this.sendAction('search', strains, characteristics); + }, + }, +}); diff --git a/app/pods/components/measurement-search-panel/template.hbs b/app/pods/components/measurement-search-panel/template.hbs new file mode 100644 index 0000000..ae9dc36 --- /dev/null +++ b/app/pods/components/measurement-search-panel/template.hbs @@ -0,0 +1,33 @@ +
+
+
+
    +
  • + + {{ + select-2 + multiple=true + content=species + value=selectedStrains + optionValuePath="id" + placeholder="All strains" + }} +
  • +
  • + + {{ + select-2 + multiple=true + content=characteristicTypes + value=selectedCharacteristics + optionValuePath="id" + placeholder="All characteristics" + }} +
  • +
  • + {{search-button isLoading=isLoading action='search'}} +
  • +
+
+
+
diff --git a/app/pods/measurements/controller.js b/app/pods/measurements/controller.js index 173da75..f71a66f 100644 --- a/app/pods/measurements/controller.js +++ b/app/pods/measurements/controller.js @@ -38,10 +38,10 @@ export default Ember.Controller.extend({ }), actions: { - search: function() { + search: function(selectedStrains, selectedCharacteristics) { this.store.find('measurement', { - strain: this.get('selectedStrains'), - characteristic: this.get('selectedCharacteristics'), + strain: selectedStrains, + characteristic: selectedCharacteristics, }).then((measurements)=>{ this.set('measurements', measurements); }); diff --git a/app/pods/measurements/route.js b/app/pods/measurements/route.js index 385add1..4219aea 100644 --- a/app/pods/measurements/route.js +++ b/app/pods/measurements/route.js @@ -3,39 +3,6 @@ import AuthenticatedRouteMixin from 'simple-auth/mixins/authenticated-route-mixi export default Ember.Route.extend(AuthenticatedRouteMixin, { model: function() { - return Ember.RSVP.hash({ - species: this.store.findAll('species'), - strains: this.store.findAll('strain'), - characteristicTypes: this.store.findAll('characteristic-type'), - characteristics: this.store.findAll('characteristic'), - }); - }, - setupController: function(controller, models) { - // Set up search parameters - let selects = [ - { model: 'species', id: 'id', text: 'speciesName', - children: 'strains', cid: 'id', ctext: 'fullName' }, - { model: 'characteristicTypes', id: 'id', text: 'characteristicTypeName', - children: 'characteristics', cid: 'id', ctext: 'characteristicName' }, - ]; - - selects.forEach((item /*, index, enumerable*/) => { - models[item.model] = models[item.model].filter((i) => { - if (!Ember.isEmpty(i.get(item.children))) { return true; } - }); - models[item.model] = models[item.model].sortBy(item.text); - let temp = models[item.model].map((data) => { - let temp_children = []; - data.get(item.children).forEach((child) => { - temp_children.push({id: child.get(item.cid), text: child.get(item.ctext)}); - }); - return { - text: data.get(item.text), - children: temp_children, - }; - }); - controller.set(item.model, temp); - }); - + return this.store.findAll('measurement'); }, }); diff --git a/app/pods/measurements/template.hbs b/app/pods/measurements/template.hbs index 0b6521d..63a47e0 100644 --- a/app/pods/measurements/template.hbs +++ b/app/pods/measurements/template.hbs @@ -1,39 +1,6 @@

{{genus-name}} Measurements

-
-
-
-
-
    -
  • - - {{ - select-2 - multiple=true - content=species - value=selectedStrains - optionValuePath="id" - placeholder="All strains" - }} -
  • -
  • - - {{ - select-2 - multiple=true - content=characteristicTypes - value=selectedCharacteristics - optionValuePath="id" - placeholder="All characteristics" - }} -
  • -
  • - {{search-button isLoading=isLoading action='search'}} -
  • -
-
-
-
-
+ +{{measurement-search-panel search='search'}}
diff --git a/tests/unit/pods/components/measurement-search-panel/component-test.js b/tests/unit/pods/components/measurement-search-panel/component-test.js new file mode 100644 index 0000000..88b1a89 --- /dev/null +++ b/tests/unit/pods/components/measurement-search-panel/component-test.js @@ -0,0 +1,19 @@ +import { moduleForComponent, test } from 'ember-qunit'; + +moduleForComponent('measurement-search-panel', 'Unit | Component | measurement search panel', { + // Specify the other units that are required for this test + // needs: ['component:foo', 'helper:bar'], + unit: true +}); + +test('it renders', function(assert) { + assert.expect(2); + + // Creates the component instance + var component = this.subject(); + assert.equal(component._state, 'preRender'); + + // Renders the component to the page + this.render(); + assert.equal(component._state, 'inDOM'); +});