open-nomad/ui/app/models/volume.js

67 lines
1.8 KiB
JavaScript
Raw Normal View History

import { computed } from '@ember/object';
import Model from '@ember-data/model';
import { attr, belongsTo, hasMany } from '@ember-data/model';
2020-02-11 00:19:28 +00:00
export default class Volume extends Model {
@attr('string') plainId;
@attr('string') name;
2020-02-11 00:19:28 +00:00
@belongsTo('namespace') namespace;
@belongsTo('plugin') plugin;
@hasMany('allocation') writeAllocations;
@hasMany('allocation') readAllocations;
@computed('writeAllocations.[]', 'readAllocations.[]')
get allocations() {
2021-12-28 16:08:12 +00:00
return [
...this.writeAllocations.toArray(),
...this.readAllocations.toArray(),
];
}
@attr('number') currentWriters;
@attr('number') currentReaders;
@computed('currentWriters', 'currentReaders')
get allocationCount() {
return this.currentWriters + this.currentReaders;
}
@attr('string') externalId;
@attr() topologies;
@attr('string') accessMode;
@attr('string') attachmentMode;
@attr('boolean') schedulable;
@attr('string') provider;
@attr('string') version;
@attr('boolean') controllerRequired;
@attr('number') controllersHealthy;
@attr('number') controllersExpected;
2022-01-19 16:20:00 +00:00
@computed('plainId')
get idWithNamespace() {
// does this handle default namespace -- I think the backend handles this for us
// but the client would always need to recreate that logic
return `${this.plainId}@${this.belongsTo('namespace').id()}`;
}
@computed('controllersHealthy', 'controllersExpected')
get controllersHealthyProportion() {
return this.controllersHealthy / this.controllersExpected;
}
@attr('number') nodesHealthy;
@attr('number') nodesExpected;
@computed('nodesHealthy', 'nodesExpected')
get nodesHealthyProportion() {
return this.nodesHealthy / this.nodesExpected;
}
@attr('number') resourceExhausted;
@attr('number') createIndex;
@attr('number') modifyIndex;
}