ui/app/models/account.js

67 lines
2.2 KiB
JavaScript

import Ember from 'ember';
import Resource from 'ember-api-store/models/resource';
import PolledResource from 'ui/mixins/cattle-polled-resource';
var Account = Resource.extend(PolledResource, {
type: 'account',
modalService: Ember.inject.service('modal'),
actions: {
deactivate() {
return this.doAction('deactivate');
},
activate() {
return this.doAction('activate');
},
edit: function() {
this.get('modalService').toggleModal('edit-account', this);
},
},
availableActions: function() {
var a = this.get('actionLinks');
return [
{ label: 'action.activate', icon: 'icon icon-play', action: 'activate', enabled: !!a.activate },
{ label: 'action.deactivate', icon: 'icon icon-pause', action: 'deactivate', enabled: !!a.deactivate },
{ label: 'action.remove', icon: 'icon icon-trash', action: 'promptDelete', enabled: !!a.remove, altAction: 'delete' },
{ divider: true },
{ label: 'action.purge', icon: '', action: 'purge', enabled: !!a.purge },
{ label: 'action.restore', icon: '', action: 'restore', enabled: !!a.restore },
{ divider: true },
{ label: 'action.edit', icon: 'icon icon-edit', action: 'edit', enabled: !!a.update },
{ label: 'action.viewInApi', icon: 'icon icon-external-link',action: 'goToApi', enabled: true },
];
}.property('actionLinks.{update,activate,deactivate,restore,remove,purge}'),
username: function() {
var cred = this.get('passwordCredential');
if ( cred )
{
return cred.get('publicValue');
}
else
{
return null;
}
}.property('passwordCredential.{state,publicValue}'),
passwordCredential: function() {
return (this.get('credentials')||[]).filterBy('state','active').filterBy('kind','password')[0];
}.property('credentials.@each.kind'),
apiKeys: function() {
return (this.get('credentials')||[]).filterBy('kind','apiKey');
}.property('credentials.@each.kind')
});
Account.reopenClass({
alwaysInclude: ['credentials'],
pollTransitioningDelay: 1000,
pollTransitioningInterval: 5000,
});
export default Account;