Remove ember-table and measurements
This commit is contained in:
parent
33b6fe32b3
commit
b78aa571ee
4 changed files with 3 additions and 76 deletions
|
@ -1,50 +0,0 @@
|
|||
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);
|
||||
});
|
||||
}
|
||||
},
|
||||
});
|
|
@ -1,8 +1,4 @@
|
|||
import Ember from 'ember';
|
||||
import AuthenticatedRouteMixin from 'simple-auth/mixins/authenticated-route-mixin';
|
||||
|
||||
export default Ember.Route.extend(AuthenticatedRouteMixin, {
|
||||
model: function() {
|
||||
return this.store.findAll('measurement');
|
||||
},
|
||||
});
|
||||
export default Ember.Route.extend(AuthenticatedRouteMixin, {});
|
||||
|
|
|
@ -1,21 +1,3 @@
|
|||
<h2>{{genus-name}} Measurements</h2>
|
||||
|
||||
{{measurement-search-panel search='search' strainLabel='All strains' charLabel='All characteristics'}}
|
||||
|
||||
<div class="grid-12 gutter-50">
|
||||
<div class="span-12">
|
||||
<h3>Total matching measurements: {{measurements.length}}</h3>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{{#if measurementsEmpty}}
|
||||
<span>No results</span>
|
||||
{{else}}
|
||||
{{
|
||||
ember-table
|
||||
columns=tableColumns
|
||||
content=tableContent
|
||||
columnMode='fluid'
|
||||
hasFooter=false
|
||||
}}
|
||||
{{/if}}
|
||||
Be back soon
|
||||
|
|
|
@ -39,7 +39,6 @@
|
|||
"ember-data": "1.13.5",
|
||||
"ember-disable-proxy-controllers": "^1.0.0",
|
||||
"ember-export-application-global": "^1.0.2",
|
||||
"ember-select-2": "1.3.0",
|
||||
"ember-table": "0.5.0"
|
||||
"ember-select-2": "1.3.0"
|
||||
}
|
||||
}
|
||||
|
|
Reference in a new issue