32 lines
962 B
JavaScript
32 lines
962 B
JavaScript
import Ember from 'ember';
|
|
|
|
export default Ember.Component.extend({
|
|
isLoading: false,
|
|
actions: {
|
|
search: function() {
|
|
this.set('isLoading', true);
|
|
let strain = this.get('selectedStrain');
|
|
let characteristic = this.get('selectedCharacteristic');
|
|
if ((strain === 'all') && (characteristic === 'all')) {
|
|
this.store.findAll('measurement').then((measurements)=>{
|
|
this.set('measurements', measurements);
|
|
});
|
|
this.set('isLoading', false);
|
|
console.log(this.get('isLoading'));
|
|
return false;
|
|
}
|
|
let search = {};
|
|
if (strain !== 'all') {
|
|
search['strain'] = strain;
|
|
}
|
|
if (characteristic !== 'all') {
|
|
search['characteristic'] = characteristic;
|
|
}
|
|
this.store.find('measurement', search).then((measurements)=>{
|
|
this.set('measurements', measurements);
|
|
});
|
|
this.set('isLoading', false);
|
|
return false;
|
|
}
|
|
},
|
|
});
|