diff --git a/app/pods/protected/characteristics/characteristic-form/component.js b/app/pods/protected/characteristics/characteristic-form/component.js index a53a469..f82a8ca 100644 --- a/app/pods/protected/characteristics/characteristic-form/component.js +++ b/app/pods/protected/characteristics/characteristic-form/component.js @@ -1,13 +1,60 @@ 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); + } + }, -export default Ember.Component.extend({ actions: { save: function() { - this.sendAction('save'); + return this.attrs['on-save'](this.getProperties(this.get('propertiesList'))); }, cancel: function() { - this.sendAction('cancel'); + 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); + }, + }, }); diff --git a/app/pods/protected/characteristics/characteristic-form/template.hbs b/app/pods/protected/characteristics/characteristic-form/template.hbs index e53cea3..ea89522 100644 --- a/app/pods/protected/characteristics/characteristic-form/template.hbs +++ b/app/pods/protected/characteristics/characteristic-form/template.hbs @@ -1,20 +1,20 @@
- {{characteristic.characteristicName}} + {{characteristicName}}
- {{input value=characteristic.characteristicName class="characteristic-name"}} + {{one-way-input type="text" class="characteristic-name" value=characteristicName update=(action "characteristicNameDidChange")}}
- {{input value=characteristic.characteristicTypeName}} + {{one-way-input type="text" class="characteristic-type-name" value=characteristicTypeName update=(action "characteristicTypeNameDidChange")}}
- {{input value=characteristic.sortOrder}} + {{one-way-input type="text" class="sort-order" value=sortOrder update=(action "sortOrderDidChange")}}
@@ -22,7 +22,7 @@ Cancel - {{#if characteristic.hasDirtyAttributes}} + {{#if isDirty}} diff --git a/app/pods/protected/characteristics/edit/controller.js b/app/pods/protected/characteristics/edit/controller.js index 3c8ecf2..326bca4 100644 --- a/app/pods/protected/characteristics/edit/controller.js +++ b/app/pods/protected/characteristics/edit/controller.js @@ -1,32 +1,9 @@ import Ember from 'ember'; -import ajaxError from '../../../../utils/ajax-error'; +import SaveModel from '../../../../mixins/save-model'; -export default Ember.Controller.extend({ - actions: { - save: function() { - let characteristic = this.get('model'); +const { Controller } = Ember; - if (characteristic.get('hasDirtyAttributes')) { - characteristic.save().then((characteristic) => { - this.transitionToRoute('protected.characteristics.show', characteristic); - }, () => { - ajaxError(characteristic.get('errors'), this.get('flashMessages')); - }); - } else { - characteristic.destroyRecord().then(() => { - this.transitionToRoute('protected.characteristics.show', characteristic); - }); - } - }, - - cancel: function() { - let characteristic = this.get('model'); - - characteristic.get('errors').clear(); - characteristic.rollbackAttributes(); - - this.transitionToRoute('protected.characteristics.show', characteristic); - }, - - }, +export default Controller.extend(SaveModel, { + // Required for SaveModel mixin + fallbackRoute: 'protected.characteristics.show', }); diff --git a/app/pods/protected/characteristics/edit/route.js b/app/pods/protected/characteristics/edit/route.js index 3f35133..36f8dab 100644 --- a/app/pods/protected/characteristics/edit/route.js +++ b/app/pods/protected/characteristics/edit/route.js @@ -1,25 +1,15 @@ import Ember from 'ember'; +import ElevatedAccess from '../../../../mixins/elevated-access'; -export default Ember.Route.extend({ - currentUser: Ember.inject.service('session-account'), +const { Route } = Ember; - beforeModel: function(transition) { - this._super(transition); - this.get('currentUser.account').then((user) => { - if (user.get('isReader')) { - this.transitionTo('protected.characteristics.index'); - } - }); - }, +export default Route.extend(ElevatedAccess, { + // Required for ElevatedAccess mixin + fallbackRouteBefore: 'protected.characteristics.index', + fallbackRouteAfter: 'protected.characteristics.show', model: function(params) { - return this.store.findRecord('characteristic', params.characteristic_id, { reload: true }); - }, - - afterModel: function(model) { - if (!model.get('canEdit')) { - this.transitionTo('characteristics.show', model.get('id')); - } + return this.store.findRecord('characteristic', params.characteristic_id); }, }); diff --git a/app/pods/protected/characteristics/edit/template.hbs b/app/pods/protected/characteristics/edit/template.hbs index 3f1fe65..f91ed1c 100644 --- a/app/pods/protected/characteristics/edit/template.hbs +++ b/app/pods/protected/characteristics/edit/template.hbs @@ -1,6 +1,6 @@ {{ protected/characteristics/characteristic-form characteristic=model - save="save" - cancel="cancel" + on-save=(action "save") + on-cancel=(action "cancel") }}