Skip to content

Commit b6efcbe

Browse files
committed
victory-selection-container
1 parent 6c00505 commit b6efcbe

File tree

4 files changed

+102
-3
lines changed

4 files changed

+102
-3
lines changed

demo/ts/components/selection-demo.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ import { VictoryGroup } from "victory-group";
66
import { VictoryBar } from "victory-bar";
77
import { VictoryLine } from "victory-line";
88
import { VictoryScatter } from "victory-scatter";
9-
import { VictorySelectionContainer } from "victory-selection-container";
9+
// import { VictorySelectionContainer } from "victory-selection-container";
10+
import { VictorySelectionContainerFn as VictorySelectionContainer } from "victory-selection-container";
1011
import { VictoryLegend } from "victory-legend";
1112
import { VictoryTooltip } from "victory-tooltip";
1213

packages/victory-core/src/victory-container/victory-container-fn.tsx

-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import React, { useRef } from "react";
22
import { uniqueId } from "lodash";
33
import { Portal } from "../victory-portal/portal";
44
import { PortalContext } from "../victory-portal/portal-context";
5-
import TimerContext from "../victory-util/timer-context";
65
import * as UserProps from "../victory-util/user-props";
76
import { OriginType } from "../victory-label/victory-label";
87
import { D3Scale } from "../types/prop-types";
@@ -182,4 +181,3 @@ export const VictoryContainerFn = (initialProps: VictoryContainerProps) => {
182181
};
183182

184183
VictoryContainerFn.role = "container";
185-
VictoryContainerFn.contextType = TimerContext;
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
export * from "./victory-selection-container";
2+
export { VictorySelectionContainerFn } from "./victory-selection-container-fn";
23
export * from "./selection-helpers";
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,99 @@
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

Comments
 (0)