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',
|
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();
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
|
@ -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}}
|
||||||
|
|
Reference in a new issue