Rename row -> measurement

This commit is contained in:
Matthew Dillon 2015-11-10 15:55:52 -07:00
parent ba15af411e
commit 15474c76f3
3 changed files with 19 additions and 18 deletions

View file

@ -1,21 +1,22 @@
import Ember from 'ember'; import Ember from 'ember';
import ajaxError from '../../../../utils/ajax-error'; import ajaxError from '../../../../utils/ajax-error';
const { Component } = Ember; const { Component, computed } = Ember;
export default Component.extend({ export default Component.extend({
tagName: 'tr', tagName: 'tr',
isEditing: false, isEditing: false,
allCharacteristics: null, allCharacteristics: null,
measurement: null,
oldCharacteristicId: function() { oldCharacteristicId: function() {
let json = this.get('row').toJSON(); let json = this.get('measurement').toJSON();
return json.characteristic; return json.characteristic;
}.property(), }.property(),
rowChanged: Ember.computed('row.notes', 'row.value', 'row.characteristic.id', function() { rowChanged: computed('measurement.notes', 'measurement.value', 'measurement.characteristic.id', function() {
return this.get('row.hasDirtyAttributes') || return this.get('measurement.hasDirtyAttributes') ||
this.get('oldCharacteristicId') !== this.get('row.characteristic.id'); this.get('oldCharacteristicId') !== this.get('measurement.characteristic.id');
}), }),
actions: { actions: {
@ -25,11 +26,11 @@ export default Component.extend({
save: function() { save: function() {
if (this.get('rowChanged')) { if (this.get('rowChanged')) {
this.get('row').save().then(() => { this.get('measurement').save().then(() => {
this.get('flashMessages').clearMessages(); this.get('flashMessages').clearMessages();
this.toggleProperty('isEditing'); this.toggleProperty('isEditing');
}, () => { }, () => {
ajaxError(this.get('row.errors'), this.get('flashMessages')); ajaxError(this.get('measurement.errors'), this.get('flashMessages'));
}); });
} else { } else {
this.toggleProperty('isEditing'); this.toggleProperty('isEditing');
@ -37,11 +38,11 @@ export default Component.extend({
}, },
delete: function() { delete: function() {
let char = this.get('row.characteristic'); let char = this.get('measurement.characteristic');
if (char.get('isNew')) { if (char.get('isNew')) {
char.destroyRecord(); char.destroyRecord();
} }
this.get('row').destroyRecord(); this.get('measurement').destroyRecord();
} }
}, },

View file

@ -5,15 +5,15 @@
select-2 select-2
multiple=false multiple=false
content=allCharacteristics content=allCharacteristics
value=row.characteristic value=measurement.characteristic
optionLabelPath="characteristicName" optionLabelPath="characteristicName"
}} }}
</td> </td>
<td> <td>
{{input value=row.value}} {{input value=measurement.value}}
</td> </td>
<td> <td>
{{input value=row.notes}} {{input value=measurement.notes}}
</td> </td>
{{#if canEdit}} {{#if canEdit}}
<td> <td>
@ -30,18 +30,18 @@
{{/if}} {{/if}}
{{else}} {{else}}
<td> <td>
{{{row.characteristic.characteristicTypeName}}} {{{measurement.characteristic.characteristicTypeName}}}
</td> </td>
<td> <td>
{{#link-to 'protected.characteristics.show' row.characteristic.id}} {{#link-to 'protected.characteristics.show' measurement.characteristic.id}}
{{{row.characteristic.characteristicName}}} {{{measurement.characteristic.characteristicName}}}
{{/link-to}} {{/link-to}}
</td> </td>
<td> <td>
{{row.value}} {{measurement.value}}
</td> </td>
<td> <td>
{{row.notes}} {{measurement.notes}}
</td> </td>
{{#if canEdit}} {{#if canEdit}}
<td> <td>

View file

@ -42,7 +42,7 @@
{{#each sortedMeasurements as |measurement|}} {{#each sortedMeasurements as |measurement|}}
{{ {{
protected/strains/measurements-table-row protected/strains/measurements-table-row
row=measurement measurement=measurement
allCharacteristics=allCharacteristics allCharacteristics=allCharacteristics
canEdit=canEdit canEdit=canEdit
}} }}