import type { Graph } from '@antv/g6'; import React, { ForwardRefExoticComponent, PropsWithChildren, PropsWithoutRef, RefAttributes, forwardRef, useMemo, } from 'react'; import { BaseGraph } from '../../core/base-graph'; import { COMMON_OPTIONS } from '../../core/constants'; import { mergeOptions } from '../../core/utils/options'; import { DEFAULT_OPTIONS, getFlowGraphOptions } from './options'; import type { FlowGraphOptions } from './types'; export const FlowGraph: ForwardRefExoticComponent< PropsWithoutRef> & RefAttributes > = forwardRef>(({ children, ...props }, ref) => { const options = useMemo(() => { const { direction = 'horizontal', labelField, ...restProps } = props; return mergeOptions(COMMON_OPTIONS, DEFAULT_OPTIONS, getFlowGraphOptions({ direction, labelField }), restProps); }, [props]); return ( {children} ); }); export type { FlowGraphOptions };