diff --git a/app/components/measurements/measurement-row.js b/app/components/measurements/measurement-row.js new file mode 100644 index 0000000..cd27120 --- /dev/null +++ b/app/components/measurements/measurement-row.js @@ -0,0 +1,6 @@ +import Ember from 'ember'; + +export default Ember.Component.extend({ + tagName: 'tr', + measurement: null, // passed in +}); diff --git a/app/models/measurement.js b/app/models/measurement.js index 671480b..ef58639 100644 --- a/app/models/measurement.js +++ b/app/models/measurement.js @@ -1,4 +1,5 @@ import DS from 'ember-data'; +import Ember from 'ember'; export default DS.Model.extend({ strain: DS.belongsTo('strain'), @@ -11,5 +12,24 @@ export default DS.Model.extend({ notes: DS.attr('string'), testMethod: DS.attr('string'), createdAt: DS.attr('date'), - updatedAt: DS.attr('date') + updatedAt: DS.attr('date'), + computedValue: Ember.computed('textMeasurementType', 'txtValue', 'numValue', function() { + var val; + if (this.get('textMeasurementType')) { + val = this.get('textMeasurementType'); + } else if (this.get('txtValue')) { + val = this.get('txtValue'); + } else if (this.get('numValue')) { + val = this.get('numValue'); + if (this.get('confidenceInterval')) { + val = val + ' ± ' + this.get('confidenceInterval'); + } + } else { + val = "error"; + } + if (this.get('unitType')) { + val = val + ' ' + this.get('unitType'); + } + return val; + }) }); diff --git a/app/templates/components/measurements/measurement-row.hbs b/app/templates/components/measurements/measurement-row.hbs new file mode 100644 index 0000000..3adb708 --- /dev/null +++ b/app/templates/components/measurements/measurement-row.hbs @@ -0,0 +1,4 @@ +{{measurement.characteristic}} +{{{measurement.computedValue}}} +{{measurement.notes}} +{{measurement.testMethod}} diff --git a/app/templates/measurements/index.hbs b/app/templates/measurements/index.hbs index c20b937..931e659 100644 --- a/app/templates/measurements/index.hbs +++ b/app/templates/measurements/index.hbs @@ -2,27 +2,14 @@ Characteristic - Text Meas. Type - Text Value - Num. Value - Confidence Int. - Unit + Measurement Notes Test Method - {{#each measurement in model}} - - {{measurement.characteristic}} - {{measurement.textMeasurementType}} - {{measurement.txtValue}} - {{measurement.numValue}} - {{measurement.confidenceInterval}} - {{measurement.unitType}} - {{measurement.notes}} - {{measurement.testMethod}} - + {{#each model as |measurement|}} + {{measurements/measurement-row measurement=measurement}} {{/each}} diff --git a/tests/unit/components/measurements/measurement-row-test.js b/tests/unit/components/measurements/measurement-row-test.js new file mode 100644 index 0000000..1664fcd --- /dev/null +++ b/tests/unit/components/measurements/measurement-row-test.js @@ -0,0 +1,21 @@ +import { + moduleForComponent, + test +} from 'ember-qunit'; + +moduleForComponent('measurements/measurement-row', { + // specify the other units that are required for this test + // needs: ['component:foo', 'helper:bar'] +}); + +test('it renders', function(assert) { + assert.expect(2); + + // creates the component instance + var component = this.subject(); + assert.equal(component._state, 'preRender'); + + // renders the component to the page + this.render(); + assert.equal(component._state, 'inDOM'); +});