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

41 lines
1.2 KiB
JavaScript
Raw Normal View History

import { computed } from '@ember/object';
2017-09-19 14:47:10 +00:00
import Model from 'ember-data/model';
import attr from 'ember-data/attr';
import { hasMany } from 'ember-data/relationships';
import { fragment } from 'ember-data-model-fragments/attributes';
import shortUUIDProperty from '../utils/properties/short-uuid';
import ipParts from '../utils/ip-parts';
export default Model.extend({
// Available from list response
name: attr('string'),
datacenter: attr('string'),
isDraining: attr('boolean'),
status: attr('string'),
statusDescription: attr('string'),
shortId: shortUUIDProperty('id'),
modifyIndex: attr('number'),
// Available from single response
httpAddr: attr('string'),
tlsEnabled: attr('boolean'),
attributes: fragment('node-attributes'),
meta: fragment('node-attributes'),
2017-09-19 14:47:10 +00:00
resources: fragment('resources'),
reserved: fragment('resources'),
address: computed('httpAddr', function() {
return ipParts(this.get('httpAddr')).address;
}),
port: computed('httpAddr', function() {
return ipParts(this.get('httpAddr')).port;
}),
isPartial: computed('httpAddr', function() {
return this.get('httpAddr') == null;
}),
allocations: hasMany('allocations'),
});