2024-01-24 02:27:12 +00:00
|
|
|
import React, { ReactNode, useState } from "react";
|
|
|
|
import styles from "./OrgAst.module.css";
|
2024-01-27 22:01:09 +00:00
|
|
|
import { Fragment } from "react";
|
2024-01-24 02:27:12 +00:00
|
|
|
|
2024-01-27 19:30:15 +00:00
|
|
|
const OrgAst = (props: {
|
|
|
|
setHighlight: Function;
|
|
|
|
clearHighlights: Function;
|
2024-01-27 22:01:09 +00:00
|
|
|
astTree: any;
|
2024-01-27 19:30:15 +00:00
|
|
|
value: string;
|
|
|
|
}) => {
|
2024-01-27 19:24:32 +00:00
|
|
|
const [selectedNode, setSelectedNode] = useState<string>("");
|
|
|
|
|
|
|
|
function selectNode(uid: string, start: number, end: number) {
|
|
|
|
props.setHighlight(start, end);
|
|
|
|
setSelectedNode(uid);
|
2024-01-27 19:04:44 +00:00
|
|
|
}
|
|
|
|
|
2024-01-27 19:56:12 +00:00
|
|
|
if (props.astTree.status !== "success") {
|
|
|
|
return <div className={styles.OrgAst}>Error! {props.astTree.content}</div>;
|
2024-01-24 02:27:12 +00:00
|
|
|
} else {
|
|
|
|
return (
|
2024-01-24 03:06:47 +00:00
|
|
|
<div className={styles.OrgAst}>
|
2024-01-27 19:30:15 +00:00
|
|
|
<OrgAstNode
|
2024-01-27 20:01:37 +00:00
|
|
|
key="^"
|
|
|
|
uid="^"
|
2024-01-27 19:30:15 +00:00
|
|
|
selectNode={selectNode}
|
2024-01-27 19:56:12 +00:00
|
|
|
node={props.astTree.content}
|
2024-01-27 19:30:15 +00:00
|
|
|
selectedNode={selectedNode}
|
|
|
|
/>
|
2024-01-24 03:06:47 +00:00
|
|
|
</div>
|
2024-01-24 02:27:12 +00:00
|
|
|
);
|
|
|
|
}
|
2024-01-24 03:06:47 +00:00
|
|
|
};
|
2024-01-24 02:27:12 +00:00
|
|
|
|
2024-01-27 19:30:15 +00:00
|
|
|
const OrgAstNode = (props: {
|
|
|
|
selectNode: Function;
|
|
|
|
node: any;
|
2024-01-27 20:01:37 +00:00
|
|
|
uid: string;
|
2024-01-27 19:30:15 +00:00
|
|
|
selectedNode: string;
|
|
|
|
}) => {
|
2024-01-27 19:04:44 +00:00
|
|
|
function selectNode() {
|
2024-01-27 19:30:15 +00:00
|
|
|
props.selectNode(
|
2024-01-27 20:01:37 +00:00
|
|
|
props.uid,
|
2024-01-27 19:30:15 +00:00
|
|
|
props.node["standard-properties"]["begin"] - 1,
|
|
|
|
props.node["standard-properties"]["end"] - 1,
|
|
|
|
);
|
2024-01-27 19:04:44 +00:00
|
|
|
}
|
|
|
|
|
2024-01-27 19:30:15 +00:00
|
|
|
const nodeClassName =
|
2024-01-27 20:01:37 +00:00
|
|
|
props.selectedNode === props.uid
|
2024-01-27 19:30:15 +00:00
|
|
|
? styles.OrgAstNode + " " + styles.selected
|
|
|
|
: styles.OrgAstNode;
|
2024-01-27 19:04:44 +00:00
|
|
|
|
2024-01-24 02:27:12 +00:00
|
|
|
return (
|
2024-01-27 19:04:44 +00:00
|
|
|
<div className={nodeClassName}>
|
2024-01-27 19:30:15 +00:00
|
|
|
<div className={styles.OrgAstNodeType} onClick={selectNode}>
|
|
|
|
{props.node["ast-node"]}
|
|
|
|
</div>
|
2024-01-24 04:07:26 +00:00
|
|
|
<details>
|
2024-01-24 03:27:31 +00:00
|
|
|
<summary>Standard Properties</summary>
|
2024-01-27 22:01:09 +00:00
|
|
|
<OrgPropertiesList
|
|
|
|
selectNode={props.selectNode}
|
|
|
|
parentUniqueId={props.uid}
|
|
|
|
selectedNode={props.selectedNode}
|
|
|
|
properties={props.node["standard-properties"]}
|
|
|
|
/>
|
2024-01-24 03:27:31 +00:00
|
|
|
</details>
|
2024-01-27 20:27:23 +00:00
|
|
|
{!!Object.keys(props.node.properties).length ? (
|
|
|
|
<>
|
|
|
|
<details>
|
|
|
|
<summary>Properties</summary>
|
2024-01-27 22:01:09 +00:00
|
|
|
<OrgPropertiesList
|
|
|
|
selectNode={props.selectNode}
|
2024-01-27 20:27:23 +00:00
|
|
|
parentUniqueId={props.uid}
|
|
|
|
selectedNode={props.selectedNode}
|
|
|
|
properties={props.node.properties}
|
|
|
|
/>
|
|
|
|
</details>
|
|
|
|
</>
|
2024-01-27 22:01:09 +00:00
|
|
|
) : null}
|
2024-01-24 03:06:47 +00:00
|
|
|
{Array.isArray(props.node.children) && props.node.children.length > 0 ? (
|
2024-01-24 04:07:26 +00:00
|
|
|
<details open={true}>
|
2024-01-24 03:27:31 +00:00
|
|
|
<summary>Children</summary>
|
2024-01-24 04:07:26 +00:00
|
|
|
<div className={styles.OrgAstChildren}>
|
2024-01-27 19:30:15 +00:00
|
|
|
<OrgAstNodeList
|
|
|
|
selectNode={props.selectNode}
|
2024-01-27 20:01:37 +00:00
|
|
|
parentUniqueId={props.uid}
|
2024-01-27 19:30:15 +00:00
|
|
|
selectedNode={props.selectedNode}
|
|
|
|
node_list={props.node.children}
|
|
|
|
/>
|
2024-01-24 04:07:26 +00:00
|
|
|
</div>
|
2024-01-24 03:27:31 +00:00
|
|
|
</details>
|
2024-01-24 03:06:47 +00:00
|
|
|
) : null}
|
2024-01-24 02:27:12 +00:00
|
|
|
</div>
|
|
|
|
);
|
2024-01-24 03:06:47 +00:00
|
|
|
};
|
2024-01-24 02:27:12 +00:00
|
|
|
|
2024-01-27 19:30:15 +00:00
|
|
|
const OrgAstNodeList = (props: {
|
|
|
|
selectNode: Function;
|
|
|
|
parentUniqueId: string;
|
|
|
|
selectedNode: string;
|
|
|
|
node_list: any[];
|
|
|
|
}): React.JSX.Element[] => {
|
2024-01-24 04:07:26 +00:00
|
|
|
return props.node_list.map((node) => {
|
2024-01-27 22:01:09 +00:00
|
|
|
const uid =
|
|
|
|
props.parentUniqueId +
|
|
|
|
"_" +
|
|
|
|
node["ast-node"] +
|
|
|
|
"/" +
|
|
|
|
node["standard-properties"]["begin"] +
|
|
|
|
"/" +
|
|
|
|
node["standard-properties"]["end"] +
|
|
|
|
"#";
|
2024-01-27 19:30:15 +00:00
|
|
|
return (
|
|
|
|
<OrgAstNode
|
2024-01-27 20:01:37 +00:00
|
|
|
key={uid}
|
|
|
|
uid={uid}
|
2024-01-27 19:30:15 +00:00
|
|
|
selectNode={props.selectNode}
|
|
|
|
selectedNode={props.selectedNode}
|
|
|
|
node={node}
|
|
|
|
/>
|
|
|
|
);
|
2024-01-24 04:07:26 +00:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2024-01-27 20:27:23 +00:00
|
|
|
const OrgPropertiesList = (props: {
|
|
|
|
selectNode: Function;
|
|
|
|
parentUniqueId: string;
|
|
|
|
selectedNode: string;
|
|
|
|
properties: Object;
|
|
|
|
}): React.JSX.Element => {
|
2024-01-27 22:01:09 +00:00
|
|
|
const entries = Object.entries(props.properties)
|
|
|
|
.sort((a, b) => {
|
|
|
|
if (a[0] < b[0]) {
|
|
|
|
return -1;
|
|
|
|
} else if (a[0] > b[0]) {
|
|
|
|
return 1;
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
})
|
2024-01-27 22:07:17 +00:00
|
|
|
.filter((entry) => {
|
|
|
|
return !(is_object(entry[1]) && entry[1]["noop"] == "Noop");
|
|
|
|
})
|
2024-01-27 22:01:09 +00:00
|
|
|
.map(([key, value]) => {
|
|
|
|
return (
|
|
|
|
<Fragment key={key}>
|
|
|
|
<tr>
|
|
|
|
<th scope="row">{key}:</th>
|
2024-01-27 22:19:37 +00:00
|
|
|
<td>
|
|
|
|
<OrgPropertyValue
|
|
|
|
selectNode={props.selectNode}
|
|
|
|
parentUniqueId={props.parentUniqueId}
|
|
|
|
selectedNode={props.selectedNode}
|
|
|
|
value={value}
|
|
|
|
/>
|
|
|
|
</td>
|
2024-01-27 22:01:09 +00:00
|
|
|
</tr>
|
|
|
|
</Fragment>
|
|
|
|
);
|
|
|
|
});
|
2024-01-27 20:27:23 +00:00
|
|
|
return (
|
2024-01-27 21:38:34 +00:00
|
|
|
<table className={styles.OrgAstProperties}>
|
2024-01-27 22:01:09 +00:00
|
|
|
<tbody>{entries}</tbody>
|
2024-01-27 21:38:34 +00:00
|
|
|
</table>
|
2024-01-27 20:27:23 +00:00
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2024-01-27 22:19:37 +00:00
|
|
|
const OrgPropertyValue = (props: {
|
|
|
|
selectNode: Function;
|
|
|
|
parentUniqueId: string;
|
|
|
|
selectedNode: string;
|
|
|
|
value: any;
|
|
|
|
}): React.ReactNode => {
|
2024-01-27 23:12:51 +00:00
|
|
|
if (
|
|
|
|
props.value === null ||
|
|
|
|
is_primitive(props.value) ||
|
|
|
|
(is_array(props.value) && props.value.length === 0)
|
|
|
|
) {
|
|
|
|
return JSON.stringify(props.value);
|
|
|
|
} else if (is_list_of_ast_nodes(props.value)) {
|
|
|
|
return (
|
|
|
|
<div className={styles.OrgAstChildren}>
|
|
|
|
<OrgAstNodeList
|
|
|
|
selectNode={props.selectNode}
|
|
|
|
parentUniqueId={props.parentUniqueId}
|
|
|
|
selectedNode={props.selectedNode}
|
|
|
|
node_list={props.value}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
} else if (is_object_tree(props.value)) {
|
|
|
|
return (
|
|
|
|
<OrgObjectTree
|
|
|
|
selectNode={props.selectNode}
|
|
|
|
parentUniqueId={props.parentUniqueId}
|
|
|
|
selectedNode={props.selectedNode}
|
|
|
|
value={props.value}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
alert("Unhandled property value! " + JSON.stringify(props.value));
|
|
|
|
}
|
2024-01-27 22:19:37 +00:00
|
|
|
};
|
|
|
|
|
2024-01-27 23:12:51 +00:00
|
|
|
interface OrgObjectTreeProps {
|
|
|
|
selectNode: Function;
|
|
|
|
parentUniqueId: string;
|
|
|
|
selectedNode: string;
|
|
|
|
value: any;
|
|
|
|
}
|
|
|
|
|
|
|
|
function OrgObjectTree({
|
|
|
|
selectNode,
|
|
|
|
parentUniqueId,
|
|
|
|
selectedNode,
|
|
|
|
value,
|
|
|
|
}: OrgObjectTreeProps): React.ReactNode {
|
|
|
|
const entries = value["object-tree"].map((entry: any) => {
|
|
|
|
return (
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<th scope="row">Optional value:</th>
|
|
|
|
<td>
|
|
|
|
<OrgAstNodeList
|
|
|
|
selectNode={selectNode}
|
|
|
|
parentUniqueId={parentUniqueId}
|
|
|
|
selectedNode={selectedNode}
|
|
|
|
node_list={entry[0]}
|
|
|
|
/>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th scope="row">Value:</th>
|
|
|
|
<td>
|
|
|
|
<OrgAstNodeList
|
|
|
|
selectNode={selectNode}
|
|
|
|
parentUniqueId={parentUniqueId}
|
|
|
|
selectedNode={selectedNode}
|
|
|
|
node_list={entry[1]}
|
|
|
|
/>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
);
|
|
|
|
});
|
|
|
|
return <table className={styles.OrgAstObjectTree}>{entries}</table>;
|
|
|
|
}
|
|
|
|
|
2024-01-27 22:07:17 +00:00
|
|
|
function is_object(val: any): boolean {
|
2024-01-27 22:19:37 +00:00
|
|
|
return val instanceof Object && !(val instanceof Array);
|
2024-01-27 22:07:17 +00:00
|
|
|
}
|
|
|
|
|
2024-01-27 23:12:51 +00:00
|
|
|
function is_array(val: any): boolean {
|
|
|
|
return val instanceof Array;
|
|
|
|
}
|
|
|
|
|
|
|
|
function is_primitive(val: any): boolean | null {
|
|
|
|
if (val === null) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
return !(val instanceof Object || val instanceof Array);
|
|
|
|
}
|
|
|
|
|
|
|
|
function is_list_of_ast_nodes(val: any): boolean {
|
|
|
|
if (!is_array(val)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return val.every((entry: any) => {
|
|
|
|
return is_object(entry) && entry.hasOwnProperty("ast-node");
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function is_object_tree(val: any): boolean {
|
|
|
|
return is_object(val) && val.hasOwnProperty("object-tree");
|
|
|
|
}
|
|
|
|
|
2024-01-24 02:27:12 +00:00
|
|
|
export default OrgAst;
|