60 lines
2.1 KiB
JavaScript
60 lines
2.1 KiB
JavaScript
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 this.feedback.execute(() => {
|
|
return this.repo
|
|
.findBySlug(get(item, 'AccessorID'), this.modelFor('dc').dc.Name)
|
|
.then(item => {
|
|
return 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 this.feedback.execute(() => {
|
|
return 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 this.feedback.execute(() => {
|
|
return 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');
|
|
},
|
|
},
|
|
});
|