diff --git a/app/pods/protected/strains/edit/controller.js b/app/pods/protected/strains/edit/controller.js index 2f84780..a44ea40 100644 --- a/app/pods/protected/strains/edit/controller.js +++ b/app/pods/protected/strains/edit/controller.js @@ -1,32 +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.show', strain); - }); - } - }, - - cancel: function() { - let strain = this.get('strain'); - - strain.get('errors').clear(); - strain.rollbackAttributes(); - - this.transitionToRoute('protected.strains.show', strain); - }, - - }, +export default Controller.extend(SaveModel, { + // Required for SaveModel mixin + fallbackRouteSave: 'protected.strains.show', + fallbackRouteCancel: 'protected.strains.show', }); diff --git a/app/pods/protected/strains/edit/route.js b/app/pods/protected/strains/edit/route.js index ee75d51..7efe43d 100644 --- a/app/pods/protected/strains/edit/route.js +++ b/app/pods/protected/strains/edit/route.js @@ -1,35 +1,42 @@ 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(params) { return Ember.RSVP.hash({ - strain: this.store.find('strain', params.strain_id), + strain: this.store.findRecord('strain', params.strain_id), species: this.store.findAll('species'), // Need for dropdown }); }, + // Overriding afterModel because of RSVP hash afterModel: function(models) { - if (!models.strain.get('canEdit')) { - this.transitionTo('strains.show', models.strain.get('id')); + 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); - this.get('currentUser.account').then((user) => { - controller.set('metaData', user.get('metaData')); - }); + 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 model = controller.get('model'); + + if (model.get('isNew')) { + model.destroyRecord(); + } + }, + }, }); diff --git a/app/pods/protected/strains/edit/template.hbs b/app/pods/protected/strains/edit/template.hbs index a4885d6..822ac93 100644 --- a/app/pods/protected/strains/edit/template.hbs +++ b/app/pods/protected/strains/edit/template.hbs @@ -1,8 +1,8 @@ {{ protected/strains/strain-form - strain=strain - species=species + strain=model + speciesList=speciesList canAdd=metaData.canAdd - save="save" - cancel="cancel" + on-save=(action "save") + on-cancel=(action "cancel") }} diff --git a/app/pods/protected/strains/strain-form/component.js b/app/pods/protected/strains/strain-form/component.js index 8ac9027..07841a7 100644 --- a/app/pods/protected/strains/strain-form/component.js +++ b/app/pods/protected/strains/strain-form/component.js @@ -1,21 +1,89 @@ import Ember from 'ember'; +import SetupMetaData from '../../../../mixins/setup-metadata'; + +const { Component } = Ember; + +export default Component.extend(SetupMetaData, { + // Read-only attributes + strain: null, + isNew: null, + isDirty: false, + speciesList: null, + + // Actions + "on-save": null, + "on-cancel": null, + "on-update": null, + + // Property mapping + propertiesList: ['strainName', 'typeStrain', 'species', 'isolatedFrom', 'accessionNumbers', 'genbank', 'wholeGenomeSequence', 'notes'], + strainName: null, + typeStrain: null, + species: null, + isolatedFrom: null, + accessionNumbers: null, + genbank: null, + wholeGenomeSequence: null, + notes: null, + + resetOnInit: Ember.on('init', function() { + this.get('propertiesList').forEach((field) => { + const valueInStrain = this.get('strain').get(field); + this.set(field, valueInStrain); + }); + // Read-only attributes + this.set('isNew', this.get('strain.isNew')); + }), + + updateField: function(property, value) { + this.set(property, value); + // Manually compare against passed in value + if (this.get('strain').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'](); + }, + + strainNameDidChange: function(value) { + this.updateField('strainName', value); + }, + + typeStrainDidChange: function() { + this.updateField('typeStrain', !this.get('typeStrain')); + }, + + speciesDidChange: function(value) { + this.updateField('species', value); }, isolatedFromDidChange: function(value) { - this.set('strain.isolatedFrom', value); + this.updateField('isolatedFrom', value); + }, + + accessionNumbersNameDidChange: function(value) { + this.updateField('accessionNumbers', value); + }, + + genbankDidChange: function(value) { + this.updateField('genbank', value); + }, + + wholeGenomeSequenceDidChange: function(value) { + this.updateField('wholeGenomeSequence', value); }, notesDidChange: function(value) { - this.set('strain.notes', value); + this.updateField('strain.notes', value); }, }, }); diff --git a/app/pods/protected/strains/strain-form/template.hbs b/app/pods/protected/strains/strain-form/template.hbs index fef122d..a959f4f 100644 --- a/app/pods/protected/strains/strain-form/template.hbs +++ b/app/pods/protected/strains/strain-form/template.hbs @@ -1,51 +1,51 @@
- {{strain.strainName}} + {{strainName}}
- {{input value=strain.strainName class="strain-name"}} + {{one-way-input type="text" class="strain-name" value=strainName update=(action "strainNameDidChange")}}
- {{input type="checkbox" checked=strain.typeStrain}} {{if strain.typeStrain 'Yes' 'No'}} + + {{if typeStrain 'Yes' 'No'}}
- {{ - select-2 - content=species - optionLabelPath="speciesName" - value=strain.species - }} +
- {{text-editor value=strain.isolatedFrom update=(action "isolatedFromDidChange")}} + {{text-editor value=isolatedFrom update=(action "isolatedFromDidChange")}}
- {{input value=strain.accessionNumbers}} + {{one-way-input type="text" class="accession-numbers" value=accessionNumbers update=(action "accessionNumbersNameDidChange")}}
- {{input value=strain.genbank}} + {{one-way-input type="text" class="genbank" value=genbank update=(action "genbankDidChange")}}
- {{input value=strain.wholeGenomeSequence}} + {{one-way-input type="text" class="whole-genome-sequenc" value=wholeGenomeSequence update=(action "wholeGenomeSequenceDidChange")}}
- {{text-editor value=strain.notes update=(action "notesDidChange")}} + {{text-editor value=notes update=(action "notesDidChange")}}
@@ -61,7 +61,7 @@ Cancel - {{#if strain.hasDirtyAttributes}} + {{#if isDirty}}