Merge branch 'dev' into fix/deep-clone-data
This commit is contained in:
@@ -109,9 +109,20 @@ function VisualProgrammingUI() {
|
|||||||
|
|
||||||
// currently outputs the prepared program to the console
|
// currently outputs the prepared program to the console
|
||||||
function runProgram() {
|
function runProgram() {
|
||||||
const program = graphReducer();
|
const phases = graphReducer();
|
||||||
console.log(program);
|
const program = {phases}
|
||||||
console.log(JSON.stringify(program, null, 2));
|
console.log(JSON.stringify(program, null, 2));
|
||||||
|
fetch(
|
||||||
|
"http://localhost:8000/program",
|
||||||
|
{
|
||||||
|
method: "POST",
|
||||||
|
headers: {"Content-Type": "application/json"},
|
||||||
|
body: JSON.stringify(program),
|
||||||
|
}
|
||||||
|
).then((res) => {
|
||||||
|
if (!res.ok) throw new Error("Failed communicating with the backend.")
|
||||||
|
console.log("Successfully sent the program to the backend.");
|
||||||
|
}).catch(() => console.log("Failed to send program to the backend."));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -83,11 +83,25 @@ export default function TriggerNode(props: NodeProps<TriggerNode>) {
|
|||||||
* @param _nodes: all the nodes in the graph.
|
* @param _nodes: all the nodes in the graph.
|
||||||
* @returns A simplified object containing the node label and its list of triggers.
|
* @returns A simplified object containing the node label and its list of triggers.
|
||||||
*/
|
*/
|
||||||
export function TriggerReduce(node: Node, _nodes: Node[]) {
|
export function TriggerReduce(node: Node, nodes: Node[]) {
|
||||||
const data = node.data as TriggerNodeData;
|
// Replace this for nodes functionality
|
||||||
|
if (nodes.length <= -1) {
|
||||||
|
console.warn("Impossible nodes length in TriggerReduce")
|
||||||
|
}
|
||||||
|
const data = node.data;
|
||||||
|
switch (data.triggerType) {
|
||||||
|
case "keywords":
|
||||||
return {
|
return {
|
||||||
|
id: node.id,
|
||||||
|
type: "keywords",
|
||||||
label: data.label,
|
label: data.label,
|
||||||
list: data.triggers,
|
keywords: data.triggers,
|
||||||
|
};
|
||||||
|
default:
|
||||||
|
return {
|
||||||
|
...data,
|
||||||
|
id: node.id,
|
||||||
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -121,7 +135,6 @@ export type KeywordTriggerNodeProps = {
|
|||||||
/** Union type for all possible Trigger node configurations. */
|
/** Union type for all possible Trigger node configurations. */
|
||||||
export type TriggerNodeProps = EmotionTriggerNodeProps | KeywordTriggerNodeProps;
|
export type TriggerNodeProps = EmotionTriggerNodeProps | KeywordTriggerNodeProps;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Renders an input element that allows users to add new keyword triggers.
|
* Renders an input element that allows users to add new keyword triggers.
|
||||||
*
|
*
|
||||||
|
|||||||
Reference in New Issue
Block a user