From 482bfddf1226e575c742bf47493b3f84ecd02899 Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Fri, 25 Sep 2015 14:46:49 -0700 Subject: [PATCH] Track changes --- .../show/measurements-table-row/component.js | 16 ++++++++++++++-- .../show/measurements-table-row/template.hbs | 6 ++++++ 2 files changed, 20 insertions(+), 2 deletions(-) diff --git a/app/pods/protected/strains/show/measurements-table-row/component.js b/app/pods/protected/strains/show/measurements-table-row/component.js index 252e6e3..39216ec 100644 --- a/app/pods/protected/strains/show/measurements-table-row/component.js +++ b/app/pods/protected/strains/show/measurements-table-row/component.js @@ -4,6 +4,16 @@ export default Ember.Component.extend({ tagName: 'tr', isEditing: false, + oldCharacteristicId: function() { + let json = this.get('row').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'); + }), + actions: { edit: function() { // The parent table fetches all of the characteristics ahead of time @@ -13,8 +23,10 @@ export default Ember.Component.extend({ save: function() { this.toggleProperty('isEditing'); - this.get('row').save(); + if (this.get('rowChanged')) { + this.get('row').save(); + } }, - + }, }); diff --git a/app/pods/protected/strains/show/measurements-table-row/template.hbs b/app/pods/protected/strains/show/measurements-table-row/template.hbs index bdf8566..fd0bf3d 100644 --- a/app/pods/protected/strains/show/measurements-table-row/template.hbs +++ b/app/pods/protected/strains/show/measurements-table-row/template.hbs @@ -16,9 +16,15 @@ {{#if canEdit}} + {{#if rowChanged}} + {{else}} + + {{/if}} {{/if}} {{else}}