open-nomad/ui/app/models/task-state.js

61 lines
1.7 KiB
JavaScript
Raw Normal View History

import { computed } from '@ember/object';
import { alias, none, and } from '@ember/object/computed';
2017-09-19 14:47:10 +00:00
import Fragment from 'ember-data-model-fragments/fragment';
import attr from 'ember-data/attr';
import { fragment, fragmentOwner, fragmentArray } from 'ember-data-model-fragments/attributes';
import classic from 'ember-classic-decorator';
2017-09-19 14:47:10 +00:00
@classic
export default class TaskState extends Fragment {
@fragmentOwner() allocation;
@attr('string') name;
@attr('string') state;
@attr('date') startedAt;
@attr('date') finishedAt;
@attr('boolean') failed;
2017-09-19 14:47:10 +00:00
@none('finishedAt') isActive;
@and('isActive', 'allocation.isRunning') isRunning;
2017-09-19 14:47:10 +00:00
@computed('task.kind')
get isConnectProxy() {
return (this.get('task.kind') || '').startsWith('connect-proxy:');
}
@computed('name', 'allocation.taskGroup.tasks.[]')
get task() {
2017-09-19 14:47:10 +00:00
const tasks = this.get('allocation.taskGroup.tasks');
2019-03-26 07:46:44 +00:00
return tasks && tasks.findBy('name', this.name);
}
2017-09-19 14:47:10 +00:00
@alias('task.driver') driver;
// TaskState represents a task running on a node, so in addition to knowing the
// driver via the task, the health of the driver is also known via the node
@computed('task.driver', 'allocation.node.drivers.[]')
get driverStatus() {
const nodeDrivers = this.get('allocation.node.drivers') || [];
return nodeDrivers.findBy('name', this.get('task.driver'));
}
@fragment('resources') resources;
@fragmentArray('task-event') events;
@computed('state')
get stateClass() {
const classMap = {
pending: 'is-pending',
running: 'is-primary',
finished: 'is-complete',
failed: 'is-error',
};
2019-03-26 07:46:44 +00:00
return classMap[this.state] || 'is-dark';
}
restart() {
return this.allocation.restart(this.name);
}
}