From 86b3fb46d7e516a00ad68b2f9de36c02a0acd889 Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Thu, 19 Mar 2015 11:08:15 -0800 Subject: [PATCH] Add measurement count & speciesName to strain --- app/models/strain.js | 4 +++- app/templates/strains/index.hbs | 2 +- app/templates/strains/show.hbs | 28 ++++++++++++++++++++-------- server/mocks/strains.js | 12 ++++++++---- 4 files changed, 32 insertions(+), 14 deletions(-) diff --git a/app/models/strain.js b/app/models/strain.js index cbde6ed..293cc9f 100644 --- a/app/models/strain.js +++ b/app/models/strain.js @@ -2,6 +2,7 @@ import DS from 'ember-data'; export default DS.Model.extend({ measurements: DS.hasMany('measurements', { async: true }), + speciesName: DS.attr('string'), strainName: DS.attr('string'), strainType: DS.attr('string'), etymology: DS.attr('string'), @@ -10,5 +11,6 @@ export default DS.Model.extend({ isolatedFrom: DS.attr('string'), createdAt: DS.attr('date'), updatedAt: DS.attr('date'), - deletedAt: DS.attr('date') + deletedAt: DS.attr('date'), + totalMeasurements: DS.attr('number') }); diff --git a/app/templates/strains/index.hbs b/app/templates/strains/index.hbs index 6351378..7363f1c 100644 --- a/app/templates/strains/index.hbs +++ b/app/templates/strains/index.hbs @@ -12,7 +12,7 @@ {{#each strain in model}} {{link-to strain.strainName 'measurements' strain}} - + {{strain.totalMeasurements}} {{/each}} diff --git a/app/templates/strains/show.hbs b/app/templates/strains/show.hbs index 67d9c98..0c10449 100644 --- a/app/templates/strains/show.hbs +++ b/app/templates/strains/show.hbs @@ -2,29 +2,41 @@
{{model.strainName}} + {{! ROW 1 }}
-
+
+
Species
+
{{model.speciesName}}
+
+
Type
{{model.strainType}}
-
-
Etymology
-
{{model.etymology}}
-
-
+
+ {{! ROW 2 }} +
+
Accession Banks
{{model.accessionBanks}}
-
+
Genbank
{{model.genbankEmblDdb}}
+ {{! ROW 3 }}
-
+
+
Etymology
+
{{model.etymology}}
+
+
Isolated From
{{model.isolatedFrom}}
+
+ {{! ROW 4 }} +
Record Created
{{null-time model.createdAt 'LL'}}
diff --git a/server/mocks/strains.js b/server/mocks/strains.js index 6313886..d33efaf 100644 --- a/server/mocks/strains.js +++ b/server/mocks/strains.js @@ -5,7 +5,7 @@ module.exports = function(app) { var STRAINS = [ { id: 1, - species: 1, + speciesName: "Species One", strainName: "Strain One", strainType: "Test Type", etymology: "Test Etymology", @@ -16,10 +16,11 @@ module.exports = function(app) { createdAt: "0001-01-01T00:00:00Z", updatedAt: "0001-01-01T00:00:00Z", deletedAt: null, + totalMeasurements: 5, }, { id: 2, - species: 2, + speciesName: "Species Two", strainName: "Strain Two", strainType: "Test Type", etymology: "Test Etymology", @@ -30,10 +31,11 @@ module.exports = function(app) { createdAt: "0001-01-01T00:00:00Z", updatedAt: "0001-01-01T00:00:00Z", deletedAt: null, + totalMeasurements: 5, }, { id: 3, - species: 3, + speciesName: "Species Three", strainName: "Strain Three", strainType: "Test Type", etymology: "Test Etymology", @@ -44,10 +46,11 @@ module.exports = function(app) { createdAt: "0001-01-01T00:00:00Z", updatedAt: "0001-01-01T00:00:00Z", deletedAt: null, + totalMeasurements: 0, }, { id: 4, - species: 4, + speciesName: "Species Four", strainName: "Strain Four", strainType: "Test Type", etymology: "Test Etymology", @@ -58,6 +61,7 @@ module.exports = function(app) { createdAt: "0001-01-01T00:00:00Z", updatedAt: "0001-01-01T00:00:00Z", deletedAt: null, + totalMeasurements: 0, } ];