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

Update Json Graph Traversal Algorithm #431

Open
wants to merge 17 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 7 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
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,9 @@ export function parser(jsonStr: string): Graph {
throw new Error("Invalid document");
}

traverse({ states, objectToTraverse: parsedJsonTree });
console.log(parsedJsonTree);
const rootId = addNodeToGraph({ graph: states.graph, text: "Root", type: "object" });
traverse({ states, objectToTraverse: parsedJsonTree, myParentId: rootId });

const { notHaveParent, graph } = states;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ export function getNodePath(nodes: NodeData[], edges: EdgeData[], nodeId: string

if (!curNode) break;
if (curNode.data?.type === "array") {
resolvedPath += `.${curNode.text}`;
if (curNode.text !== "") {
resolvedPath += `.${curNode.text}`;
}

if (i !== path.length - 1) {
const toNodeId = path[i + 1];
Expand All @@ -49,7 +51,9 @@ export function getNodePath(nodes: NodeData[], edges: EdgeData[], nodeId: string
}

if (curNode.data?.type === "object") {
resolvedPath += `.${curNode.text}`;
if (curNode.text !== "") {
resolvedPath += `.${curNode.text}`;
}
}
}

Expand Down
315 changes: 89 additions & 226 deletions src/containers/Editor/components/views/GraphView/lib/utils/traverse.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,9 @@
import type { Node, NodeType } from "jsonc-parser";
import type {
Graph,
States,
} from "src/containers/Editor/components/views/GraphView/lib/jsonParser";
import { calculateNodeSize } from "src/containers/Editor/components/views/GraphView/lib/utils/calculateNodeSize";
// import type { Node, NodeType } from "jsonc-parser";
import type { Node } from "jsonc-parser";
import type { States } from "src/containers/Editor/components/views/GraphView/lib/jsonParser";
import { addEdgeToGraph } from "./addEdgeToGraph";
import { addNodeToGraph } from "./addNodeToGraph";

type PrimitiveOrNullType = "boolean" | "string" | "number" | "null";

type Traverse = {
states: States;
objectToTraverse: Node;
Expand All @@ -17,242 +12,110 @@ type Traverse = {
nextType?: string;
};

const isPrimitiveOrNullType = (type: unknown): type is PrimitiveOrNullType => {
return ["boolean", "string", "number", "null"].includes(type as string);
};

const alignChildren = (nodeA: Node, nodeB: Node): number => {
const aChildType = nodeA?.children?.[1]?.type;
const bChildType = nodeB?.children?.[1]?.type;

if (isPrimitiveOrNullType(aChildType) && !isPrimitiveOrNullType(bChildType)) {
return -1;
}

return 0;
};

function handleNoChildren(
value: string | undefined,
states: States,
graph: Graph,
myParentId?: string,
parentType?: string,
nextType?: string
) {
if (value === undefined) return;
const traverseArray = (states: States, array: Node, parentId: string) => {
// Unpack input args
const graph = states.graph;

if (parentType === "property" && nextType !== "object" && nextType !== "array") {
states.brothersParentId = myParentId;
if (nextType === undefined && Array.isArray(states.brothersNode)) {
states.brothersNode.push([states.brotherKey, value]);
} else {
states.brotherKey = value;
// Check that the array has children
if (array.children) {
// Records the number of child elements the array will have
const parentNode = graph.nodes.at(Number(parentId) - 1);
if (parentNode) {
parentNode.data.childrenCount = array.children.length;
}
} else if (parentType === "array") {
const nodeFromArrayId = addNodeToGraph({ graph, text: String(value) });

if (myParentId) {
addEdgeToGraph(graph, myParentId, nodeFromArrayId);
}
}
// Begin looping over each array element processing accordingly
for (let i = 0; i < array.children.length; i++) {
const child = array.children[i];

// Setup the node text
// For an array of complex type (object/array) we need
// to construct dummy nodes that handle either nested arrays
// or multiple nodes within an object
// For simple types we can just read in the child objects value
acpaquette marked this conversation as resolved.
Show resolved Hide resolved
let nodeText = "";
if (child.value !== undefined) {
nodeText = String(child.value);
}

if (nextType && parentType !== "array" && (nextType === "object" || nextType === "array")) {
states.parentName = value;
const nodeId = addNodeToGraph({
graph,
text: String(nodeText),
type: child.type,
});
addEdgeToGraph(graph, parentId, nodeId);

// Call the appropriate traversal function
// Or end if there are no more nested elements
acpaquette marked this conversation as resolved.
Show resolved Hide resolved
if (child.type === "array") {
traverseArray(states, array.children[i], nodeId);
} else if (child.type === "object") {
traverse({ objectToTraverse: child, states, myParentId: nodeId });
}
}
}
}

function handleHasChildren(
type: NodeType,
states: States,
graph: Graph,
children: Node[],
myParentId?: string,
parentType?: string
) {
let parentId: string | undefined;

if (type !== "property" && states.parentName !== "") {
// add last brothers node and add parent node

if (states.brothersNode.length > 0) {
const findBrothersNode = states.brothersNodeProps.find(
e =>
e.parentId === states.brothersParentId &&
e.objectsFromArrayId === states.objectsFromArray[states.objectsFromArray.length - 1]
);

if (findBrothersNode) {
const findNodeIndex = graph.nodes.findIndex(e => e.id === findBrothersNode?.id);

if (findNodeIndex !== -1) {
const modifyNodes = [...graph.nodes];
const foundNode = modifyNodes[findNodeIndex];

foundNode.text = foundNode.text.concat(states.brothersNode as any);
const { width, height } = calculateNodeSize(foundNode.text, false);

foundNode.width = width;
foundNode.height = height;

graph.nodes = modifyNodes;
states.brothersNode = [];
}
} else {
const brothersNodeId = addNodeToGraph({ graph, text: states.brothersNode });

states.brothersNode = [];
};

if (states.brothersParentId) {
addEdgeToGraph(graph, states.brothersParentId, brothersNodeId);
export const traverse = ({ objectToTraverse, states, myParentId }: Traverse) => {
// Unpack input arguments
const graph = states.graph;
const { children } = objectToTraverse;

// Setup initial step conditions
let nodeId = "";
const nodeText: [string, string][] = [];
const childQueue: Node[] = [];
if (children) {
// Loop over the children of the json node
acpaquette marked this conversation as resolved.
Show resolved Hide resolved
for (let i = 0; i < children.length; i++) {
const child = children[i];
if (child.children) {
// If the child is not an object or array it is a property
// record it into the nodeText
// Otherwise, push it onto the nodes to be traversed
acpaquette marked this conversation as resolved.
Show resolved Hide resolved
if (child.children[1].type !== "object" && child.children[1].type !== "array") {
nodeText.push([child.children[0].value, child.children[1].value]);
} else {
states.notHaveParent.push(brothersNodeId);
childQueue.push(child);
}

states.brothersNodeProps.push({
id: brothersNodeId,
parentId: states.brothersParentId,
objectsFromArrayId: states.objectsFromArray[states.objectsFromArray.length - 1],
});
}
}

// Add parent node
parentId = addNodeToGraph({ graph, type, text: states.parentName });
states.bracketOpen.push({ id: parentId, type });
states.parentName = "";

// Add edges from parent node
const brothersProps = states.brothersNodeProps.filter(
e =>
e.parentId === myParentId &&
e.objectsFromArrayId === states.objectsFromArray[states.objectsFromArray.length - 1]
);

if (
(brothersProps.length > 0 &&
states.bracketOpen[states.bracketOpen.length - 2]?.type !== "object") ||
(brothersProps.length > 0 && states.bracketOpen.length === 1)
) {
addEdgeToGraph(graph, brothersProps[brothersProps.length - 1].id, parentId);
} else if (myParentId) {
addEdgeToGraph(graph, myParentId, parentId);
} else {
states.notHaveParent.push(parentId);
}
} else if (parentType === "array") {
states.objectsFromArray = [...states.objectsFromArray, states.objectsFromArrayId++];
}
const traverseObject = (objectToTraverse: Node, nextType: string) => {
traverse({
states,
objectToTraverse,
parentType: type,
myParentId: states.bracketOpen[states.bracketOpen.length - 1]?.id,
nextType,
});
};

const traverseArray = () => {
children.forEach((objectToTraverse, index, array) => {
const nextType = array[index + 1]?.type;

traverseObject(objectToTraverse, nextType);
});
};

if (type === "object") {
children.sort(alignChildren);
traverseArray();
} else {
traverseArray();
// If we have parent and we have record some number of properties
// add that them as a node in the graph
acpaquette marked this conversation as resolved.
Show resolved Hide resolved
if (myParentId && nodeText.length !== 0) {
nodeId = addNodeToGraph({ graph, text: nodeText });
addEdgeToGraph(graph, myParentId, nodeId);
}

if (type !== "property") {
// Add or concatenate brothers node when it is the last parent node
if (states.brothersNode.length > 0) {
const findBrothersNode = states.brothersNodeProps.find(
e =>
e.parentId === states.brothersParentId &&
e.objectsFromArrayId === states.objectsFromArray[states.objectsFromArray.length - 1]
);

if (findBrothersNode) {
const modifyNodes = [...graph.nodes];
const findNodeIndex = modifyNodes.findIndex(e => e.id === findBrothersNode?.id);

if (modifyNodes[findNodeIndex] && typeof states.brothersNode === "string") {
modifyNodes[findNodeIndex].text += states.brothersNode;

const { width, height } = calculateNodeSize(modifyNodes[findNodeIndex].text, false);

modifyNodes[findNodeIndex].width = width;
modifyNodes[findNodeIndex].height = height;

graph.nodes = modifyNodes;
states.brothersNode = [];
}
} else {
const brothersNodeId = addNodeToGraph({ graph, text: states.brothersNode });

states.brothersNode = [];

if (states.brothersParentId) {
addEdgeToGraph(graph, states.brothersParentId, brothersNodeId);
} else {
states.notHaveParent = [...states.notHaveParent, brothersNodeId];
}

const brothersNodeProps = {
id: brothersNodeId,
parentId: states.brothersParentId,
objectsFromArrayId: states.objectsFromArray[states.objectsFromArray.length - 1],
};

states.brothersNodeProps = [...states.brothersNodeProps, brothersNodeProps];
// Record the number of child objects the node will have
if (myParentId) {
const node = graph.nodes.at(Number(myParentId) - 1);
if (node) {
node.data.childrenCount = childQueue.length;
if (nodeText.length !== 0) {
node.data.childrenCount += 1;
}
}
}

// Close brackets
if (parentType === "array") {
if (states.objectsFromArray.length > 0) {
states.objectsFromArray.pop();
// Iterate over the child queue processing each child accordingly
acpaquette marked this conversation as resolved.
Show resolved Hide resolved
childQueue.forEach(child => {
if (child.children) {
const brotherNodeId = addNodeToGraph({
graph,
text: child.children[0].value,
type: child.children[1].type,
});
if (myParentId) {
addEdgeToGraph(graph, myParentId, brotherNodeId);
}
} else {
if (states.bracketOpen.length > 0) {
states.bracketOpen.pop();
if (child.children[1].type === "object") {
traverse({ objectToTraverse: child.children[1], states, myParentId: brotherNodeId });
} else if (child.children[1].type === "array") {
traverseArray(states, child.children[1], brotherNodeId);
}
}

if (parentId) {
const myChildren = graph.edges.filter(edge => edge.from === parentId);
const parentIndex = graph.nodes.findIndex(node => node.id === parentId);

graph.nodes = graph.nodes.map((node, index) => {
if (index === parentIndex) {
const childrenCount = myChildren.length;

return { ...node, data: { ...node.data, childrenCount } };
}
return node;
});
}
}
}

export const traverse = ({
objectToTraverse,
states,
myParentId,
nextType,
parentType,
}: Traverse) => {
const graph = states.graph;
const { type, children, value } = objectToTraverse;

if (!children) {
handleNoChildren(value, states, graph, myParentId, parentType, nextType);
} else if (children) {
handleHasChildren(type, states, graph, children, myParentId, parentType);
}
});
};