Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: create getChildPaths API #8

Merged
merged 1 commit into from
May 2, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,8 @@ getChildByPaths("a/b", "number"); // ReturnType: NumberValueNode | undefined

#### `move(from: string, to: string, kind: string): boolean`

#### `getChildPaths(kind: string): string[]`

## LICENCE

[@himenon/path-oriented-data-structure](https://github.com/Himenon/path-oriented-data-structure)・MIT
23 changes: 21 additions & 2 deletions src/Operator.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { Component, HierarchicalData } from "./types";
import type { Component, Children, HierarchicalData } from "./types";
import { Tree } from "./Tree";
import { split } from "./Utils";
import { split, splitKey } from "./Utils";

export class Operator<TreeKind extends string> {
private tree: Tree<TreeKind>;
Expand Down Expand Up @@ -93,4 +93,23 @@ export class Operator<TreeKind extends string> {
}
return false;
}

private getChildPaths(kind: string, children: Children, parentPath: string): string[] {
let pathArray: string[] = [];
Object.entries(children).forEach(([key, child]) => {
const subChildren = child.getChildren();
const [, pathName] = splitKey(key);
const nextPath = [parentPath, pathName].join(this.delimiter).replace(/\/$/, "");
if (subChildren) {
pathArray = pathArray.concat(this.getChildPaths(kind, subChildren, nextPath));
} else if (child.kind === kind) {
pathArray.push(nextPath);
}
});
return pathArray;
}

public getNodePaths(kind: string): string[] {
return this.getChildPaths(kind, this.tree.getChildren(), this.tree.name);
}
}
4 changes: 4 additions & 0 deletions src/Utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ export const generateKey = (kind: string, name: string): string => {
return `${kind}:${name}`;
};

export const splitKey = (key: string): string[] => {
return key.split(":");
};

export const split = (p: string, delimiter: string): string[] => {
const array = [];
for (const seg of p.split(delimiter)) {
Expand Down
75 changes: 75 additions & 0 deletions src/__tests__/getChildPaths.ts.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
import { Node } from "../Node";
import { Operator } from "../Operator";
import { genTestName } from "./tools";
import { treeKind } from "./sample";

describe("Get Child Paths", () => {
test(genTestName("", 0), () => {
const operator = new Operator(treeKind);
expect(operator.getNodePaths("")).toStrictEqual([]);
expect(operator.getNodePaths("a")).toStrictEqual([]);
expect(operator.getNodePaths("b")).toStrictEqual([]);
expect(operator.getNodePaths("c")).toStrictEqual([]);
});

test(genTestName("./a", 1), () => {
const operator = new Operator(treeKind);
const node1 = new Node("node", "b");
operator.set("./a", node1);
console.log(operator.getHierarchy());
expect(operator.getNodePaths("node")).toStrictEqual(["./a"]);
});
test(genTestName("./a", 2), () => {
const operator = new Operator(treeKind);
const node1 = new Node("node1", "b");
const node2 = new Node("node2", "c");
operator.set("./a", node1);
operator.set("./a", node2);
expect(operator.getNodePaths("node1")).toStrictEqual(["./a"]);
expect(operator.getNodePaths("node2")).toStrictEqual(["./a"]);
});
test(genTestName("./a/b", 1), () => {
const operator = new Operator(treeKind);
const node1 = new Node("node", "hello");
operator.set("./a/b", node1);
expect(operator.getNodePaths("node")).toStrictEqual(["./a/b"]);
});
test(genTestName("./a/b", 2), () => {
const operator = new Operator(treeKind);
const node1 = new Node("node1", "hello");
const node2 = new Node("node2", "hello");
operator.set("./a/b", node1);
operator.set("./a/b", node2);
expect(operator.getNodePaths("node1")).toStrictEqual(["./a/b"]);
expect(operator.getNodePaths("node2")).toStrictEqual(["./a/b"]);
});
test(genTestName("./a/b/c", 1), () => {
const operator = new Operator(treeKind);
const node1 = new Node("node", "hello");
operator.set("./a/b/c", node1);
expect(operator.getNodePaths("node")).toStrictEqual(["./a/b/c"]);
});
test(genTestName("./a/b/c", 3), () => {
const operator = new Operator(treeKind);
const node_a1 = new Node("node-A", "hello");
const node_ab2 = new Node("node-B", "world");
const node_abc3 = new Node("node-C", "!");
operator.set("./a", node_a1);
operator.set("./a/b", node_ab2);
operator.set("./a/b/c", node_abc3);
expect(operator.getNodePaths("node-A")).toStrictEqual(["./a"]);
expect(operator.getNodePaths("node-B")).toStrictEqual(["./a/b"]);
expect(operator.getNodePaths("node-C")).toStrictEqual(["./a/b/c"]);
});

test(genTestName("multi paths", 3), () => {
const operator = new Operator(treeKind);
const node_a1 = new Node("node", "hello");
const node_ab2 = new Node("node", "world");
const node_abc3 = new Node("node", "!");
operator.set("./a", node_a1);
operator.set("./a/b", node_ab2);
operator.set("./a/b/c", node_abc3);
expect(operator.getNodePaths("node")).toStrictEqual(["./a", "./a/b", "./a/b/c"]);
});
});