35 lines
1.0 KiB
JavaScript
35 lines
1.0 KiB
JavaScript
|
import SingleRoute from 'consul-ui/routing/single';
|
||
|
import { inject as service } from '@ember/service';
|
||
|
import { hash } from 'rsvp';
|
||
|
import { get } from '@ember/object';
|
||
|
|
||
|
import WithRoleActions from 'consul-ui/mixins/role/with-actions';
|
||
|
|
||
|
export default SingleRoute.extend(WithRoleActions, {
|
||
|
repo: service('repository/role'),
|
||
|
tokenRepo: service('repository/token'),
|
||
|
model: function(params) {
|
||
|
const dc = this.modelFor('dc').dc.Name;
|
||
|
const tokenRepo = get(this, 'tokenRepo');
|
||
|
return this._super(...arguments).then(model => {
|
||
|
return hash({
|
||
|
...model,
|
||
|
...{
|
||
|
items: tokenRepo.findByRole(get(model.item, 'ID'), dc).catch(function(e) {
|
||
|
switch (get(e, 'errors.firstObject.status')) {
|
||
|
case '403':
|
||
|
case '401':
|
||
|
// do nothing the SingleRoute will have caught it already
|
||
|
return;
|
||
|
}
|
||
|
throw e;
|
||
|
}),
|
||
|
},
|
||
|
});
|
||
|
});
|
||
|
},
|
||
|
setupController: function(controller, model) {
|
||
|
controller.setProperties(model);
|
||
|
},
|
||
|
});
|