From 15474c76f39e65a628fc88998e7c1998b4311023 Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Tue, 10 Nov 2015 15:55:52 -0700 Subject: [PATCH] Rename row -> measurement --- .../measurements-table-row/component.js | 19 ++++++++++--------- .../measurements-table-row/template.hbs | 16 ++++++++-------- .../strains/measurements-table/template.hbs | 2 +- 3 files changed, 19 insertions(+), 18 deletions(-) diff --git a/app/pods/protected/strains/measurements-table-row/component.js b/app/pods/protected/strains/measurements-table-row/component.js index 8c265bc..62bf56f 100644 --- a/app/pods/protected/strains/measurements-table-row/component.js +++ b/app/pods/protected/strains/measurements-table-row/component.js @@ -1,21 +1,22 @@ import Ember from 'ember'; import ajaxError from '../../../../utils/ajax-error'; -const { Component } = Ember; +const { Component, computed } = Ember; export default Component.extend({ tagName: 'tr', isEditing: false, allCharacteristics: null, + measurement: null, oldCharacteristicId: function() { - let json = this.get('row').toJSON(); + let json = this.get('measurement').toJSON(); return json.characteristic; }.property(), - rowChanged: Ember.computed('row.notes', 'row.value', 'row.characteristic.id', function() { - return this.get('row.hasDirtyAttributes') || - this.get('oldCharacteristicId') !== this.get('row.characteristic.id'); + rowChanged: computed('measurement.notes', 'measurement.value', 'measurement.characteristic.id', function() { + return this.get('measurement.hasDirtyAttributes') || + this.get('oldCharacteristicId') !== this.get('measurement.characteristic.id'); }), actions: { @@ -25,11 +26,11 @@ export default Component.extend({ save: function() { if (this.get('rowChanged')) { - this.get('row').save().then(() => { + this.get('measurement').save().then(() => { this.get('flashMessages').clearMessages(); this.toggleProperty('isEditing'); }, () => { - ajaxError(this.get('row.errors'), this.get('flashMessages')); + ajaxError(this.get('measurement.errors'), this.get('flashMessages')); }); } else { this.toggleProperty('isEditing'); @@ -37,11 +38,11 @@ export default Component.extend({ }, delete: function() { - let char = this.get('row.characteristic'); + let char = this.get('measurement.characteristic'); if (char.get('isNew')) { char.destroyRecord(); } - this.get('row').destroyRecord(); + this.get('measurement').destroyRecord(); } }, diff --git a/app/pods/protected/strains/measurements-table-row/template.hbs b/app/pods/protected/strains/measurements-table-row/template.hbs index 61a7140..cab5554 100644 --- a/app/pods/protected/strains/measurements-table-row/template.hbs +++ b/app/pods/protected/strains/measurements-table-row/template.hbs @@ -5,15 +5,15 @@ select-2 multiple=false content=allCharacteristics - value=row.characteristic + value=measurement.characteristic optionLabelPath="characteristicName" }} - {{input value=row.value}} + {{input value=measurement.value}} - {{input value=row.notes}} + {{input value=measurement.notes}} {{#if canEdit}} @@ -30,18 +30,18 @@ {{/if}} {{else}} - {{{row.characteristic.characteristicTypeName}}} + {{{measurement.characteristic.characteristicTypeName}}} - {{#link-to 'protected.characteristics.show' row.characteristic.id}} - {{{row.characteristic.characteristicName}}} + {{#link-to 'protected.characteristics.show' measurement.characteristic.id}} + {{{measurement.characteristic.characteristicName}}} {{/link-to}} - {{row.value}} + {{measurement.value}} - {{row.notes}} + {{measurement.notes}} {{#if canEdit}} diff --git a/app/pods/protected/strains/measurements-table/template.hbs b/app/pods/protected/strains/measurements-table/template.hbs index 288421e..146d44e 100644 --- a/app/pods/protected/strains/measurements-table/template.hbs +++ b/app/pods/protected/strains/measurements-table/template.hbs @@ -42,7 +42,7 @@ {{#each sortedMeasurements as |measurement|}} {{ protected/strains/measurements-table-row - row=measurement + measurement=measurement allCharacteristics=allCharacteristics canEdit=canEdit }}