Refactor strains/new

This commit is contained in:
Matthew Dillon 2015-11-10 14:31:38 -07:00
parent 29c507af6b
commit fa5b741e35
11 changed files with 45 additions and 60 deletions

View file

@ -36,7 +36,7 @@ export function testConfig() {
return {
strain: db.strains.find(request.params.id),
species: db.species, // Just send back everything we've got
}
};
});
this.put('/strains/:id');
}

View file

@ -13,17 +13,12 @@ export default Mixin.create({
const fallbackRoute = this.get('fallbackRouteSave');
model.setProperties(properties);
if (model.get('hasDirtyAttributes')) {
model.save().then((model) => {
this.get('flashMessages').clearMessages();
this.transitionToRoute(fallbackRoute, model);
}, () => {
ajaxError(model.get('errors'), this.get('flashMessages'));
});
} else {
model.save().then((model) => {
this.get('flashMessages').clearMessages();
this.transitionToRoute(fallbackRoute, model);
}
}, () => {
ajaxError(model.get('errors'), this.get('flashMessages'));
});
},
cancel: function() {

View file

@ -25,6 +25,10 @@ export default DS.Model.extend({
return Ember.String.htmlSafe(`${this.get('strainName')}${type}`);
}.property('strainName', 'typeStrain').readOnly(),
fullName: Ember.computed('species', 'strainName', function() {
return `${this.get('species.speciesName')} ${this.get('strainNameMU')}`;
}),
fullNameMU: function() {
return Ember.String.htmlSafe(`<em>${this.get('species.speciesName')}</em> ${this.get('strainNameMU')}`);
}.property('species', 'strainNameMU').readOnly(),

View file

@ -2,7 +2,6 @@
protected/strains/strain-form
strain=model
speciesList=speciesList
canAdd=metaData.canAdd
on-save=(action "save")
on-cancel=(action "cancel")
}}

View file

@ -6,7 +6,7 @@ const { Component, computed: { sort } } = Ember;
export default Component.extend(SetupMetaData, {
strains: null,
sortParams: ['fullNameMU'],
sortParams: ['fullName'],
sortedStrains: sort('strains', 'sortParams'),
});

View file

@ -1,29 +1,10 @@
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 strain = this.get('strain');
const { Controller } = Ember;
if (strain.get('hasDirtyAttributes')) {
strain.save().then((strain) => {
this.transitionToRoute('protected.strains.show', strain);
}, () => {
ajaxError(strain.get('errors'), this.get('flashMessages'));
});
} else {
strain.destroyRecord().then(() => {
this.transitionToRoute('protected.strains.index');
});
}
},
cancel: function() {
this.get('strain').destroyRecord().then(() => {
this.transitionToRoute('protected.strains.index');
});
},
},
export default Controller.extend(SaveModel, {
// Required for SaveModel mixin
fallbackRouteSave: 'protected.strains.show',
fallbackRouteCancel: 'protected.strains.index',
});

View file

@ -1,16 +1,12 @@
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.strains.index');
}
});
},
export default Route.extend(ElevatedAccess, {
// Required for ElevatedAccess mixin
fallbackRouteBefore: 'protected.strains.index',
fallbackRouteAfter: 'protected.strains.show',
model: function() {
return Ember.RSVP.hash({
@ -19,19 +15,28 @@ export default Ember.Route.extend({
});
},
// Overriding afterModel because of RSVP hash
afterModel: function(models) {
if (!models.strain.get('isNew') && !models.strain.get('canEdit')) {
this.transitionTo(this.get('fallbackRouteAfter'), models.strain.get('id'));
}
},
// Setting up controller because of RSVP hash
setupController: function(controller, models) {
controller.setProperties(models);
controller.set('model', models.strain);
controller.set('speciesList', models.species);
},
actions: {
// Overriding willTransition because of RSVP hash
willTransition: function(/*transition*/) {
const controller = this.get('controller');
const strain = controller.get('strain');
const model = controller.get('model');
if (strain.get('isNew')) {
strain.destroyRecord();
if (model.get('isNew')) {
model.destroyRecord();
}
},
},
});

View file

@ -1,7 +1,7 @@
{{
protected/strains/strain-form
strain=strain
species=species
save="save"
cancel="cancel"
strain=model
speciesList=speciesList
on-save=(action "save")
on-cancel=(action "cancel")
}}

View file

@ -98,7 +98,7 @@
</div>
{{#if strain.canEdit}}
<br>
{{#link-to 'protected.strains.edit' strain class="button-gray smaller"}}
{{#link-to 'protected.strains.edit' strain.id class="button-gray smaller"}}
Edit
{{/link-to}}
{{delete-button delete=(action 'deleteStrain')}}

View file

@ -63,7 +63,8 @@ export default Component.extend(SetupMetaData, {
},
speciesDidChange: function(value) {
this.updateField('species', value);
const newSpecies = this.get('speciesList').findBy('id', value);
this.updateField('species', newSpecies);
},
isolatedFromDidChange: function(value) {

View file

@ -17,7 +17,7 @@
<label>Species</label>
<select onchange={{action "speciesDidChange" value="target.value"}}>
{{#each speciesList as |speciesChoice|}}
<option value={{speciesChoice}} selected={{equal species speciesChoice}}>{{speciesChoice.speciesName}}</option>
<option value={{speciesChoice.id}} selected={{equal species.id speciesChoice.id}}>{{speciesChoice.speciesName}}</option>
{{/each}}
</select>
</div>