93e827fe81
* add ember-cli-deprecation-workflow * this._router in routes to quiet deprecation * mark style bindings as htmlSafe strings * simplify authenticate service hook with async fn * don't serialize aliases relationship on entities * update ember-test-selectors so we can use supportsDataTestProperties * allow duplicate flash messages because we don't want a log warning * update ember-concurrency for better error message * use ember-qunit instead of ember-cli-qunit * update ember-cli-page-object so we're not using a beta lol * ignore test-helper jquery context warning * fix race condition in pgp-file test by using ember-concurrency task and test waiter * await cli commands * fail tests if async leakage is detected * update auth-jwt component and tests to be simpler * fix linting * review feedback
37 lines
873 B
JavaScript
37 lines
873 B
JavaScript
import { computed } from '@ember/object';
|
|
import Component from '@ember/component';
|
|
import { encodePath } from 'vault/utils/path-encoding-helpers';
|
|
|
|
export function linkParams({ mode, secret, queryParams }) {
|
|
let params;
|
|
const route = `vault.cluster.secrets.backend.${mode}`;
|
|
|
|
if (!secret || secret === ' ') {
|
|
params = [route + '-root'];
|
|
} else {
|
|
params = [route, encodePath(secret)];
|
|
}
|
|
|
|
if (queryParams) {
|
|
params.push(queryParams);
|
|
}
|
|
|
|
return params;
|
|
}
|
|
|
|
export default Component.extend({
|
|
tagName: '',
|
|
// so that ember-test-selectors doesn't log a warning
|
|
supportsDataTestProperties: true,
|
|
mode: 'list',
|
|
|
|
secret: null,
|
|
queryParams: null,
|
|
ariaLabel: null,
|
|
|
|
linkParams: computed('mode', 'secret', 'queryParams', function() {
|
|
let data = this.getProperties('mode', 'secret', 'queryParams');
|
|
return linkParams(data);
|
|
}),
|
|
});
|