@mui/x-charts
Version:
The community edition of the charts components (MUI X).
168 lines (167 loc) • 6.01 kB
JavaScript
import * as React from 'react';
import PropTypes from 'prop-types';
import { Delaunay } from 'd3-delaunay';
import useEnhancedEffect from '@mui/utils/useEnhancedEffect';
import { InteractionContext } from '../context/InteractionProvider';
import { CartesianContext } from '../context/CartesianContextProvider';
import { SVGContext, DrawingContext } from '../context/DrawingProvider';
import { SeriesContext } from '../context/SeriesContextProvider';
import { getValueToPositionMapper } from '../hooks/useScale';
import { getSVGPoint } from '../internals/utils';
import { jsx as _jsx } from "react/jsx-runtime";
function ChartsVoronoiHandler(props) {
var _React$useContext$sca;
const {
voronoiMaxRadius
} = props;
const svgRef = React.useContext(SVGContext);
const {
width,
height,
top,
left
} = React.useContext(DrawingContext);
const {
xAxis,
yAxis,
xAxisIds,
yAxisIds
} = React.useContext(CartesianContext);
const {
dispatch
} = React.useContext(InteractionContext);
const {
series,
seriesOrder
} = (_React$useContext$sca = React.useContext(SeriesContext).scatter) != null ? _React$useContext$sca : {};
const voronoiRef = React.useRef({});
const defaultXAxisId = xAxisIds[0];
const defaultYAxisId = yAxisIds[0];
useEnhancedEffect(() => {
dispatch({
type: 'updateVoronoiUsage',
useVoronoiInteraction: true
});
return () => {
dispatch({
type: 'updateVoronoiUsage',
useVoronoiInteraction: false
});
};
}, [dispatch]);
useEnhancedEffect(() => {
if (seriesOrder === undefined || series === undefined) {
// If there is no scatter chart series
return;
}
voronoiRef.current = {};
let points = [];
seriesOrder.forEach(seriesId => {
const {
data,
xAxisKey,
yAxisKey
} = series[seriesId];
const xScale = xAxis[xAxisKey != null ? xAxisKey : defaultXAxisId].scale;
const yScale = yAxis[yAxisKey != null ? yAxisKey : defaultYAxisId].scale;
const getXPosition = getValueToPositionMapper(xScale);
const getYPosition = getValueToPositionMapper(yScale);
const seriesPoints = data.flatMap(({
x,
y
}) => [getXPosition(x), getYPosition(y)]);
voronoiRef.current[seriesId] = {
startIndex: points.length,
endIndex: points.length + seriesPoints.length
};
points = points.concat(seriesPoints);
});
voronoiRef.current.delauney = new Delaunay(points);
}, [defaultXAxisId, defaultYAxisId, series, seriesOrder, xAxis, yAxis]);
React.useEffect(() => {
const element = svgRef.current;
if (element === null) {
return undefined;
}
const handleMouseOut = () => {
dispatch({
type: 'exitChart'
});
};
// TODO: A perf optimisation of voronoi could be to use the last point as the intial point for the next search.
const handleMouseMove = event => {
var _voronoiRef$current$d;
// Get mouse coordinate in global SVG space
const svgPoint = getSVGPoint(svgRef.current, event);
const outsideX = svgPoint.x < left || svgPoint.x > left + width;
const outsideY = svgPoint.y < top || svgPoint.y > top + height;
if (outsideX || outsideY) {
dispatch({
type: 'exitChart'
});
return;
}
if (!voronoiRef.current.delauney) {
return;
}
const closestPointIndex = (_voronoiRef$current$d = voronoiRef.current.delauney) == null ? void 0 : _voronoiRef$current$d.find(svgPoint.x, svgPoint.y);
if (closestPointIndex !== undefined) {
const seriesId = Object.keys(voronoiRef.current).find(id => {
if (id === 'delauney') {
return false;
}
return 2 * closestPointIndex >= voronoiRef.current[id].startIndex && 2 * closestPointIndex < voronoiRef.current[id].endIndex;
});
if (seriesId === undefined) {
return;
}
const dataIndex = (2 * closestPointIndex - voronoiRef.current[seriesId].startIndex) / 2;
if (voronoiMaxRadius !== undefined) {
const pointX = voronoiRef.current.delauney.points[2 * closestPointIndex];
const pointY = voronoiRef.current.delauney.points[2 * closestPointIndex + 1];
const dist2 = (pointX - svgPoint.x) ** 2 + (pointY - svgPoint.y) ** 2;
if (dist2 > voronoiMaxRadius ** 2) {
// The closest point is too far to be considered.
dispatch({
type: 'leaveItem',
data: {
type: 'scatter',
seriesId,
dataIndex
}
});
return;
}
}
dispatch({
type: 'enterItem',
data: {
type: 'scatter',
seriesId,
dataIndex
}
});
}
};
element.addEventListener('mouseout', handleMouseOut);
element.addEventListener('mousemove', handleMouseMove);
return () => {
element.removeEventListener('mouseout', handleMouseOut);
element.removeEventListener('mousemove', handleMouseMove);
};
}, [svgRef, dispatch, left, width, top, height, yAxis, xAxis, voronoiMaxRadius]);
return /*#__PURE__*/_jsx("g", {}); // Workaround to fix docs scripts
}
process.env.NODE_ENV !== "production" ? ChartsVoronoiHandler.propTypes = {
// ----------------------------- Warning --------------------------------
// | These PropTypes are generated from the TypeScript type definitions |
// | To update them edit the TypeScript types and run "yarn proptypes" |
// ----------------------------------------------------------------------
/**
* Defines the maximal distance between a scatter point and the pointer that triggers the interaction.
* If `undefined`, the radius is assumed to be infinite.
* @default undefined
*/
voronoiMaxRadius: PropTypes.number
} : void 0;
export { ChartsVoronoiHandler };