Files
vault/ui/lib/core/addon/components/navigate-input.js
claire bontempo e61bd967e3 Add docfy for addon components (#27188)
* move script to scripts folder

* add docfy to router and scripts

* add docfy to router and scripts

* fix jsdoc syntax

* add component markdown files to gitignore

* improve error handling for scripts

* tidy up remaining jsdoc syntax

* add sample jsdoc components

* add known issue info

* make not using multi-line components clearer

* make generating docs clearer

* update copy

* final how to docfy cleanup

* fix ts file @module syntax

* fix read more syntax

* make docfy typescript compatible
2024-05-29 14:06:38 -07:00

243 lines
6.9 KiB
JavaScript

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: BUSL-1.1
*/
import Ember from 'ember';
import { debounce, later } from '@ember/runloop';
import { service } from '@ember/service';
import { action } from '@ember/object';
import { guidFor } from '@ember/object/internals';
import Component from '@glimmer/component';
import { encodePath } from 'vault/utils/path-encoding-helpers';
import { keyIsFolder, parentKeyForKey } from 'core/utils/key-utils';
import keys from 'core/utils/key-codes';
/**
* @module NavigateInput
* `NavigateInput` components are used to filter list data.
*
* @example
* <NavigateInput @filter={{@roleFiltered}} urls={{hash list="vault.cluster.secrets.backend.kubernetes.roles"}}/>
*
* @param {String} filter=null - The filtered string.
* @param {String} [placeholder=Filter items] - The message inside the input to indicate what the user should enter into the space.
* @param {Object} [urls=null] - An object containing list=route url.
* @param {Function} [filterFocusDidChange=null] - A function called when the focus changes.
* @param {Function} [filterDidChange=null] - A function called when the filter string changes.
* @param {Function} [filterMatchesKey=null] - A function used to match to a specific key, such as an Id.
* @param {Function} [filterPartialMatch=null] - A function used to filter through a partial match. Such as "oo" of "root".
* @param {String} [baseKey] - A string to transition by Id.
* @param {Boolean} [shouldNavigateTree=false] - If true, navigate a larger tree, such as when you're navigating leases under access.
* @param {String} [mode=secrets] - Mode which plays into navigation type.
* @param {String} [extraNavParams] - A string used in route transition when necessary.
*/
const routeFor = function (type, mode, urls) {
const MODES = {
secrets: 'vault.cluster.secrets.backend',
'secrets-cert': 'vault.cluster.secrets.backend',
'policy-show': 'vault.cluster.policy',
'policy-list': 'vault.cluster.policies',
leases: 'vault.cluster.access.leases',
};
// urls object should have create, list, show keys
// so we'll return that here
if (urls) {
return urls[type.replace('-root', '')];
}
let useSuffix = true;
const typeVal = mode === 'secrets' || mode === 'leases' ? type : type.replace('-root', '');
const modeKey = mode + '-' + typeVal;
const modeVal = MODES[modeKey] || MODES[mode];
if (modeKey === 'policy-list') {
useSuffix = false;
}
return useSuffix ? modeVal + '.' + typeVal : modeVal;
};
export default class NavigateInput extends Component {
@service router;
inputId = `nav-input-${guidFor(this)}`;
get mode() {
return this.args.mode || 'secrets';
}
transitionToRoute(...args) {
const params = args.map((param, index) => {
if (index === 0 || typeof param !== 'string') {
return param;
}
return encodePath(param);
});
this.router.transitionTo(...params);
}
keyForNav(key) {
if (this.mode !== 'secrets-cert') {
return key;
}
return `cert/${key}`;
}
onEnter(val) {
const mode = this.mode;
const baseKey = this.args.baseKey;
const extraParams = this.args.extraNavParams;
if (mode.startsWith('secrets') && (!val || val === baseKey)) {
return;
}
if (this.args.filterMatchesKey && !keyIsFolder(val)) {
const params = [routeFor('show', mode, this.args.urls), extraParams, this.keyForNav(val)].compact();
this.transitionToRoute(...params);
} else {
if (mode === 'policies') {
return;
}
const route = routeFor('create', mode, this.args.urls);
if (baseKey) {
this.transitionToRoute(route, this.keyForNav(baseKey), {
queryParams: {
initialKey: val,
},
});
} else if (this.args.urls) {
this.transitionToRoute(route, {
queryParams: {
initialKey: this.keyForNav(val),
},
});
} else {
this.transitionToRoute(route + '-root', {
queryParams: {
initialKey: this.keyForNav(val),
},
});
}
}
}
// pop to the nearest parentKey or to the root
onEscape(val) {
const key = parentKeyForKey(val) || '';
this.args.filterDidChange(key);
this.filterUpdated(key);
}
onTab(event) {
const firstPartialMatch = this.args.firstPartialMatch?.id;
if (!firstPartialMatch) {
return;
}
event.preventDefault();
this.args.filterDidChange(firstPartialMatch);
this.filterUpdated(firstPartialMatch);
}
// as you type, navigates through the k/v tree
filterUpdated(val) {
const mode = this.mode;
if (mode === 'policies' || !this.args.shouldNavigateTree) {
this.filterUpdatedNoNav(val, mode);
return;
}
// select the key to nav to, assumed to be a folder
let key = val ? val.trim() : '';
const isFolder = keyIsFolder(key);
if (!isFolder) {
// nav to the closest parentKey (or the root)
key = parentKeyForKey(val) || '';
}
const pageFilter = val.replace(key, '');
this.navigate(this.keyForNav(key), mode, pageFilter);
}
navigate(key, mode, pageFilter) {
const route = routeFor(key ? 'list' : 'list-root', mode, this.args.urls);
const args = [route];
if (key) {
args.push(key);
}
if (pageFilter && !keyIsFolder(pageFilter)) {
args.push({
queryParams: {
page: 1,
pageFilter,
},
});
} else {
args.push({
queryParams: {
page: 1,
pageFilter: null,
},
});
}
this.transitionToRoute(...args);
}
filterUpdatedNoNav(val, mode) {
const key = val ? val.trim() : null;
this.transitionToRoute(routeFor('list-root', mode, this.args.urls), {
queryParams: {
pageFilter: key,
page: 1,
},
});
// component is not re-rendered on policy list so trigger autofocus here
this.maybeFocusInput();
}
@action
maybeFocusInput() {
// if component is loaded and filter is already applied,
// we assume the user just typed in a filter and the page reloaded
if (this.args.filter && !Ember.testing) {
later(
this,
function () {
document.getElementById(this.inputId)?.focus();
},
400
);
}
}
@action
handleInput(evt) {
if (this.args.filterDidChange) {
this.args.filterDidChange(evt.target.value);
}
debounce(this, this.filterUpdated, evt.target.value, 400);
}
@action
setFilterFocused(isFocused) {
if (this.args.filterFocusDidChange) {
this.args.filterFocusDidChange(isFocused);
}
}
@action
handleKeyPress(event) {
if (event.keyCode === keys.TAB) {
this.onTab(event);
}
}
@action
handleKeyUp(event) {
const keyCode = event.keyCode;
const val = event.target.value;
if (keyCode === keys.ENTER) {
this.onEnter(val);
}
if (keyCode === keys.ESC) {
this.onEscape(val);
}
}
}