From db22b89e6fdcc658274045f28124f332f2f7a64c Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Mon, 26 Jan 2015 12:11:27 -0900 Subject: [PATCH] Rough in measurements. --- app/models/measurement.js | 15 ++++++++++ app/models/strain.js | 1 + app/router.js | 1 + app/routes/measurements.js | 7 +++++ app/templates/application.hbs | 3 ++ app/templates/measurements.hbs | 53 ++++++++++++++++++++++++++++++++++ 6 files changed, 80 insertions(+) create mode 100644 app/models/measurement.js create mode 100644 app/routes/measurements.js create mode 100644 app/templates/measurements.hbs diff --git a/app/models/measurement.js b/app/models/measurement.js new file mode 100644 index 0000000..05d8b90 --- /dev/null +++ b/app/models/measurement.js @@ -0,0 +1,15 @@ +import DS from 'ember-data'; + +export default DS.Model.extend({ + characteristicId: DS.attr(), + textMeasurementTypeId: DS.attr(), + txtValue: DS.attr(), + numValue: DS.attr(), + confidenceInterval: DS.attr(), + unitTypeId: DS.attr(), + notes: DS.attr(), + testMethodId: DS.attr(), + strain: DS.belongsTo('strain', {async: true}), + createdAt: DS.attr('date'), + updatedAt: DS.attr('date') +}); diff --git a/app/models/strain.js b/app/models/strain.js index 8f623d7..3c069e6 100644 --- a/app/models/strain.js +++ b/app/models/strain.js @@ -8,6 +8,7 @@ export default DS.Model.extend({ genbankEmblDdb: DS.attr(), isolatedFrom: DS.attr(), species: DS.belongsTo('species', {async: true}), + measurements: DS.hasMany('measurement', {async: true}), createdAt: DS.attr('date'), updatedAt: DS.attr('date'), deletedAt: DS.attr('date') diff --git a/app/router.js b/app/router.js index 8b76a92..7903fda 100644 --- a/app/router.js +++ b/app/router.js @@ -11,6 +11,7 @@ Router.map(function() { this.resource('genera'); this.resource('species'); this.resource('strains'); + this.resource('measurements'); }); export default Router; diff --git a/app/routes/measurements.js b/app/routes/measurements.js new file mode 100644 index 0000000..324cf3d --- /dev/null +++ b/app/routes/measurements.js @@ -0,0 +1,7 @@ +import Ember from 'ember'; + +export default Ember.Route.extend({ + model: function() { + return this.store.find('measurement'); + } +}); diff --git a/app/templates/application.hbs b/app/templates/application.hbs index 93ba94c..60a907b 100644 --- a/app/templates/application.hbs +++ b/app/templates/application.hbs @@ -10,6 +10,9 @@ {{#link-to 'strains' tagName='li' href=false}} {{#link-to 'strains'}}Strains{{/link-to}} {{/link-to}} + {{#link-to 'measurements' tagName='li' href=false}} + {{#link-to 'measurements'}}Measurements{{/link-to}} + {{/link-to}} {{#link-to 'about' tagName='li' href=false}} {{#link-to 'about'}}About{{/link-to}} {{/link-to}} diff --git a/app/templates/measurements.hbs b/app/templates/measurements.hbs new file mode 100644 index 0000000..51ee84b --- /dev/null +++ b/app/templates/measurements.hbs @@ -0,0 +1,53 @@ +
+ {{#each}} +
+
+ {{id}} +
+
Strain
+
{{strain.strainName}}
+
+
+
Characteristic
+
{{characteristicId}}
+
+
+
Text Measurement Type
+
{{textMeasurementTypeId}}
+
+
+
Text Value
+
{{txtValue}}
+
+
+
Numerical Value
+
{{numValue}}
+
+
+
Confidence Interval
+
{{confidenceInterval}}
+
+
+
Unit Type
+
{{unitTypeId}}
+
+
+
Notes
+
{{notes}}
+
+
+
Test Method
+
{{testMethodId}}
+
+
+
Created
+
{{createdAt}}
+
+
+
Updated
+
{{updatedAt}}
+
+
+
+ {{/each}} +