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/elevated-access.js
2015-11-04 13:05:03 -07:00

36 lines
860 B
JavaScript

import Ember from 'ember';
const { Mixin , inject: { service } } = Ember;
export default Mixin.create({
currentUser: service('session-account'),
fallbackRouteBefore: null,
fallbackRouteAfter: null,
beforeModel: function(transition) {
this._super(transition);
this.get('currentUser.account').then((user) => {
if (user.get('isReader')) {
this.transitionTo(this.get('fallbackRouteBefore'));
}
});
},
afterModel: function(model) {
if (!model.get('isNew') && !model.get('canEdit')) {
this.transitionTo(this.get('fallbackRouteAfter'), model.get('id'));
}
},
actions: {
willTransition: function(/*transition*/) {
const controller = this.get('controller');
const model = controller.get('model');
if (model.get('isNew')) {
model.destroyRecord();
}
},
},
});