This repository has been archived on 2025-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
hymenobacterdotinfo/app/pods/protected/measurements/controller.js
2015-07-10 09:29:12 -08:00

50 lines
1.3 KiB
JavaScript

import Ember from 'ember';
import ColumnDefinition from 'ember-table/models/column-definition';
export default Ember.Controller.extend({
measurements: [],
measurementsEmpty: function() {
return this.get('measurements').length === 0;
}.property('measurements'),
tableColumns: Ember.computed(function() {
let strainCol = ColumnDefinition.create({
savedWidth: 200,
textAlign: 'text-align-left',
headerCellName: 'Strain',
contentPath: 'strain.fullNameMU',
});
let charCol = ColumnDefinition.create({
savedWidth: 200,
textAlign: 'text-align-left',
headerCellName: 'Characteristic',
contentPath: 'characteristic.characteristicName',
});
let valCol = ColumnDefinition.create({
savedWidth: 150,
textAlign: 'text-align-left',
headerCellName: 'Value',
contentPath: 'value',
});
return [strainCol, charCol, valCol];
}),
tableContent: Ember.computed('measurements', function() {
return this.get('measurements');
}),
actions: {
search: function(selectedStrains, selectedCharacteristics) {
this.store.find('measurement', {
strain: selectedStrains,
characteristic: selectedCharacteristics,
}).then((measurements)=>{
this.set('measurements', measurements);
});
}
},
});