UNPKG

@visx/xychart

Version:

Composable cartesian coordinate chart built with visx primitives

36 lines (34 loc) 3.02 kB
"use strict"; exports.__esModule = true; exports.default = AnnotationLabel; var _react = _interopRequireWildcard(require("react")); var _annotation = require("@visx/annotation"); var _DataContext = _interopRequireDefault(require("../../context/DataContext")); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); } function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; } function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); } var defaultBackgroundProps = { fillOpacity: 0.7 }; /** AnnotationLabel which provides text styles from theme. */ function AnnotationLabel(props) { var _useContext = (0, _react.useContext)(_DataContext.default), theme = _useContext.theme, resizeObserverPolyfill = _useContext.resizeObserverPolyfill; var titleProps = theme == null ? void 0 : theme.svgLabelBig; var subtitleProps = theme == null ? void 0 : theme.svgLabelSmall; return /*#__PURE__*/_react.default.createElement(_annotation.Label, _extends({ anchorLineStroke: theme == null ? void 0 : theme.axisStyles.x.bottom.axisLine.stroke, backgroundFill: theme == null ? void 0 : theme.backgroundColor, backgroundProps: defaultBackgroundProps, showAnchorLine: true, subtitleFontSize: subtitleProps == null ? void 0 : subtitleProps.fontSize, subtitleFontWeight: subtitleProps == null ? void 0 : subtitleProps.fontWeight, subtitleProps: subtitleProps, titleFontSize: titleProps == null ? void 0 : titleProps.fontSize, titleFontWeight: titleProps == null ? void 0 : titleProps.fontWeight, titleProps: titleProps, resizeObserverPolyfill: resizeObserverPolyfill }, props)); }