@mui/x-charts
Version:
The community edition of the charts components (MUI X).
104 lines • 3.76 kB
JavaScript
import _extends from "@babel/runtime/helpers/esm/extends";
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
const _excluded = ["slots", "slotProps"];
import * as React from 'react';
import PropTypes from 'prop-types';
import { SeriesContext } from '../context/SeriesContextProvider';
import { CartesianContext } from '../context/CartesianContextProvider';
import { LineHighlightElement } from './LineHighlightElement';
import { getValueToPositionMapper } from '../hooks/useScale';
import { InteractionContext } from '../context/InteractionProvider';
import { DEFAULT_X_AXIS_KEY } from '../constants';
import { jsx as _jsx } from "react/jsx-runtime";
/**
* Demos:
*
* - [Lines](https://mui.com/x/react-charts/lines/)
* - [Line demonstration](https://mui.com/x/react-charts/line-demo/)
*
* API:
*
* - [LineHighlightPlot API](https://mui.com/x/api/charts/line-highlight-plot/)
*/
function LineHighlightPlot(props) {
var _axis$x, _slots$lineHighlight;
const {
slots,
slotProps
} = props,
other = _objectWithoutPropertiesLoose(props, _excluded);
const seriesData = React.useContext(SeriesContext).line;
const axisData = React.useContext(CartesianContext);
const {
axis
} = React.useContext(InteractionContext);
const highlightedIndex = (_axis$x = axis.x) == null ? void 0 : _axis$x.index;
if (highlightedIndex === undefined) {
return null;
}
if (seriesData === undefined) {
return null;
}
const {
series,
stackingGroups
} = seriesData;
const {
xAxis,
yAxis,
xAxisIds,
yAxisIds
} = axisData;
const defaultXAxisId = xAxisIds[0];
const defaultYAxisId = yAxisIds[0];
const Element = (_slots$lineHighlight = slots == null ? void 0 : slots.lineHighlight) != null ? _slots$lineHighlight : LineHighlightElement;
return /*#__PURE__*/_jsx("g", _extends({}, other, {
children: stackingGroups.flatMap(({
ids: groupIds
}) => {
return groupIds.flatMap(seriesId => {
const {
xAxisKey = defaultXAxisId,
yAxisKey = defaultYAxisId,
stackedData,
data,
disableHighlight
} = series[seriesId];
if (disableHighlight || data[highlightedIndex] == null) {
return null;
}
const xScale = getValueToPositionMapper(xAxis[xAxisKey].scale);
const yScale = yAxis[yAxisKey].scale;
const xData = xAxis[xAxisKey].data;
if (xData === undefined) {
throw new Error(`MUI-X-Charts: ${xAxisKey === DEFAULT_X_AXIS_KEY ? 'The first `xAxis`' : `The x-axis with id "${xAxisKey}"`} should have data property to be able to display a line plot.`);
}
const x = xScale(xData[highlightedIndex]);
const y = yScale(stackedData[highlightedIndex][1]); // This should not be undefined since y should not be a band scale
return /*#__PURE__*/_jsx(Element, _extends({
id: seriesId,
color: series[seriesId].color,
x: x,
y: y
}, slotProps == null ? void 0 : slotProps.lineHighlight), `${seriesId}`);
});
})
}));
}
process.env.NODE_ENV !== "production" ? LineHighlightPlot.propTypes = {
// ----------------------------- Warning --------------------------------
// | These PropTypes are generated from the TypeScript type definitions |
// | To update them edit the TypeScript types and run "yarn proptypes" |
// ----------------------------------------------------------------------
/**
* The props used for each component slot.
* @default {}
*/
slotProps: PropTypes.object,
/**
* Overridable component slots.
* @default {}
*/
slots: PropTypes.object
} : void 0;
export { LineHighlightPlot };