Track changes
This commit is contained in:
parent
97db4e4662
commit
482bfddf12
2 changed files with 20 additions and 2 deletions
|
@ -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');
|
||||
this.get('row').save();
|
||||
if (this.get('rowChanged')) {
|
||||
this.get('row').save();
|
||||
}
|
||||
},
|
||||
|
||||
},
|
||||
|
|
|
@ -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}}
|
||||
|
|
Reference in a new issue