This repository has been archived on 2025-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
hymenobacterdotinfo/app/pods/protected/strains/measurements-table-row/component.js
2015-11-10 15:55:52 -07:00

49 lines
1.3 KiB
JavaScript

import Ember from 'ember';
import ajaxError from '../../../../utils/ajax-error';
const { Component, computed } = Ember;
export default Component.extend({
tagName: 'tr',
isEditing: false,
allCharacteristics: null,
measurement: null,
oldCharacteristicId: function() {
let json = this.get('measurement').toJSON();
return json.characteristic;
}.property(),
rowChanged: computed('measurement.notes', 'measurement.value', 'measurement.characteristic.id', function() {
return this.get('measurement.hasDirtyAttributes') ||
this.get('oldCharacteristicId') !== this.get('measurement.characteristic.id');
}),
actions: {
edit: function() {
this.toggleProperty('isEditing');
},
save: function() {
if (this.get('rowChanged')) {
this.get('measurement').save().then(() => {
this.get('flashMessages').clearMessages();
this.toggleProperty('isEditing');
}, () => {
ajaxError(this.get('measurement.errors'), this.get('flashMessages'));
});
} else {
this.toggleProperty('isEditing');
}
},
delete: function() {
let char = this.get('measurement.characteristic');
if (char.get('isNew')) {
char.destroyRecord();
}
this.get('measurement').destroyRecord();
}
},
});