diff --git a/app/models/strain.js b/app/models/strain.js index 73c9d6c..a1f86b6 100644 --- a/app/models/strain.js +++ b/app/models/strain.js @@ -1,4 +1,5 @@ import DS from 'ember-data'; +import Ember from 'ember'; export default DS.Model.extend({ measurements : DS.hasMany('measurements', { async: true }), @@ -27,6 +28,6 @@ export default DS.Model.extend({ }.property('species', 'strainName').readOnly(), fullNameMU: function() { - return `${this.get('species.speciesName')} ${this.get('strainNameMU')}`; + return Ember.String.htmlSafe(`${this.get('species.speciesName')} ${this.get('strainNameMU')}`); }.property('species', 'strainNameMU').readOnly(), }); diff --git a/app/pods/application/view.js b/app/pods/application/view.js index f5d92cd..7da9eeb 100644 --- a/app/pods/application/view.js +++ b/app/pods/application/view.js @@ -1,4 +1,5 @@ import Ember from 'ember'; +/* global FlakesFrame */ export default Ember.View.extend({ classNames: ['flakes-frame'], diff --git a/app/pods/measurements/controller.js b/app/pods/measurements/controller.js index a8c8cd0..173da75 100644 --- a/app/pods/measurements/controller.js +++ b/app/pods/measurements/controller.js @@ -1,6 +1,42 @@ 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() { this.store.find('measurement', { diff --git a/app/pods/measurements/template.hbs b/app/pods/measurements/template.hbs index 671e7e0..6f0d79d 100644 --- a/app/pods/measurements/template.hbs +++ b/app/pods/measurements/template.hbs @@ -41,21 +41,14 @@ -
Strain | -Characteristic | -Value | -
---|---|---|
{{{measurement.strain.fullNameMU}}} | -{{measurement.characteristic.characteristicName}} | -{{{measurement.value}}} | -