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

37 lines
935 B
JavaScript

import { inject as service } from '@ember/service';
import { computed } from '@ember/object';
import Model from '@ember-data/model';
import { attr } from '@ember-data/model';
import classic from 'ember-classic-decorator';
import formatHost from 'nomad-ui/utils/format-host';
@classic
export default class Agent extends Model {
@service system;
@attr('string') name;
@attr('string') address;
@attr('string') serfPort;
@attr('string') rpcPort;
@attr({ defaultValue: () => ({}) }) tags;
@attr('string') status;
@attr('string') datacenter;
@attr('string') region;
@computed('address', 'port')
get rpcAddr() {
const { address, rpcPort } = this;
return formatHost(address, rpcPort);
}
@computed('rpcAddr', 'system.leader.rpcAddr')
get isLeader() {
return this.get('system.leader.rpcAddr') === this.rpcAddr;
}
@computed('tags.build')
get version() {
return this.tags?.build || '';
}
}