2022-10-30 11:54:14 +08:00
|
|
|
import React from "react";
|
|
|
|
import { cx } from '@emotion/css';
|
|
|
|
import { branchClass } from "./style";
|
|
|
|
import { AddButton } from "./AddButton";
|
|
|
|
import { Node } from './nodes';
|
|
|
|
|
|
|
|
export function Branch({
|
|
|
|
from = null,
|
|
|
|
entry = null,
|
|
|
|
branchIndex = null,
|
|
|
|
controller = null
|
2023-02-20 11:52:06 +08:00
|
|
|
}: {
|
|
|
|
from?: any;
|
|
|
|
entry?: any;
|
|
|
|
branchIndex?: number | null;
|
|
|
|
controller?: any
|
2022-10-30 11:54:14 +08:00
|
|
|
}) {
|
2023-02-20 11:52:06 +08:00
|
|
|
const list: any[] = [];
|
2022-10-30 11:54:14 +08:00
|
|
|
for (let node = entry; node; node = node.downstream) {
|
|
|
|
list.push(node);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className={cx(branchClass)}>
|
|
|
|
<div className="workflow-branch-lines" />
|
|
|
|
{controller}
|
|
|
|
<AddButton upstream={from} branchIndex={branchIndex} />
|
|
|
|
<div className="workflow-node-list">
|
|
|
|
{list.map(item => <Node data={item} key={item.id} />)}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|