Refactor characteristics/edit
This commit is contained in:
parent
31c4ff4d52
commit
7106696533
5 changed files with 70 additions and 56 deletions
|
@ -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);
|
||||
},
|
||||
},
|
||||
}
|
||||
});
|
||||
|
|
|
@ -1,20 +1,20 @@
|
|||
<form class="grid-form" {{action 'save' on='submit'}}>
|
||||
<fieldset>
|
||||
<legend><em>{{characteristic.characteristicName}}</em></legend>
|
||||
<legend><em>{{characteristicName}}</em></legend>
|
||||
<div data-row-span="1">
|
||||
<div data-field-span="1">
|
||||
<label>Characteristic Name</label>
|
||||
{{input value=characteristic.characteristicName class="characteristic-name"}}
|
||||
{{one-way-input type="text" class="characteristic-name" value=characteristicName update=(action "characteristicNameDidChange")}}
|
||||
</div>
|
||||
</div>
|
||||
<div data-row-span="2">
|
||||
<div data-field-span="1">
|
||||
<label>Characteristic Type</label>
|
||||
{{input value=characteristic.characteristicTypeName}}
|
||||
{{one-way-input type="text" class="characteristic-type-name" value=characteristicTypeName update=(action "characteristicTypeNameDidChange")}}
|
||||
</div>
|
||||
<div data-field-span="1">
|
||||
<label>Sort Order</label>
|
||||
{{input value=characteristic.sortOrder}}
|
||||
{{one-way-input type="text" class="sort-order" value=sortOrder update=(action "sortOrderDidChange")}}
|
||||
</div>
|
||||
</div>
|
||||
</fieldset>
|
||||
|
@ -22,7 +22,7 @@
|
|||
<a class="button-red smaller" {{action 'cancel'}}>
|
||||
Cancel
|
||||
</a>
|
||||
{{#if characteristic.hasDirtyAttributes}}
|
||||
{{#if isDirty}}
|
||||
<button type="submit" class="button-green smaller save-characteristic">
|
||||
Save
|
||||
</button>
|
||||
|
|
|
@ -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',
|
||||
});
|
||||
|
|
|
@ -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);
|
||||
},
|
||||
|
||||
});
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{{
|
||||
protected/characteristics/characteristic-form
|
||||
characteristic=model
|
||||
save="save"
|
||||
cancel="cancel"
|
||||
on-save=(action "save")
|
||||
on-cancel=(action "cancel")
|
||||
}}
|
||||
|
|
Reference in a new issue