@mui/x-charts
Version:
The community edition of the charts components (MUI X).
105 lines • 3.37 kB
JavaScript
import _extends from "@babel/runtime/helpers/esm/extends";
import _typeof from "@babel/runtime/helpers/esm/typeof";
import * as React from 'react';
import composeClasses from '@mui/utils/composeClasses';
import { useDrawingArea, useYScale } from '../hooks';
import { ReferenceLineRoot } from './common';
import { ChartsText } from '../ChartsText';
import { getReferenceLineUtilityClass } from './chartsReferenceLineClasses';
import { jsx as _jsx } from "react/jsx-runtime";
import { jsxs as _jsxs } from "react/jsx-runtime";
var getTextParams = function getTextParams(_ref) {
var left = _ref.left,
width = _ref.width,
spacingX = _ref.spacingX,
_ref$labelAlign = _ref.labelAlign,
labelAlign = _ref$labelAlign === void 0 ? 'middle' : _ref$labelAlign;
switch (labelAlign) {
case 'start':
return {
x: left + spacingX,
style: {
dominantBaseline: 'auto',
textAnchor: 'start'
}
};
case 'end':
return {
x: left + width - spacingX,
style: {
dominantBaseline: 'auto',
textAnchor: 'end'
}
};
default:
return {
x: left + width / 2,
style: {
dominantBaseline: 'auto',
textAnchor: 'middle'
}
};
}
};
var warnedOnce = false;
export function getYReferenceLineClasses(classes) {
return composeClasses({
root: ['root', 'horizontal'],
line: ['line'],
label: ['label']
}, getReferenceLineUtilityClass, classes);
}
function ChartsYReferenceLine(props) {
var _spacing$x, _spacing$y;
var y = props.y,
_props$label = props.label,
label = _props$label === void 0 ? '' : _props$label,
_props$spacing = props.spacing,
spacing = _props$spacing === void 0 ? 5 : _props$spacing,
inClasses = props.classes,
labelAlign = props.labelAlign,
lineStyle = props.lineStyle,
labelStyle = props.labelStyle,
axisId = props.axisId;
var _useDrawingArea = useDrawingArea(),
left = _useDrawingArea.left,
width = _useDrawingArea.width;
var yAxisScale = useYScale(axisId);
var yPosition = yAxisScale(y);
if (yPosition === undefined) {
if (process.env.NODE_ENV !== 'production') {
if (!warnedOnce) {
warnedOnce = true;
console.error("MUI X: the value ".concat(y, " does not exist in the data of y axis with id ").concat(axisId, "."));
}
}
return null;
}
var d = "M ".concat(left, " ").concat(yPosition, " l ").concat(width, " 0");
var classes = getYReferenceLineClasses(inClasses);
var spacingX = _typeof(spacing) === 'object' ? (_spacing$x = spacing.x) != null ? _spacing$x : 0 : spacing;
var spacingY = _typeof(spacing) === 'object' ? (_spacing$y = spacing.y) != null ? _spacing$y : 0 : spacing;
var textParams = _extends({
y: yPosition - spacingY,
text: label,
fontSize: 12
}, getTextParams({
left: left,
width: width,
spacingX: spacingX,
labelAlign: labelAlign
}), {
className: classes.label
});
return /*#__PURE__*/_jsxs(ReferenceLineRoot, {
className: classes.root,
children: [/*#__PURE__*/_jsx("path", {
d: d,
className: classes.line,
style: lineStyle
}), /*#__PURE__*/_jsx(ChartsText, _extends({}, textParams, {
style: _extends({}, textParams.style, labelStyle)
}))]
});
}
export { ChartsYReferenceLine };