2017-12-15 21:39:18 +00:00
|
|
|
import { collect, sum, bool, equal } from '@ember/object/computed';
|
|
|
|
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';
|
2017-10-10 16:36:15 +00:00
|
|
|
import { belongsTo, hasMany } from 'ember-data/relationships';
|
2017-09-19 14:47:10 +00:00
|
|
|
import { fragmentArray } from 'ember-data-model-fragments/attributes';
|
|
|
|
import sumAggregation from '../utils/properties/sum-aggregation';
|
|
|
|
|
|
|
|
export default Model.extend({
|
|
|
|
region: attr('string'),
|
|
|
|
name: attr('string'),
|
2017-10-23 17:22:58 +00:00
|
|
|
plainId: attr('string'),
|
2017-09-19 14:47:10 +00:00
|
|
|
type: attr('string'),
|
|
|
|
priority: attr('number'),
|
|
|
|
allAtOnce: attr('boolean'),
|
|
|
|
|
|
|
|
status: attr('string'),
|
|
|
|
statusDescription: attr('string'),
|
|
|
|
createIndex: attr('number'),
|
|
|
|
modifyIndex: attr('number'),
|
|
|
|
|
|
|
|
periodic: attr('boolean'),
|
|
|
|
parameterized: attr('boolean'),
|
|
|
|
|
|
|
|
datacenters: attr(),
|
|
|
|
taskGroups: fragmentArray('task-group', { defaultValue: () => [] }),
|
|
|
|
taskGroupSummaries: fragmentArray('task-group-summary'),
|
|
|
|
|
|
|
|
// Aggregate allocation counts across all summaries
|
|
|
|
queuedAllocs: sumAggregation('taskGroupSummaries', 'queuedAllocs'),
|
|
|
|
startingAllocs: sumAggregation('taskGroupSummaries', 'startingAllocs'),
|
|
|
|
runningAllocs: sumAggregation('taskGroupSummaries', 'runningAllocs'),
|
|
|
|
completeAllocs: sumAggregation('taskGroupSummaries', 'completeAllocs'),
|
|
|
|
failedAllocs: sumAggregation('taskGroupSummaries', 'failedAllocs'),
|
|
|
|
lostAllocs: sumAggregation('taskGroupSummaries', 'lostAllocs'),
|
|
|
|
|
2017-12-15 21:39:18 +00:00
|
|
|
allocsList: collect(
|
2017-09-19 14:47:10 +00:00
|
|
|
'queuedAllocs',
|
|
|
|
'startingAllocs',
|
|
|
|
'runningAllocs',
|
|
|
|
'completeAllocs',
|
|
|
|
'failedAllocs',
|
|
|
|
'lostAllocs'
|
|
|
|
),
|
|
|
|
|
2017-12-15 21:39:18 +00:00
|
|
|
totalAllocs: sum('allocsList'),
|
2017-09-19 14:47:10 +00:00
|
|
|
|
|
|
|
pendingChildren: attr('number'),
|
|
|
|
runningChildren: attr('number'),
|
|
|
|
deadChildren: attr('number'),
|
|
|
|
|
|
|
|
versions: hasMany('job-versions'),
|
|
|
|
allocations: hasMany('allocations'),
|
|
|
|
deployments: hasMany('deployments'),
|
2017-11-29 01:23:30 +00:00
|
|
|
evaluations: hasMany('evaluations'),
|
2017-10-10 16:36:15 +00:00
|
|
|
namespace: belongsTo('namespace'),
|
2017-09-19 14:47:10 +00:00
|
|
|
|
2017-12-15 21:39:18 +00:00
|
|
|
hasPlacementFailures: bool('latestFailureEvaluation'),
|
2017-11-29 01:23:30 +00:00
|
|
|
|
|
|
|
latestEvaluation: computed('evaluations.@each.modifyIndex', 'evaluations.isPending', function() {
|
|
|
|
const evaluations = this.get('evaluations');
|
|
|
|
if (!evaluations || evaluations.get('isPending')) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
return evaluations.sortBy('modifyIndex').get('lastObject');
|
|
|
|
}),
|
|
|
|
|
|
|
|
latestFailureEvaluation: computed(
|
|
|
|
'evaluations.@each.modifyIndex',
|
|
|
|
'evaluations.isPending',
|
|
|
|
function() {
|
|
|
|
const evaluations = this.get('evaluations');
|
|
|
|
if (!evaluations || evaluations.get('isPending')) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
const failureEvaluations = evaluations.filterBy('hasPlacementFailures');
|
|
|
|
if (failureEvaluations) {
|
|
|
|
return failureEvaluations.sortBy('modifyIndex').get('lastObject');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
),
|
|
|
|
|
2017-12-15 21:39:18 +00:00
|
|
|
supportsDeployments: equal('type', 'service'),
|
2017-10-24 19:35:29 +00:00
|
|
|
|
2017-09-19 14:47:10 +00:00
|
|
|
runningDeployment: computed('deployments.@each.status', function() {
|
|
|
|
return this.get('deployments').findBy('status', 'running');
|
|
|
|
}),
|
|
|
|
|
|
|
|
fetchRawDefinition() {
|
|
|
|
return this.store.adapterFor('job').fetchRawDefinition(this);
|
|
|
|
},
|
|
|
|
|
|
|
|
statusClass: computed('status', function() {
|
|
|
|
const classMap = {
|
|
|
|
pending: 'is-pending',
|
|
|
|
running: 'is-primary',
|
|
|
|
dead: 'is-light',
|
|
|
|
};
|
|
|
|
|
|
|
|
return classMap[this.get('status')] || 'is-dark';
|
|
|
|
}),
|
|
|
|
});
|