open-consul/ui-v2/app/mixins/token/with-actions.js

62 lines
2.2 KiB
JavaScript
Raw Normal View History

import Mixin from '@ember/object/mixin';
import WithBlockingActions from 'consul-ui/mixins/with-blocking-actions';
import { get } from '@ember/object';
import { inject as service } from '@ember/service';
export default Mixin.create(WithBlockingActions, {
settings: service('settings'),
actions: {
use: function(item) {
return get(this, 'feedback').execute(() => {
return get(this, 'repo')
.findBySlug(get(item, 'AccessorID'), this.modelFor('dc').dc.Name)
.then(item => {
return get(this, 'settings')
.persist({
token: {
AccessorID: get(item, 'AccessorID'),
SecretID: get(item, 'SecretID'),
},
})
.then(() => {
// using is similar to delete in that
// if you use from the listing page, stay on the listing page
// whereas if you use from the detail page, take me back to the listing page
return this.afterDelete(...arguments);
});
});
}, 'use');
},
logout: function(item) {
return get(this, 'feedback').execute(() => {
return get(this, 'settings')
.delete('token')
.then(() => {
// logging out is similar to delete in that
// if you log out from the listing page, stay on the listing page
// whereas if you logout from the detail page, take me back to the listing page
return this.afterDelete(...arguments);
});
}, 'logout');
},
clone: function(item) {
let cloned;
return get(this, 'feedback').execute(() => {
return get(this, 'repo')
.clone(item)
.then(item => {
cloned = item;
// cloning is similar to delete in that
// if you clone from the listing page, stay on the listing page
// whereas if you clone from another token, take me back to the listing page
// so I can see it
return this.afterDelete(...arguments);
})
.then(function() {
return cloned;
});
}, 'clone');
},
},
});