| import { useSpring, animated } from '@react-spring/web' | |
| import { useMotionConfig } from '@nivo/core' | |
| import { useTheme } from '@nivo/theming' | |
| export const RectAnnotationOutline = ({ | |
| x, | |
| y, | |
| width, | |
| height, | |
| borderRadius = 6, | |
| }: { | |
| x: number | |
| y: number | |
| width: number | |
| height: number | |
| borderRadius?: number | |
| }) => { | |
| const theme = useTheme() | |
| const { animate, config: springConfig } = useMotionConfig() | |
| const animatedProps = useSpring({ | |
| x: x - width / 2, | |
| y: y - height / 2, | |
| width, | |
| height, | |
| config: springConfig, | |
| immediate: !animate, | |
| }) | |
| return ( | |
| <> | |
| {theme.annotations.outline.outlineWidth > 0 && ( | |
| <animated.rect | |
| x={animatedProps.x} | |
| y={animatedProps.y} | |
| rx={borderRadius} | |
| ry={borderRadius} | |
| width={animatedProps.width} | |
| height={animatedProps.height} | |
| style={{ | |
| ...theme.annotations.outline, | |
| fill: 'none', | |
| strokeWidth: | |
| theme.annotations.outline.strokeWidth + | |
| theme.annotations.outline.outlineWidth * 2, | |
| stroke: theme.annotations.outline.outlineColor, | |
| opacity: theme.annotations.outline.outlineOpacity, | |
| }} | |
| /> | |
| )} | |
| <animated.rect | |
| x={animatedProps.x} | |
| y={animatedProps.y} | |
| rx={borderRadius} | |
| ry={borderRadius} | |
| width={animatedProps.width} | |
| height={animatedProps.height} | |
| style={theme.annotations.outline} | |
| /> | |
| </> | |
| ) | |
| } | |