open-nomad/ui/app/router.js
hc-github-team-nomad-core e9b6be87e2
[ui] Job Variables page (#17964) (#18106)
* Bones of a component that has job variable awareness

* Got vars listed woo

* Variables as its own subnav and some pathLinkedVariable perf fixes

* Automatic Access to Variables alerter

* Helper and component to conditionally render the right link

* A bit of cleanup post-template stuff

* testfix for looping right-arrow keynav bc we have a new subnav section

* A very roundabout way of ensuring that, if a job exists when saving a variable with a pathLinkedEntity of that job, its saved right through to the job itself

* hacky but an async version of pathLinkedVariable

* model-driven and async fetcher driven with cleanup

* Only run the update-job func if jobname is detected in var path

* Test cases begun

* Management token for variables to appear in tests

* Its a management token so it gets to see the clients tab under system jobs

* Pre-review cleanup

* More tests

* Number of requests test and small fix to groups-by-way-or-resource-arrays elsewhere

* Variable intro text tests

* Variable name re-use

* Simplifying our wording a bit

* parse json vs plainId

* Addressed PR feedback, including de-waterfalling

Co-authored-by: Phil Renaud <phil.renaud@hashicorp.com>
2023-08-01 09:59:39 -04:00

126 lines
3 KiB
JavaScript

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
import EmberRouter from '@ember/routing/router';
import config from 'nomad-ui/config/environment';
export default class Router extends EmberRouter {
location = config.locationType;
rootURL = config.rootURL;
}
Router.map(function () {
this.route('exec', { path: '/exec/:job_name' }, function () {
this.route('task-group', { path: '/:task_group_name' }, function () {
this.route('task', { path: '/:task_name' });
});
});
this.route('jobs', function () {
this.route('run', function () {
this.route('templates', function () {
this.route('new');
this.route('manage');
this.route('template', { path: '/:name' });
});
});
this.route('job', { path: '/:job_name' }, function () {
this.route('task-group', { path: '/:name' });
this.route('definition');
this.route('versions');
this.route('deployments');
this.route('dispatch');
this.route('evaluations');
this.route('allocations');
this.route('clients');
this.route('services', function () {
this.route('service', { path: '/:name' });
});
this.route('variables');
});
});
this.route('optimize', function () {
this.route('summary', { path: '*slug' });
});
this.route('clients', function () {
this.route('client', { path: '/:node_id' }, function () {
this.route('monitor');
});
});
this.route('servers', function () {
this.route('server', { path: '/:agent_id' }, function () {
this.route('monitor');
});
});
this.route('topology');
this.route('csi', function () {
this.route('volumes', function () {
this.route('volume', { path: '/:volume_name' });
});
this.route('plugins', function () {
this.route('plugin', { path: '/:plugin_name' }, function () {
this.route('allocations');
});
});
});
this.route('allocations', function () {
this.route('allocation', { path: '/:allocation_id' }, function () {
this.route('fs-root', { path: '/fs' });
this.route('fs', { path: '/fs/*path' });
this.route('task', { path: '/:name' }, function () {
this.route('logs');
this.route('fs-root', { path: '/fs' });
this.route('fs', { path: '/fs/*path' });
});
});
});
this.route('settings', function () {
this.route('tokens');
});
// if we don't include function() the outlet won't render
this.route('evaluations', function () {});
this.route('not-found', { path: '/*' });
this.route('variables', function () {
this.route('new');
this.route(
'variable',
{
path: '/var/*id',
},
function () {
this.route('edit');
}
);
this.route('path', {
path: '/path/*absolutePath',
});
});
this.route('policies', function () {
this.route('new');
this.route('policy', {
path: '/:name',
});
});
// Mirage-only route for testing OIDC flow
if (config['ember-cli-mirage']) {
this.route('oidc-mock');
}
});