From fb296340c32b07d1194fd2a3b0123222ecf60d81 Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Tue, 8 Sep 2015 06:31:57 -0700 Subject: [PATCH] Characteristics details --- .../index/editable-row/component.js | 28 ------------------- .../index/editable-row/template.hbs | 15 ---------- .../characteristics/loading/template.hbs | 1 + .../show/measurements-table/component.js | 16 +++++++++++ .../show/measurements-table/template.hbs | 26 +++++++++++++++++ .../characteristics/show/template.hbs | 12 ++------ .../protected/compare/loading/template.hbs | 1 + .../protected/species/loading/template.hbs | 1 + .../protected/strains/loading/template.hbs | 1 + 9 files changed, 48 insertions(+), 53 deletions(-) delete mode 100644 app/pods/protected/characteristics/index/editable-row/component.js delete mode 100644 app/pods/protected/characteristics/index/editable-row/template.hbs create mode 100644 app/pods/protected/characteristics/loading/template.hbs create mode 100644 app/pods/protected/characteristics/show/measurements-table/component.js create mode 100644 app/pods/protected/characteristics/show/measurements-table/template.hbs create mode 100644 app/pods/protected/compare/loading/template.hbs create mode 100644 app/pods/protected/species/loading/template.hbs create mode 100644 app/pods/protected/strains/loading/template.hbs diff --git a/app/pods/protected/characteristics/index/editable-row/component.js b/app/pods/protected/characteristics/index/editable-row/component.js deleted file mode 100644 index 384d254..0000000 --- a/app/pods/protected/characteristics/index/editable-row/component.js +++ /dev/null @@ -1,28 +0,0 @@ -import Ember from 'ember'; - -export default Ember.Component.extend({ - tagName: 'tr', - - actions: { - edit: function() { - this.set('characteristicName', this.get('row.characteristicName')); - this.set('characteristicTypeName', this.get('row.characteristicTypeName')); - this.set('sortOrder', this.get('row.sortOrder')); - this.toggleProperty('isEditing'); - }, - - save: function() { - if (this.get('characteristicName') !== this.get('row.characteristicName') || - this.get('characteristicTypeName') !== this.get('row.characteristicTypeName') || - this.get('sortOrder') !== this.get('row.sortOrder')) { - this.set('row.characteristicName', this.get('characteristicName')); - this.set('row.characteristicTypeName', this.get('characteristicTypeName')); - this.set('row.sortOrder', this.get('sortOrder')); - this.get('row').save(); - } - this.toggleProperty('isEditing'); - }, - - } - -}); diff --git a/app/pods/protected/characteristics/index/editable-row/template.hbs b/app/pods/protected/characteristics/index/editable-row/template.hbs deleted file mode 100644 index 8230297..0000000 --- a/app/pods/protected/characteristics/index/editable-row/template.hbs +++ /dev/null @@ -1,15 +0,0 @@ -{{#if isEditing}} - {{input value=characteristicName}} - {{input value=characteristicTypeName}} - {{input value=sortOrder}} - Save -{{else}} - {{row.characteristicName}} - {{row.characteristicTypeName}} - {{row.sortOrder}} - {{#if row.canEdit}} - Edit - {{else}} - - {{/if}} -{{/if}} diff --git a/app/pods/protected/characteristics/loading/template.hbs b/app/pods/protected/characteristics/loading/template.hbs new file mode 100644 index 0000000..e5a3e05 --- /dev/null +++ b/app/pods/protected/characteristics/loading/template.hbs @@ -0,0 +1 @@ +{{loading-panel}} diff --git a/app/pods/protected/characteristics/show/measurements-table/component.js b/app/pods/protected/characteristics/show/measurements-table/component.js new file mode 100644 index 0000000..03ff60b --- /dev/null +++ b/app/pods/protected/characteristics/show/measurements-table/component.js @@ -0,0 +1,16 @@ +import Ember from 'ember'; + +export default Ember.Component.extend({ + measurementsTable: function() { + let measurements = this.get('model.measurements'); + let table = []; + measurements.forEach((measurement) => { + let row = {}; + row['measurement'] = measurement; + row['strain'] = this.store.peekRecord('strain', measurement.get('strain.id')); + table.push(row); + }); + return table; + }.property(), + +}); diff --git a/app/pods/protected/characteristics/show/measurements-table/template.hbs b/app/pods/protected/characteristics/show/measurements-table/template.hbs new file mode 100644 index 0000000..2e838ec --- /dev/null +++ b/app/pods/protected/characteristics/show/measurements-table/template.hbs @@ -0,0 +1,26 @@ + + + + + + + + + + {{#each measurementsTable as |row|}} + + + + + + {{/each}} + +
StrainValueNotes
+ {{#link-to 'protected.strains.show' row.strain.id}} + {{{row.strain.strainNameMU}}} + {{/link-to}} + + {{row.measurement.value}} + + {{row.measurement.notes}} +
diff --git a/app/pods/protected/characteristics/show/template.hbs b/app/pods/protected/characteristics/show/template.hbs index faf6596..1097ace 100644 --- a/app/pods/protected/characteristics/show/template.hbs +++ b/app/pods/protected/characteristics/show/template.hbs @@ -18,17 +18,9 @@ {{! ROW 2 }}
-
Strains
+
Measurements
-
    - {{#each model.strains as |strain index|}} -
  • - {{#link-to 'protected.strains.show' strain.id}} - {{{strain.strainNameMU}}} - {{/link-to}} -
  • - {{/each}} -
+ {{protected/characteristics/show/measurements-table model=model}}
diff --git a/app/pods/protected/compare/loading/template.hbs b/app/pods/protected/compare/loading/template.hbs new file mode 100644 index 0000000..e5a3e05 --- /dev/null +++ b/app/pods/protected/compare/loading/template.hbs @@ -0,0 +1 @@ +{{loading-panel}} diff --git a/app/pods/protected/species/loading/template.hbs b/app/pods/protected/species/loading/template.hbs new file mode 100644 index 0000000..e5a3e05 --- /dev/null +++ b/app/pods/protected/species/loading/template.hbs @@ -0,0 +1 @@ +{{loading-panel}} diff --git a/app/pods/protected/strains/loading/template.hbs b/app/pods/protected/strains/loading/template.hbs new file mode 100644 index 0000000..e5a3e05 --- /dev/null +++ b/app/pods/protected/strains/loading/template.hbs @@ -0,0 +1 @@ +{{loading-panel}}