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', tagName: 'tr',
isEditing: false, 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: { actions: {
edit: function() { edit: function() {
// The parent table fetches all of the characteristics ahead of time // The parent table fetches all of the characteristics ahead of time
@ -13,8 +23,10 @@ export default Ember.Component.extend({
save: function() { save: function() {
this.toggleProperty('isEditing'); this.toggleProperty('isEditing');
this.get('row').save(); if (this.get('rowChanged')) {
this.get('row').save();
}
}, },
}, },
}); });

View file

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