Track changes

This commit is contained in:
Matthew Dillon 2015-09-25 14:46:49 -07:00
parent 97db4e4662
commit 482bfddf12
2 changed files with 20 additions and 2 deletions

View file

@ -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,7 +23,9 @@ export default Ember.Component.extend({
save: function() {
this.toggleProperty('isEditing');
if (this.get('rowChanged')) {
this.get('row').save();
}
},
},

View file

@ -16,9 +16,15 @@
</td>
{{#if canEdit}}
<td>
{{#if rowChanged}}
<button class="button-red smaller" {{action 'save'}}>
Save
</button>
{{else}}
<button class="button-gray smaller" {{action 'save'}}>
Cancel
</button>
{{/if}}
</td>
{{/if}}
{{else}}