mirror of
https://git.mirrors.martin98.com/https://github.com/infiniflow/ragflow.git
synced 2025-06-01 14:03:59 +08:00

### What problem does this PR solve? feat: Add bing and google operator #918 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
86 lines
2.4 KiB
TypeScript
86 lines
2.4 KiB
TypeScript
import { useTranslate } from '@/hooks/common-hooks';
|
|
import { Flex } from 'antd';
|
|
import classNames from 'classnames';
|
|
import pick from 'lodash/pick';
|
|
import { Handle, NodeProps, Position } from 'reactflow';
|
|
import { Operator, operatorMap } from '../../constant';
|
|
import { NodeData } from '../../interface';
|
|
import OperatorIcon from '../../operator-icon';
|
|
import NodeDropdown from './dropdown';
|
|
import styles from './index.less';
|
|
import NodePopover from './popover';
|
|
|
|
const ZeroGapOperators = [
|
|
Operator.RewriteQuestion,
|
|
Operator.KeywordExtract,
|
|
Operator.ArXiv,
|
|
];
|
|
|
|
export function RagNode({
|
|
id,
|
|
data,
|
|
isConnectable = true,
|
|
selected,
|
|
}: NodeProps<NodeData>) {
|
|
const style = operatorMap[data.label as Operator];
|
|
const { t } = useTranslate('flow');
|
|
|
|
return (
|
|
<NodePopover nodeId={id}>
|
|
<section
|
|
className={classNames(styles.ragNode, {
|
|
[styles.selectedNode]: selected,
|
|
})}
|
|
style={{
|
|
...pick(style, ['backgroundColor', 'color']),
|
|
}}
|
|
>
|
|
<Handle
|
|
id="c"
|
|
type="source"
|
|
position={Position.Left}
|
|
isConnectable={isConnectable}
|
|
className={styles.handle}
|
|
></Handle>
|
|
<Handle type="source" position={Position.Top} id="d" isConnectable />
|
|
<Handle
|
|
type="source"
|
|
position={Position.Right}
|
|
isConnectable={isConnectable}
|
|
className={styles.handle}
|
|
id="b"
|
|
></Handle>
|
|
<Handle type="source" position={Position.Bottom} id="a" isConnectable />
|
|
<Flex
|
|
vertical
|
|
align="center"
|
|
justify={'space-around'}
|
|
// gap={ZeroGapOperators.some((x) => x === data.label) ? 0 : 6}
|
|
>
|
|
<Flex flex={1} justify="center" align="center">
|
|
<label htmlFor=""> </label>
|
|
</Flex>
|
|
|
|
<Flex flex={1}>
|
|
<OperatorIcon
|
|
name={data.label as Operator}
|
|
fontSize={style?.iconFontSize ?? 16}
|
|
width={style?.iconWidth}
|
|
></OperatorIcon>
|
|
</Flex>
|
|
<Flex flex={1}>
|
|
<NodeDropdown
|
|
id={id}
|
|
iconFontColor={style?.moreIconColor}
|
|
></NodeDropdown>
|
|
</Flex>
|
|
</Flex>
|
|
|
|
<section className={styles.bottomBox}>
|
|
<div className={styles.nodeName}>{data.name}</div>
|
|
</section>
|
|
</section>
|
|
</NodePopover>
|
|
);
|
|
}
|