This repository has been archived on 2025-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
hymenobacterdotinfo/app/mixins/save-model.js
2015-11-03 13:41:04 -07:00

31 lines
823 B
JavaScript

import Ember from 'ember';
import ajaxError from '../utils/ajax-error';
export default Ember.Mixin.create({
actions: {
save: function() {
const model = this.get('model');
const fallbackRoute = this.get('fallbackRoute');
if (model.get('hasDirtyAttributes')) {
model.save().then((model) => {
this.transitionToRoute(fallbackRoute, model);
}, () => {
ajaxError(model.get('errors'), this.get('flashMessages'));
});
} else {
this.transitionToRoute(fallbackRoute, model);
}
},
cancel: function() {
const model = this.get('model');
const fallbackRoute = this.get('fallbackRoute');
model.get('errors').clear();
model.rollbackAttributes();
this.transitionToRoute(fallbackRoute, model);
},
},
});