UNPKG

@mui/x-charts

Version:

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

134 lines 5.51 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) { var skipAnimation = props.skipAnimation, slots = props.slots, slotProps = props.slotProps, onClick = props.onClick; var seriesData = React.useContext(SeriesContext).pie; var _React$useContext = React.useContext(DrawingContext), left = _React$useContext.left, top = _React$useContext.top, width = _React$useContext.width, height = _React$useContext.height; if (seriesData === undefined) { return null; } var availableRadius = Math.min(width, height) / 2; var series = seriesData.series, seriesOrder = seriesData.seriesOrder; return /*#__PURE__*/_jsxs("g", { children: [seriesOrder.map(function (seriesId) { var _series$seriesId = series[seriesId], innerRadiusParam = _series$seriesId.innerRadius, outerRadiusParam = _series$seriesId.outerRadius, cornerRadius = _series$seriesId.cornerRadius, paddingAngle = _series$seriesId.paddingAngle, data = _series$seriesId.data, cxParam = _series$seriesId.cx, cyParam = _series$seriesId.cy, highlighted = _series$seriesId.highlighted, faded = _series$seriesId.faded, highlightScope = _series$seriesId.highlightScope; var outerRadius = getPercentageValue(outerRadiusParam != null ? outerRadiusParam : availableRadius, availableRadius); var innerRadius = getPercentageValue(innerRadiusParam != null ? innerRadiusParam : 0, availableRadius); var cx = getPercentageValue(cxParam != null ? cxParam : '50%', width); var cy = getPercentageValue(cyParam != null ? cyParam : '50%', height); return /*#__PURE__*/_jsx("g", { transform: "translate(".concat(left + cx, ", ").concat(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(function (seriesId) { var _series$seriesId2 = series[seriesId], innerRadiusParam = _series$seriesId2.innerRadius, outerRadiusParam = _series$seriesId2.outerRadius, cornerRadius = _series$seriesId2.cornerRadius, paddingAngle = _series$seriesId2.paddingAngle, arcLabel = _series$seriesId2.arcLabel, arcLabelMinAngle = _series$seriesId2.arcLabelMinAngle, data = _series$seriesId2.data, cxParam = _series$seriesId2.cx, cyParam = _series$seriesId2.cy, highlightScope = _series$seriesId2.highlightScope; var outerRadius = getPercentageValue(outerRadiusParam != null ? outerRadiusParam : availableRadius, availableRadius); var innerRadius = getPercentageValue(innerRadiusParam != null ? innerRadiusParam : 0, availableRadius); var cx = getPercentageValue(cxParam != null ? cxParam : '50%', width); var cy = getPercentageValue(cyParam != null ? cyParam : '50%', height); return /*#__PURE__*/_jsx("g", { transform: "translate(".concat(left + cx, ", ").concat(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 };