mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 16:53:34 +00:00
118 lines
3.9 KiB
TypeScript
118 lines
3.9 KiB
TypeScript
// FIXME: Update this file to be type safe and remove this and next line
|
|
// @ts-strict-ignore
|
|
|
|
import { ITreeNodeObject, TreeNode } from "./models/domain/tree-node";
|
|
|
|
export class ServiceUtils {
|
|
/**
|
|
* Recursively adds a node to nodeTree
|
|
* @param {TreeNode<ITreeNodeObject>[]} nodeTree - An array of TreeNodes that the node will be added to
|
|
* @param {number} partIndex - Index of the `parts` array that is being processed
|
|
* @param {string[]} parts - Array of strings that represent the path to the `obj` node
|
|
* @param {ITreeNodeObject} obj - The node to be added to the tree
|
|
* @param {ITreeNodeObject} parent - The parent node of the `obj` node
|
|
* @param {string} delimiter - The delimiter used to split the path string, will be used to combine the path for missing nodes
|
|
*/
|
|
static nestedTraverse(
|
|
nodeTree: TreeNode<ITreeNodeObject>[],
|
|
partIndex: number,
|
|
parts: string[],
|
|
obj: ITreeNodeObject,
|
|
parent: TreeNode<ITreeNodeObject> | undefined,
|
|
delimiter: string,
|
|
) {
|
|
if (parts.length <= partIndex) {
|
|
return;
|
|
}
|
|
|
|
// 'end' indicates we've traversed as far as we can based on the object name
|
|
const end: boolean = partIndex === parts.length - 1;
|
|
const partName: string = parts[partIndex];
|
|
|
|
// If we're at the end, just add the node - it doesn't matter what else is here
|
|
if (end) {
|
|
nodeTree.push(new TreeNode(obj, parent, partName));
|
|
return;
|
|
}
|
|
|
|
// Get matching nodes at this level by name
|
|
// NOTE: this is effectively a loop so we only want to do it once
|
|
const matchingNodes = nodeTree.filter((n) => n.node.name === partName);
|
|
|
|
// If there are no matching nodes...
|
|
if (matchingNodes.length === 0) {
|
|
// And we're not at the end of the path (because we didn't trigger the early return above),
|
|
// combine the current name with the next name.
|
|
// 1, *1.2, 1.2.1 becomes
|
|
// 1, *1.2/1.2.1
|
|
const newPartName = partName + delimiter + parts[partIndex + 1];
|
|
ServiceUtils.nestedTraverse(
|
|
nodeTree,
|
|
0,
|
|
[newPartName, ...parts.slice(partIndex + 2)],
|
|
obj,
|
|
parent,
|
|
delimiter,
|
|
);
|
|
} else {
|
|
// There is a node here with the same name, descend into it
|
|
ServiceUtils.nestedTraverse(
|
|
matchingNodes[0].children,
|
|
partIndex + 1,
|
|
parts,
|
|
obj,
|
|
matchingNodes[0],
|
|
delimiter,
|
|
);
|
|
return;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Searches a tree for a node with a matching `id`
|
|
* @param {TreeNode<T extends ITreeNodeObject>} nodeTree - A single TreeNode branch that will be searched
|
|
* @param {string} id - The id of the node to be found
|
|
* @returns {TreeNode<T extends ITreeNodeObject>} The node with a matching `id`
|
|
*/
|
|
static getTreeNodeObject<T extends ITreeNodeObject>(
|
|
nodeTree: TreeNode<T>,
|
|
id: string,
|
|
): TreeNode<T> {
|
|
if (nodeTree.node.id === id) {
|
|
return nodeTree;
|
|
}
|
|
for (let i = 0; i < nodeTree.children.length; i++) {
|
|
if (nodeTree.children[i].children != null) {
|
|
const node = ServiceUtils.getTreeNodeObject(nodeTree.children[i], id);
|
|
if (node !== null) {
|
|
return node;
|
|
}
|
|
}
|
|
}
|
|
return null;
|
|
}
|
|
|
|
/**
|
|
* Searches an array of tree nodes for a node with a matching `id`
|
|
* @param {TreeNode<T extends ITreeNodeObject>} nodeTree - An array of TreeNode branches that will be searched
|
|
* @param {string} id - The id of the node to be found
|
|
* @returns {TreeNode<T extends ITreeNodeObject>} The node with a matching `id`
|
|
*/
|
|
static getTreeNodeObjectFromList<T extends ITreeNodeObject>(
|
|
nodeTree: TreeNode<T>[],
|
|
id: string,
|
|
): TreeNode<T> {
|
|
for (let i = 0; i < nodeTree.length; i++) {
|
|
if (nodeTree[i].node.id === id) {
|
|
return nodeTree[i];
|
|
} else if (nodeTree[i].children != null) {
|
|
const node = ServiceUtils.getTreeNodeObjectFromList(nodeTree[i].children, id);
|
|
if (node !== null) {
|
|
return node;
|
|
}
|
|
}
|
|
}
|
|
return null;
|
|
}
|
|
}
|