UNPKG

@mui/x-charts

Version:

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

141 lines 4.76 kB
import * as React from 'react'; import PropTypes from 'prop-types'; import { SeriesContext } from '../context/SeriesContextProvider'; import { DrawingContext } from '../context/DrawingProvider'; import { PieArcPlot } from './PieArcPlot'; import { PieArcLabelPlot } from './PieArcLabelPlot'; import { getPercentageValue } from '../internals/utils'; import { jsx as _jsx } from "react/jsx-runtime"; import { jsxs as _jsxs } from "react/jsx-runtime"; /** * Demos: * * - [Pie](https://mui.com/x/react-charts/pie/) * - [Pie demonstration](https://mui.com/x/react-charts/pie-demo/) * * API: * * - [PiePlot API](https://mui.com/x/api/charts/pie-plot/) */ function PiePlot(props) { const { skipAnimation, slots, slotProps, onClick } = props; const seriesData = React.useContext(SeriesContext).pie; const { left, top, width, height } = React.useContext(DrawingContext); if (seriesData === undefined) { return null; } const availableRadius = Math.min(width, height) / 2; const { series, seriesOrder } = seriesData; return /*#__PURE__*/_jsxs("g", { children: [seriesOrder.map(seriesId => { const { innerRadius: innerRadiusParam, outerRadius: outerRadiusParam, cornerRadius, paddingAngle, data, cx: cxParam, cy: cyParam, highlighted, faded, highlightScope } = series[seriesId]; const outerRadius = getPercentageValue(outerRadiusParam != null ? outerRadiusParam : availableRadius, availableRadius); const innerRadius = getPercentageValue(innerRadiusParam != null ? innerRadiusParam : 0, availableRadius); const cx = getPercentageValue(cxParam != null ? cxParam : '50%', width); const cy = getPercentageValue(cyParam != null ? cyParam : '50%', height); return /*#__PURE__*/_jsx("g", { transform: `translate(${left + cx}, ${top + cy})`, children: /*#__PURE__*/_jsx(PieArcPlot, { innerRadius: innerRadius, outerRadius: outerRadius, cornerRadius: cornerRadius, paddingAngle: paddingAngle, id: seriesId, data: data, skipAnimation: skipAnimation, highlightScope: highlightScope, highlighted: highlighted, faded: faded, onClick: onClick, slots: slots, slotProps: slotProps }) }, seriesId); }), seriesOrder.map(seriesId => { const { innerRadius: innerRadiusParam, outerRadius: outerRadiusParam, cornerRadius, paddingAngle, arcLabel, arcLabelMinAngle, data, cx: cxParam, cy: cyParam, highlightScope } = series[seriesId]; const outerRadius = getPercentageValue(outerRadiusParam != null ? outerRadiusParam : availableRadius, availableRadius); const innerRadius = getPercentageValue(innerRadiusParam != null ? innerRadiusParam : 0, availableRadius); const cx = getPercentageValue(cxParam != null ? cxParam : '50%', width); const cy = getPercentageValue(cyParam != null ? cyParam : '50%', height); return /*#__PURE__*/_jsx("g", { transform: `translate(${left + cx}, ${top + cy})`, children: /*#__PURE__*/_jsx(PieArcLabelPlot, { innerRadius: innerRadius, outerRadius: outerRadius != null ? outerRadius : availableRadius, cornerRadius: cornerRadius, paddingAngle: paddingAngle, id: seriesId, data: data, skipAnimation: skipAnimation, arcLabel: arcLabel, arcLabelMinAngle: arcLabelMinAngle, highlightScope: highlightScope }) }, seriesId); })] }); } process.env.NODE_ENV !== "production" ? PiePlot.propTypes = { // ----------------------------- Warning -------------------------------- // | These PropTypes are generated from the TypeScript type definitions | // | To update them edit the TypeScript types and run "yarn proptypes" | // ---------------------------------------------------------------------- /** * Callback fired when a pie item is clicked. * @param {React.MouseEvent<SVGPathElement, MouseEvent>} event The event source of the callback. * @param {PieItemIdentifier} pieItemIdentifier The pie item identifier. * @param {DefaultizedPieValueType} item The pie item. */ onClick: PropTypes.func, /** * If `true`, animations are skiped. * @default false */ skipAnimation: PropTypes.bool, /** * The props used for each component slot. * @default {} */ slotProps: PropTypes.object, /** * Overridable component slots. * @default {} */ slots: PropTypes.object } : void 0; export { PiePlot };