open-nomad/ui/app/components/allocation-row.js

64 lines
1.8 KiB
JavaScript
Raw Normal View History

2017-09-19 14:47:10 +00:00
import Ember from 'ember';
import { lazyClick } from '../helpers/lazy-click';
2017-09-19 14:47:10 +00:00
const { Component, inject, run } = Ember;
2017-09-19 14:47:10 +00:00
export default Component.extend({
store: inject.service(),
2017-09-19 14:47:10 +00:00
tagName: 'tr',
classNames: ['allocation-row', 'is-interactive'],
allocation: null,
// Used to determine whether the row should mention the node or the job
context: null,
onClick() {},
click(event) {
lazyClick([this.get('onClick'), event]);
2017-09-19 14:47:10 +00:00
},
didReceiveAttrs() {
// TODO: Use this code again once the temporary workaround below
// is resolved.
// If the job for this allocation is incomplete, reload it to get
// detailed information.
// const allocation = this.get('allocation');
// if (
// allocation &&
// allocation.get('job') &&
// !allocation.get('job.isPending') &&
// !allocation.get('taskGroup')
// ) {
// const job = allocation.get('job.content');
// job && job.reload();
// }
// TEMPORARY: https://github.com/emberjs/data/issues/5209
// Ember Data doesn't like it when relationships aren't reflective,
// which means the allocation's job will be null if it hasn't been
// resolved through the allocation (allocation.get('job')) before
// being resolved through the store (store.findAll('job')). The
// workaround is to persist the jobID as a string on the allocation
// and manually re-link the two records here.
run.next(() => {
const allocation = this.get('allocation');
const job = this.get('store').peekRecord('job', allocation.get('originalJobId'));
if (job) {
allocation.set('job', job);
} else {
this.get('store')
.findRecord('job', allocation.get('originalJobId'))
.then(job => {
allocation.set('job', job);
});
}
});
},
2017-09-19 14:47:10 +00:00
});