89136cbf6a
Manual interventions: • decorators on the same line for service and controller injections and most computed property macros • preserving import order when possible, both per-line and intra-line • moving new imports to the bottom • removal of classic decorator for trivial cases • conversion of init to constructor when appropriate
62 lines
1.6 KiB
JavaScript
62 lines
1.6 KiB
JavaScript
import { inject as service } from '@ember/service';
|
|
import Route from '@ember/routing/route';
|
|
import { collect } from '@ember/object/computed';
|
|
import notifyError from 'nomad-ui/utils/notify-error';
|
|
import { watchRecord, watchRelationship } from 'nomad-ui/utils/properties/watch';
|
|
import WithWatchers from 'nomad-ui/mixins/with-watchers';
|
|
|
|
export default class ClientRoute extends Route.extend(WithWatchers) {
|
|
@service store;
|
|
|
|
model() {
|
|
return super.model(...arguments).catch(notifyError(this));
|
|
}
|
|
|
|
breadcrumbs(model) {
|
|
if (!model) return [];
|
|
return [
|
|
{
|
|
label: model.get('shortId'),
|
|
args: ['clients.client', model.get('id')],
|
|
},
|
|
];
|
|
}
|
|
|
|
afterModel(model) {
|
|
if (model && model.get('isPartial')) {
|
|
return model.reload().then(node => node.get('allocations'));
|
|
}
|
|
return model && model.get('allocations');
|
|
}
|
|
|
|
setupController(controller, model) {
|
|
controller.set('flagAsDraining', model && model.isDraining);
|
|
|
|
return super.setupController(...arguments);
|
|
}
|
|
|
|
resetController(controller) {
|
|
controller.setProperties({
|
|
eligibilityError: null,
|
|
stopDrainError: null,
|
|
drainError: null,
|
|
flagAsDraining: false,
|
|
showDrainNotification: false,
|
|
showDrainUpdateNotification: false,
|
|
showDrainStoppedNotification: false,
|
|
});
|
|
}
|
|
|
|
startWatchers(controller, model) {
|
|
if (model) {
|
|
controller.set('watchModel', this.watch.perform(model));
|
|
controller.set('watchAllocations', this.watchAllocations.perform(model));
|
|
}
|
|
}
|
|
|
|
@watchRecord('node') watch;
|
|
@watchRelationship('allocations') watchAllocations;
|
|
|
|
@collect('watch', 'watchAllocations') watchers;
|
|
}
|