|
|
import { useEffect, useRef } from 'react'; |
|
|
import { useAppDispatch } from './hooks'; |
|
|
import { |
|
|
addCartesianGraphicalItem, |
|
|
addPolarGraphicalItem, |
|
|
CartesianGraphicalItemSettings, |
|
|
PolarGraphicalItemSettings, |
|
|
removeCartesianGraphicalItem, |
|
|
removePolarGraphicalItem, |
|
|
replaceCartesianGraphicalItem, |
|
|
} from './graphicalItemsSlice'; |
|
|
import { getNormalizedStackId, StackId } from '../util/ChartUtils'; |
|
|
|
|
|
type SetCartesianGraphicalItemProps = Omit<CartesianGraphicalItemSettings, 'stackId'> & { |
|
|
stackId: StackId | undefined; |
|
|
}; |
|
|
|
|
|
export function SetCartesianGraphicalItem(props: SetCartesianGraphicalItemProps): null { |
|
|
const dispatch = useAppDispatch(); |
|
|
const prevPropsRef = useRef<CartesianGraphicalItemSettings | null>(null); |
|
|
|
|
|
useEffect(() => { |
|
|
const settings: CartesianGraphicalItemSettings = { |
|
|
...props, |
|
|
stackId: getNormalizedStackId(props.stackId), |
|
|
}; |
|
|
|
|
|
if (prevPropsRef.current === null) { |
|
|
dispatch(addCartesianGraphicalItem(settings)); |
|
|
} else if (prevPropsRef.current !== settings) { |
|
|
dispatch(replaceCartesianGraphicalItem({ prev: prevPropsRef.current, next: settings })); |
|
|
} |
|
|
prevPropsRef.current = settings; |
|
|
}, [dispatch, props]); |
|
|
|
|
|
useEffect(() => { |
|
|
return () => { |
|
|
if (prevPropsRef.current) { |
|
|
dispatch(removeCartesianGraphicalItem(prevPropsRef.current)); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
prevPropsRef.current = null; |
|
|
} |
|
|
}; |
|
|
}, [dispatch]); |
|
|
|
|
|
return null; |
|
|
} |
|
|
|
|
|
export function SetPolarGraphicalItem(props: PolarGraphicalItemSettings): null { |
|
|
const dispatch = useAppDispatch(); |
|
|
useEffect(() => { |
|
|
dispatch(addPolarGraphicalItem(props)); |
|
|
return () => { |
|
|
dispatch(removePolarGraphicalItem(props)); |
|
|
}; |
|
|
}, [dispatch, props]); |
|
|
return null; |
|
|
} |
|
|
|