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/characteristics/characteristic-form/component.js
2015-11-05 14:05:57 -07:00

60 lines
1.5 KiB
JavaScript

import Ember from 'ember';
import SetupMetaData from '../../../../mixins/setup-metadata';
const { Component } = Ember;
export default Component.extend(SetupMetaData, {
// Read-only attributes
characteristic: null,
isDirty: false,
// Actions
"on-save": null,
"on-cancel": null,
"on-update": null,
// Property mapping
propertiesList: ['characteristicName', 'characteristicTypeName', 'sortOrder'],
characteristicName: null,
characteristicTypeName: null,
sortOrder: null,
resetOnInit: Ember.on('init', function() {
this.get('propertiesList').forEach((field) => {
const valueInCharacteristic = this.get('characteristic').get(field);
this.set(field, valueInCharacteristic);
});
}),
updateField: function(property, value) {
this.set(property, value);
// Manually compare against passed in value
if (this.get('characteristic').get(property) !== value) {
this.set('isDirty', true);
} else {
this.set('isDirty', false);
}
},
actions: {
save: function() {
return this.attrs['on-save'](this.getProperties(this.get('propertiesList')));
},
cancel: function() {
return this.attrs['on-cancel']();
},
characteristicNameDidChange: function(value) {
this.updateField('characteristicName', value);
},
characteristicTypeNameDidChange: function(value) {
this.updateField('characteristicTypeName', value);
},
sortOrderDidChange: function(value) {
this.updateField('sortOrder', value);
},
},
});