UNPKG

@mui/x-charts

Version:

The community edition of the charts components (MUI X).

137 lines 4.87 kB
import _extends from "@babel/runtime/helpers/esm/extends"; import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose"; const _excluded = ["x", "y", "id", "classes", "color", "shape", "dataIndex", "highlightScope"]; import * as React from 'react'; import PropTypes from 'prop-types'; import composeClasses from '@mui/utils/composeClasses'; import generateUtilityClass from '@mui/utils/generateUtilityClass'; import { styled } from '@mui/material/styles'; import generateUtilityClasses from '@mui/utils/generateUtilityClasses'; import { symbol as d3Symbol, symbolsFill as d3SymbolsFill } from 'd3-shape'; import { getSymbol } from '../internals/utils'; import { InteractionContext } from '../context/InteractionProvider'; import { getIsFaded, getIsHighlighted, useInteractionItemProps } from '../hooks/useInteractionItemProps'; import { jsx as _jsx } from "react/jsx-runtime"; export function getMarkElementUtilityClass(slot) { return generateUtilityClass('MuiMarkElement', slot); } export const markElementClasses = generateUtilityClasses('MuiMarkElement', ['root', 'highlighted', 'faded']); const useUtilityClasses = ownerState => { const { classes, id, isFaded, isHighlighted } = ownerState; const slots = { root: ['root', `series-${id}`, isHighlighted && 'highlighted', isFaded && 'faded'] }; return composeClasses(slots, getMarkElementUtilityClass, classes); }; const MarkElementPath = styled('path', { name: 'MuiMarkElement', slot: 'Root', overridesResolver: (_, styles) => styles.root })(({ ownerState, theme }) => ({ transform: `translate(${ownerState.x}px, ${ownerState.y}px)`, transformOrigin: `${ownerState.x}px ${ownerState.y}px`, fill: (theme.vars || theme).palette.background.paper, stroke: ownerState.color, strokeWidth: 2 })); MarkElementPath.propTypes = { // ----------------------------- Warning -------------------------------- // | These PropTypes are generated from the TypeScript type definitions | // | To update them edit the TypeScript types and run "yarn proptypes" | // ---------------------------------------------------------------------- as: PropTypes.elementType, ownerState: PropTypes.shape({ classes: PropTypes.object, color: PropTypes.string.isRequired, id: PropTypes.string.isRequired, isFaded: PropTypes.bool.isRequired, isHighlighted: PropTypes.bool.isRequired, x: PropTypes.number.isRequired, y: PropTypes.number.isRequired }).isRequired, sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]) }; /** * Demos: * * - [Lines](https://mui.com/x/react-charts/lines/) * - [Line demonstration](https://mui.com/x/react-charts/line-demo/) * * API: * * - [MarkElement API](https://mui.com/x/api/charts/mark-element/) */ function MarkElement(props) { var _axis$x; const { x, y, id, classes: innerClasses, color, shape, dataIndex, highlightScope } = props, other = _objectWithoutPropertiesLoose(props, _excluded); const getInteractionItemProps = useInteractionItemProps(highlightScope); const { item, axis } = React.useContext(InteractionContext); const isHighlighted = ((_axis$x = axis.x) == null ? void 0 : _axis$x.index) === dataIndex || getIsHighlighted(item, { type: 'line', seriesId: id }, highlightScope); const isFaded = !isHighlighted && getIsFaded(item, { type: 'line', seriesId: id }, highlightScope); const ownerState = { id, classes: innerClasses, isHighlighted, isFaded, color, x, y }; const classes = useUtilityClasses(ownerState); return /*#__PURE__*/_jsx(MarkElementPath, _extends({}, other, { ownerState: ownerState, className: classes.root, d: d3Symbol(d3SymbolsFill[getSymbol(shape)])() }, getInteractionItemProps({ type: 'line', seriesId: id, dataIndex }))); } process.env.NODE_ENV !== "production" ? MarkElement.propTypes = { // ----------------------------- Warning -------------------------------- // | These PropTypes are generated from the TypeScript type definitions | // | To update them edit the TypeScript types and run "yarn proptypes" | // ---------------------------------------------------------------------- classes: PropTypes.object, /** * The index to the element in the series' data array. */ dataIndex: PropTypes.number.isRequired, highlightScope: PropTypes.shape({ faded: PropTypes.oneOf(['global', 'none', 'series']), highlighted: PropTypes.oneOf(['item', 'none', 'series']) }), /** * The shape of the marker. */ shape: PropTypes.oneOf(['circle', 'cross', 'diamond', 'square', 'star', 'triangle', 'wye']).isRequired } : void 0; export { MarkElement };