|
| 1 | +import React from "react"; |
| 2 | +import { |
| 3 | + Datum, |
| 4 | + Rect, |
| 5 | + VictoryContainerFn, |
| 6 | + VictoryContainerProps, |
| 7 | +} from "victory-core"; |
| 8 | +import { SelectionHelpers } from "./selection-helpers"; |
| 9 | + |
| 10 | +export interface VictorySelectionContainerProps extends VictoryContainerProps { |
| 11 | + activateSelectedData?: boolean; |
| 12 | + allowSelection?: boolean; |
| 13 | + disable?: boolean; |
| 14 | + onSelection?: ( |
| 15 | + points: { |
| 16 | + childName?: string | string[]; |
| 17 | + eventKey?: string | number; |
| 18 | + data?: Datum[]; |
| 19 | + }[], |
| 20 | + bounds: { |
| 21 | + x: number | Date; |
| 22 | + y: number | Date; |
| 23 | + }[], |
| 24 | + props: VictorySelectionContainerProps, |
| 25 | + ) => void; |
| 26 | + horizontal?: boolean; |
| 27 | + onSelectionCleared?: (props: VictorySelectionContainerProps) => void; |
| 28 | + selectionBlacklist?: string[]; |
| 29 | + selectionComponent?: React.ReactElement; |
| 30 | + selectionDimension?: "x" | "y"; |
| 31 | + selectionStyle?: React.CSSProperties; |
| 32 | +} |
| 33 | + |
| 34 | +const defaultProps = { |
| 35 | + activateSelectedData: true, |
| 36 | + allowSelection: true, |
| 37 | + selectionComponent: <Rect />, |
| 38 | + selectionStyle: { |
| 39 | + stroke: "transparent", |
| 40 | + fill: "black", |
| 41 | + fillOpacity: 0.1, |
| 42 | + }, |
| 43 | +}; |
| 44 | + |
| 45 | +export const VictorySelectionContainerFn = ( |
| 46 | + initialProps: VictorySelectionContainerProps, |
| 47 | +) => { |
| 48 | + const propsWithDefaults = { ...defaultProps, ...initialProps }; |
| 49 | + |
| 50 | + const { x1, x2, y1, y2, selectionStyle, selectionComponent, children, name } = |
| 51 | + propsWithDefaults; |
| 52 | + const width = Math.abs(x2 - x1) || 1; |
| 53 | + const height = Math.abs(y2 - y1) || 1; |
| 54 | + const x = Math.min(x1, x2); |
| 55 | + const y = Math.min(y1, y2); |
| 56 | + |
| 57 | + const shouldRenderRect = y1 && y2 && x1 && x2; |
| 58 | + |
| 59 | + return ( |
| 60 | + <VictoryContainerFn {...propsWithDefaults}> |
| 61 | + {children} |
| 62 | + |
| 63 | + {shouldRenderRect && |
| 64 | + React.cloneElement(selectionComponent, { |
| 65 | + key: `${name}-selection`, |
| 66 | + x, |
| 67 | + y, |
| 68 | + width, |
| 69 | + height, |
| 70 | + style: selectionStyle, |
| 71 | + })} |
| 72 | + </VictoryContainerFn> |
| 73 | + ); |
| 74 | +}; |
| 75 | + |
| 76 | +VictorySelectionContainerFn.role = "container"; |
| 77 | + |
| 78 | +VictorySelectionContainerFn.defaultEvents = ( |
| 79 | + props: VictorySelectionContainerProps, |
| 80 | +) => { |
| 81 | + const createEventHandler = |
| 82 | + (handler: (event: any, targetProps: any) => any) => |
| 83 | + (event: any, targetProps: any) => |
| 84 | + props.disable ? {} : handler(event, { ...defaultProps, ...targetProps }); |
| 85 | + |
| 86 | + return [ |
| 87 | + { |
| 88 | + target: "parent", |
| 89 | + eventHandlers: { |
| 90 | + onMouseDown: createEventHandler(SelectionHelpers.onMouseDown), |
| 91 | + onTouchStart: createEventHandler(SelectionHelpers.onMouseDown), |
| 92 | + onMouseMove: createEventHandler(SelectionHelpers.onMouseMove), |
| 93 | + onTouchMove: createEventHandler(SelectionHelpers.onMouseMove), |
| 94 | + onMouseUp: createEventHandler(SelectionHelpers.onMouseUp), |
| 95 | + onTouchEnd: createEventHandler(SelectionHelpers.onMouseUp), |
| 96 | + }, |
| 97 | + }, |
| 98 | + ]; |
| 99 | +}; |
0 commit comments