36 lines
860 B
JavaScript
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();
|
|
}
|
|
},
|
|
},
|
|
});
|