2017-12-15 21:39:18 +00:00
|
|
|
import { bool } from '@ember/object/computed';
|
2017-11-29 01:21:56 +00:00
|
|
|
import Model from 'ember-data/model';
|
|
|
|
import attr from 'ember-data/attr';
|
|
|
|
import { belongsTo } from 'ember-data/relationships';
|
|
|
|
import { fragmentArray } from 'ember-data-model-fragments/attributes';
|
|
|
|
import shortUUIDProperty from '../utils/properties/short-uuid';
|
|
|
|
|
|
|
|
export default Model.extend({
|
|
|
|
shortId: shortUUIDProperty('id'),
|
|
|
|
priority: attr('number'),
|
|
|
|
type: attr('string'),
|
|
|
|
triggeredBy: attr('string'),
|
|
|
|
status: attr('string'),
|
|
|
|
statusDescription: attr('string'),
|
|
|
|
failedTGAllocs: fragmentArray('placement-failure', { defaultValue: () => [] }),
|
|
|
|
|
2017-12-15 21:39:18 +00:00
|
|
|
hasPlacementFailures: bool('failedTGAllocs.length'),
|
2017-11-29 01:21:56 +00:00
|
|
|
|
|
|
|
// TEMPORARY: https://github.com/emberjs/data/issues/5209
|
|
|
|
originalJobId: attr('string'),
|
|
|
|
|
|
|
|
job: belongsTo('job'),
|
|
|
|
|
|
|
|
modifyIndex: attr('number'),
|
|
|
|
});
|