UNPKG

victory-native

Version:

A charting library for React Native with a focus on performance and customization.

85 lines (84 loc) 4.02 kB
"use strict"; 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.Candlestick = void 0; const React = __importStar(require("react")); const react_native_skia_1 = require("@shopify/react-native-skia"); const AnimatedPath_1 = require("./AnimatedPath"); const useCandlestickPaths_1 = require("../hooks/useCandlestickPaths"); const CandlestickPath = ({ path, style, options, sharedOptions, animate, }) => { const { children } = options, pathOptions = __rest(options, ["children"]); if (animate) { return (<AnimatedPath_1.AnimatedPath path={path} style={style} {...sharedOptions} {...pathOptions} animate={animate}> {children} </AnimatedPath_1.AnimatedPath>); } return (<react_native_skia_1.Path path={path} style={style} {...sharedOptions} {...pathOptions}> {children} </react_native_skia_1.Path>); }; const Candlestick = ({ openPoints, highPoints, lowPoints, closePoints, chartBounds, candleWidth, candleRatio, candleCount, minBodyHeight, candleColors, wickStrokeWidth, candleOptions, animate, blendMode, opacity, antiAlias, }) => { const paths = (0, useCandlestickPaths_1.useCandlestickPaths)({ openPoints, highPoints, lowPoints, closePoints, chartBounds, candleWidth, candleRatio, candleCount, minBodyHeight, candleColors, wickStrokeWidth, candleOptions, }); const sharedOptions = { blendMode, opacity, antiAlias }; if (paths.mode === "custom") { return (<> {paths.candles.map((candle) => (<React.Fragment key={candle.key}> <CandlestickPath key={`${candle.key}-wick`} path={candle.wickPath} style="stroke" options={candle.wickOptions} sharedOptions={sharedOptions} animate={animate}/> <CandlestickPath key={`${candle.key}-body`} path={candle.bodyPath} style="fill" options={candle.bodyOptions} sharedOptions={sharedOptions} animate={animate}/> </React.Fragment>))} </>); } return (<> {paths.groups.map((group) => (<React.Fragment key={group.key}> <CandlestickPath key={`${group.key}-wick`} path={group.wickPath} style="stroke" options={group.wickOptions} sharedOptions={sharedOptions} animate={animate}/> <CandlestickPath key={`${group.key}-body`} path={group.bodyPath} style="fill" options={group.bodyOptions} sharedOptions={sharedOptions} animate={animate}/> </React.Fragment>))} </>); }; exports.Candlestick = Candlestick;