mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-23 06:46:40 +08:00
### What problem does this PR solve? Feat: Add child nodes and their connecting lines by clicking #3221 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
63 lines
2.0 KiB
TypeScript
63 lines
2.0 KiB
TypeScript
import LLMLabel from '@/components/llm-select/llm-label';
|
|
import { ICategorizeNode } from '@/interfaces/database/flow';
|
|
import { NodeProps, Position } from '@xyflow/react';
|
|
import { get } from 'lodash';
|
|
import { memo } from 'react';
|
|
import { NodeHandleId } from '../../constant';
|
|
import { CommonHandle } from './handle';
|
|
import { RightHandleStyle } from './handle-icon';
|
|
import NodeHeader from './node-header';
|
|
import { NodeWrapper } from './node-wrapper';
|
|
import { ToolBar } from './toolbar';
|
|
import { useBuildCategorizeHandlePositions } from './use-build-categorize-handle-positions';
|
|
|
|
export function InnerCategorizeNode({
|
|
id,
|
|
data,
|
|
selected,
|
|
}: NodeProps<ICategorizeNode>) {
|
|
const { positions } = useBuildCategorizeHandlePositions({ data, id });
|
|
return (
|
|
<ToolBar selected={selected} id={id} label={data.label}>
|
|
<NodeWrapper>
|
|
<CommonHandle
|
|
type="target"
|
|
position={Position.Left}
|
|
isConnectable
|
|
id={NodeHandleId.End}
|
|
nodeId={id}
|
|
></CommonHandle>
|
|
|
|
<NodeHeader id={id} name={data.name} label={data.label}></NodeHeader>
|
|
|
|
<section className="flex flex-col gap-2">
|
|
<div className={'bg-background-card rounded-sm px-1'}>
|
|
<LLMLabel value={get(data, 'form.llm_id')}></LLMLabel>
|
|
</div>
|
|
{positions.map((position, idx) => {
|
|
return (
|
|
<div key={idx}>
|
|
<div className={'bg-background-card rounded-sm p-1'}>
|
|
{position.text}
|
|
</div>
|
|
<CommonHandle
|
|
key={position.text}
|
|
id={position.text}
|
|
type="source"
|
|
position={Position.Right}
|
|
isConnectable
|
|
style={{ ...RightHandleStyle, top: position.top }}
|
|
nodeId={id}
|
|
isConnectableEnd={false}
|
|
></CommonHandle>
|
|
</div>
|
|
);
|
|
})}
|
|
</section>
|
|
</NodeWrapper>
|
|
</ToolBar>
|
|
);
|
|
}
|
|
|
|
export const CategorizeNode = memo(InnerCategorizeNode);
|