@razorpay/blade
Version:
The Design System that powers Razorpay
52 lines (49 loc) • 1.79 kB
JavaScript
import * as React from 'react';
import { useAppSelector } from '../state/hooks.js';
import { selectXAxisSettings, selectYAxisSettings, implicitXAxis, implicitYAxis } from '../state/selectors/axisSelectors.js';
import { usePlotArea } from '../hooks.js';
function useNeedsClip(xAxisId, yAxisId) {
var _xAxis$allowDataOverf, _yAxis$allowDataOverf;
var xAxis = useAppSelector(state => selectXAxisSettings(state, xAxisId));
var yAxis = useAppSelector(state => selectYAxisSettings(state, yAxisId));
var needClipX = (_xAxis$allowDataOverf = xAxis === null || xAxis === void 0 ? void 0 : xAxis.allowDataOverflow) !== null && _xAxis$allowDataOverf !== void 0 ? _xAxis$allowDataOverf : implicitXAxis.allowDataOverflow;
var needClipY = (_yAxis$allowDataOverf = yAxis === null || yAxis === void 0 ? void 0 : yAxis.allowDataOverflow) !== null && _yAxis$allowDataOverf !== void 0 ? _yAxis$allowDataOverf : implicitYAxis.allowDataOverflow;
var needClip = needClipX || needClipY;
return {
needClip,
needClipX,
needClipY
};
}
function GraphicalItemClipPath(_ref) {
var {
xAxisId,
yAxisId,
clipPathId
} = _ref;
var plotArea = usePlotArea();
var {
needClipX,
needClipY,
needClip
} = useNeedsClip(xAxisId, yAxisId);
if (!needClip || !plotArea) {
return null;
}
var {
x,
y,
width,
height
} = plotArea;
return /*#__PURE__*/React.createElement("clipPath", {
id: "clipPath-".concat(clipPathId)
}, /*#__PURE__*/React.createElement("rect", {
x: needClipX ? x : x - width / 2,
y: needClipY ? y : y - height / 2,
width: needClipX ? width : width * 2,
height: needClipY ? height : height * 2
}));
}
export { GraphicalItemClipPath, useNeedsClip };
//# sourceMappingURL=GraphicalItemClipPath.js.map