This commit is contained in:
Matthew Ryan Dillon 2017-12-03 20:18:46 -07:00
parent 7f73046773
commit 4875f42152
3 changed files with 30 additions and 18 deletions

View file

@ -12,6 +12,7 @@ export default Controller.extend(ValidationMixin, {
DatasheetValidations, DatasheetValidations,
hasMany: ['collectionSpecies', 'datasheets'], hasMany: ['collectionSpecies', 'datasheets'],
safeNavigate: false,
options: computed('projectOptions', 'studyLocationOptions', options: computed('projectOptions', 'studyLocationOptions',
'collectionTypeOptions', 'collectionMethodOptions', 'collectionTypeOptions', 'collectionMethodOptions',
@ -29,15 +30,21 @@ export default Controller.extend(ValidationMixin, {
actions: { actions: {
onSave(changesets) { onSave(changesets) {
const postSave = () => { const postSave = () => {
this.set('safeNavigate', true);
// Use the model's ID here because of the ArrayProxy in the route // Use the model's ID here because of the ArrayProxy in the route
this.transitionToRoute('collections.detail', this.get('model.id')); this.transitionToRoute('collections.detail', this.get('model.id'));
this.set('safeNavigate', false);
console.log('save');
}; };
return this.validationSave(changesets, postSave); return this.validationSave(changesets, postSave);
}, },
onCancel(changesets) { onCancel(changesets) {
const postCancel = () => { const postCancel = () => {
this.set('safeNavigate', true);
// Use the model's ID here because of the ArrayProxy in the route // Use the model's ID here because of the ArrayProxy in the route
return this.transitionToRoute('collections.detail', this.get('model.id')); this.transitionToRoute('collections.detail', this.get('model.id'));
this.set('safeNavigate', false);
console.log('cancel');
}; };
return this.validationCancel(changesets, postCancel); return this.validationCancel(changesets, postCancel);
}, },

View file

@ -5,6 +5,7 @@ const { Mixin, run: { once } } = Ember;
export default Mixin.create({ export default Mixin.create({
actions: { actions: {
willTransition(transition) { willTransition(transition) {
if (!this.get('controller.safeNavigate')) {
if (confirm('Any unsaved changes will be discarded.')) { if (confirm('Any unsaved changes will be discarded.')) {
let model = this.get('controller.model'); let model = this.get('controller.model');
let hasMany = this.get('controller.hasMany'); let hasMany = this.get('controller.hasMany');
@ -25,8 +26,11 @@ export default Mixin.create({
model.deleteRecord(); model.deleteRecord();
} }
} else { } else {
return false; transition.abort();
return false
} }
}
return true;
}, },
}, },
}); });

View file

@ -26,6 +26,7 @@ module.exports = function(environment) {
if (environment === 'development') { if (environment === 'development') {
ENV.APP.API_HOST = 'http://localhost:8000'; ENV.APP.API_HOST = 'http://localhost:8000';
ENV.APP.API_NAMESPACE = 'api/v1'; ENV.APP.API_NAMESPACE = 'api/v1';
ENV.APP.LOG_TRANSITIONS = true;
} }
if (environment === 'test') { if (environment === 'test') {