diff --git a/app/pods/components/measurement-search-panel/component.js b/app/pods/components/measurement-search-panel/component.js deleted file mode 100644 index 56d60d5..0000000 --- a/app/pods/components/measurement-search-panel/component.js +++ /dev/null @@ -1,51 +0,0 @@ -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'), - characteristics: this.store.findAll('characteristic'), - }).then((models) => { - models['characteristicTypes'] = models.characteristics.mapBy('characteristicTypeName').uniq(); - - // Set up search parameters - // Clean up sort order - let selects = [ - { model: 'species', id: 'id', text: 'speciesNameMU', - children: 'strains', cid: 'id', ctext: 'strainNameMU' }, - { 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('sortOrder'); - let temp = models[item.model].map((data) => { - let temp_children = []; - let sorted_children = data.get(item.children).sortBy('sortOrder'); - sorted_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 deleted file mode 100644 index 0376f8a..0000000 --- a/app/pods/components/measurement-search-panel/template.hbs +++ /dev/null @@ -1,33 +0,0 @@ -
-
-
-
    -
  • - - {{ - select-2 - multiple=true - content=species - value=selectedStrains - optionValuePath="id" - placeholder=strainLabel - }} -
  • -
  • - - {{ - select-2 - multiple=true - content=characteristicTypes - value=selectedCharacteristics - optionValuePath="id" - placeholder=charLabel - }} -
  • -
  • - {{search-button isLoading=isLoading action='search'}} -
  • -
-
-
-
diff --git a/app/pods/components/search-button/component.js b/app/pods/components/search-button/component.js deleted file mode 100644 index e37949d..0000000 --- a/app/pods/components/search-button/component.js +++ /dev/null @@ -1,13 +0,0 @@ -import Ember from 'ember'; - -export default Ember.Component.extend({ - isLoading: false, - buttonText: 'Search', - actions: { - showLoading: function() { - if (!this.get('isLoading')) { - this.sendAction('action'); - } - } - } -}); diff --git a/app/pods/components/search-button/template.hbs b/app/pods/components/search-button/template.hbs deleted file mode 100644 index 4bd6134..0000000 --- a/app/pods/components/search-button/template.hbs +++ /dev/null @@ -1,7 +0,0 @@ - - {{#if isLoading}} - LOADING - {{else}} - {{buttonText}} - {{/if}} -