Compare commits

...
Sign in to create a new pull request.

2 commits

Author SHA1 Message Date
4875f42152 WIP 2017-12-03 20:18:46 -07:00
7f73046773 WIP 2017-12-03 17:06:50 -07:00
6 changed files with 53 additions and 3 deletions

View file

@ -11,6 +11,8 @@ export default Controller.extend(ValidationMixin, {
CollectionSpeciesValidations, CollectionSpeciesValidations,
DatasheetValidations, DatasheetValidations,
hasMany: ['collectionSpecies', 'datasheets'],
options: computed('projectOptions', 'studyLocationOptions', options: computed('projectOptions', 'studyLocationOptions',
'collectionTypeOptions', 'collectionMethodOptions', 'collectionTypeOptions', 'collectionMethodOptions',
'speciesOptions', 'adfgPermitOptions', function() { 'speciesOptions', 'adfgPermitOptions', function() {

View file

@ -11,6 +11,9 @@ export default Controller.extend(ValidationMixin, {
CollectionSpeciesValidations, CollectionSpeciesValidations,
DatasheetValidations, DatasheetValidations,
hasMany: ['collectionSpecies', 'datasheets'],
safeNavigate: false,
options: computed('projectOptions', 'studyLocationOptions', options: computed('projectOptions', 'studyLocationOptions',
'collectionTypeOptions', 'collectionMethodOptions', 'collectionTypeOptions', 'collectionMethodOptions',
'speciesOptions', 'adfgPermitOptions', function() { 'speciesOptions', 'adfgPermitOptions', function() {
@ -27,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

@ -0,0 +1,36 @@
import Ember from 'ember';
const { Mixin, run: { once } } = Ember;
export default Mixin.create({
actions: {
willTransition(transition) {
if (!this.get('controller.safeNavigate')) {
if (confirm('Any unsaved changes will be discarded.')) {
let model = this.get('controller.model');
let hasMany = this.get('controller.hasMany');
hasMany.forEach((relationship) => {
model.get(relationship).forEach((r) => {
once(this, () => {
if (r.get('isNew')) {
r.deleteRecord();
} else {
r.rollbackAttributes();
}
}, this);
});
});
if (model.get('isNew')) {
model.deleteRecord();
}
} else {
transition.abort();
return false
}
}
return true;
},
},
});

View file

@ -1,8 +1,9 @@
import Ember from 'ember'; import Ember from 'ember';
import CleanupFormMixin from 'ccdb-web/mixins/cleanup-form';
const { Route, RSVP } = Ember; const { Route, RSVP } = Ember;
export default Route.extend({ export default Route.extend(CleanupFormMixin, {
model() { model() {
const store = this.get('store'); const store = this.get('store');
return RSVP.hash({ return RSVP.hash({

View file

@ -1,8 +1,9 @@
import Ember from 'ember'; import Ember from 'ember';
import CleanupFormMixin from 'ccdb-web/mixins/cleanup-form';
const { Route, RSVP } = Ember; const { Route, RSVP } = Ember;
export default Route.extend({ export default Route.extend(CleanupFormMixin, {
model() { model() {
const store = this.get('store'); const store = this.get('store');
const model = this.modelFor('collections.detail'); const model = this.modelFor('collections.detail');

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') {