victory-native
Version:
A charting library for React Native with a focus on performance and customization.
84 lines (83 loc) • 4.2 kB
JavaScript
;
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
__setModuleDefault(result, mod);
return result;
};
var __rest = (this && this.__rest) || function (s, e) {
var t = {};
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
t[p] = s[p];
if (s != null && typeof Object.getOwnPropertySymbols === "function")
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
t[p[i]] = s[p[i]];
}
return t;
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.HorizontalBarGroup = void 0;
const React = __importStar(require("react"));
const react_native_skia_1 = require("@shopify/react-native-skia");
const AnimatedPath_1 = require("./AnimatedPath");
const useHorizontalBarGroupPaths_1 = require("../hooks/useHorizontalBarGroupPaths");
const useFunctionRef_1 = require("../../hooks/useFunctionRef");
const CartesianChartContext_1 = require("../contexts/CartesianChartContext");
function HorizontalBarGroup({ betweenGroupPadding = 0.25, withinGroupPadding = 0.25, chartBounds, roundedCorners, children, onBarSizeChange, barWidth: customBarWidth, barCount, }) {
const { orientation } = (0, CartesianChartContext_1.useCartesianChartContext)();
const bars = [];
React.Children.forEach(children, (child) => {
if (React.isValidElement(child)) {
if (child.type === HorizontalBarGroupBar) {
bars.push(child.props);
}
}
});
const { paths, barWidth, groupWidth, gapWidth } = (0, useHorizontalBarGroupPaths_1.useHorizontalBarGroupPaths)(bars.map((bar) => bar.points), chartBounds, betweenGroupPadding, withinGroupPadding, roundedCorners, customBarWidth, barCount);
const onBarSizeChangeRef = (0, useFunctionRef_1.useFunctionRef)(onBarSizeChange);
React.useEffect(() => {
var _a;
if (orientation !== "horizontal")
return;
(_a = onBarSizeChangeRef.current) === null || _a === void 0 ? void 0 : _a.call(onBarSizeChangeRef, { barWidth, groupWidth, gapWidth });
}, [orientation, barWidth, gapWidth, groupWidth, onBarSizeChangeRef]);
if (orientation !== "horizontal") {
if (process.env.NODE_ENV !== "production") {
console.warn('HorizontalBarGroup must be rendered inside a CartesianChart with orientation="horizontal".');
}
return null;
}
const firstBar = bars[0];
if (!firstBar)
return null;
return (<>
{bars.map((props, i) => React.createElement(HorizontalBarGroupBar, Object.assign(Object.assign({}, props), { __path: paths[i], key: i })))}
</>);
}
exports.HorizontalBarGroup = HorizontalBarGroup;
HorizontalBarGroup.Bar = HorizontalBarGroupBar;
function HorizontalBarGroupBar(props) {
const _a = props, { animate, __path } = _a, rest = __rest(_a, ["animate", "__path"]);
const PathComponent = animate ? AnimatedPath_1.AnimatedPath : react_native_skia_1.Path;
if (!__path)
return null;
return React.createElement(PathComponent, Object.assign(Object.assign({ path: __path, style: "fill", color: "red" }, rest), (Boolean(animate) && { animate })));
}