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-17 16:36:08 -07:00

38 lines
984 B
JavaScript

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