mirror of https://github.com/rancher/ui.git
29 lines
847 B
JavaScript
29 lines
847 B
JavaScript
import Volume from './volume';
|
|
import { get, computed } from '@ember/object'
|
|
import { inject as service } from '@ember/service';
|
|
import { reference } from '@rancher/ember-api-store/utils/denormalize';
|
|
|
|
export default Volume.extend({
|
|
router: service(),
|
|
|
|
type: 'persistentVolume',
|
|
|
|
storageClass: reference('storageClassId'),
|
|
|
|
canRemove: computed('links.remove', 'state', function() {
|
|
return !!get(this, 'links.remove') && get(this, 'state') !== 'bound';
|
|
}),
|
|
|
|
displayPvc: computed('claimRef.namespace', 'claimRef.name', function() {
|
|
if ( get(this, 'claimRef.name') ) {
|
|
return `${ get(this, 'claimRef.namespace') }/${ get(this, 'claimRef.name') }`;
|
|
}
|
|
}),
|
|
|
|
actions: {
|
|
edit() {
|
|
get(this, 'router').transitionTo('authenticated.cluster.storage.persistent-volumes.detail.edit', get(this, 'id'));
|
|
},
|
|
},
|
|
});
|