Clean up after cancelling new model creation

Fixes #27
This commit is contained in:
Matthew Dillon 2015-10-29 16:41:50 -07:00
parent 6ab7e66d03
commit 6dbdd70d31
8 changed files with 27 additions and 17 deletions

View file

@ -13,7 +13,7 @@ export default Ember.Controller.extend({
ajaxError(characteristic.get('errors'), this.get('flashMessages')); ajaxError(characteristic.get('errors'), this.get('flashMessages'));
}); });
} else { } else {
characteristic.deleteRecord().then(() => { characteristic.destroyRecord().then(() => {
this.transitionToRoute('protected.characteristics.show', characteristic); this.transitionToRoute('protected.characteristics.show', characteristic);
}); });
} }

View file

@ -13,12 +13,16 @@ export default Ember.Controller.extend({
ajaxError(characteristic.get('errors'), this.get('flashMessages')); ajaxError(characteristic.get('errors'), this.get('flashMessages'));
}); });
} else { } else {
this.transitionToRoute('protected.characteristics.index'); characteristic.destroyRecord().then(() => {
this.transitionToRoute('protected.characteristics.index');
});
} }
}, },
cancel: function() { cancel: function() {
this.transitionToRoute('protected.characteristics.index'); this.get('model').destroyRecord().then(() => {
this.transitionToRoute('protected.characteristics.index');
});
}, },
}, },

View file

@ -18,11 +18,11 @@ export default Ember.Route.extend({
actions: { actions: {
willTransition: function(/*transition*/) { willTransition: function(/*transition*/) {
let controller = this.get('controller'); const controller = this.get('controller');
let characteristic = controller.get('model'); const characteristic = controller.get('model');
if (characteristic.get('isNew')) { if (characteristic.get('isNew')) {
characteristic.deleteRecord(); characteristic.destroyRecord();
} }
}, },
}, },

View file

@ -13,14 +13,16 @@ export default Ember.Controller.extend({
ajaxError(species.get('errors'), this.get('flashMessages')); ajaxError(species.get('errors'), this.get('flashMessages'));
}); });
} else { } else {
species.deleteRecord().then(() => { species.destroyRecord().then(() => {
this.transitionToRoute('protected.species.index'); this.transitionToRoute('protected.species.index');
}); });
} }
}, },
cancel: function() { cancel: function() {
this.transitionToRoute('protected.species.index'); this.get('model').destroyRecord().then(() => {
this.transitionToRoute('protected.species.index');
});
}, },
}, },

View file

@ -18,11 +18,11 @@ export default Ember.Route.extend({
actions: { actions: {
willTransition: function(/*transition*/) { willTransition: function(/*transition*/) {
let controller = this.get('controller'); const controller = this.get('controller');
let species = controller.get('model'); const species = controller.get('model');
if (species.get('isNew')) { if (species.get('isNew')) {
species.deleteRecord(); species.destroyRecord();
} }
}, },
}, },

View file

@ -13,7 +13,7 @@ export default Ember.Controller.extend({
ajaxError(strain.get('errors'), this.get('flashMessages')); ajaxError(strain.get('errors'), this.get('flashMessages'));
}); });
} else { } else {
strain.deleteRecord().then(() => { strain.destroyRecord().then(() => {
this.transitionToRoute('protected.strains.show', strain); this.transitionToRoute('protected.strains.show', strain);
}); });
} }

View file

@ -13,12 +13,16 @@ export default Ember.Controller.extend({
ajaxError(strain.get('errors'), this.get('flashMessages')); ajaxError(strain.get('errors'), this.get('flashMessages'));
}); });
} else { } else {
this.transitionToRoute('protected.strains.index'); strain.destroyRecord().then(() => {
this.transitionToRoute('protected.strains.index');
});
} }
}, },
cancel: function() { cancel: function() {
this.transitionToRoute('protected.strains.index'); this.get('strain').destroyRecord().then(() => {
this.transitionToRoute('protected.strains.index');
});
}, },
}, },

View file

@ -25,11 +25,11 @@ export default Ember.Route.extend({
actions: { actions: {
willTransition: function(/*transition*/) { willTransition: function(/*transition*/) {
let controller = this.get('controller'); const controller = this.get('controller');
let strain = controller.get('strain'); const strain = controller.get('strain');
if (strain.get('isNew')) { if (strain.get('isNew')) {
strain.deleteRecord(); strain.destroyRecord();
} }
}, },
}, },