@lobehub/charts
Version:
React modern charts components built on recharts
187 lines (185 loc) • 11.8 kB
JavaScript
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
var _excluded = ["customCategories", "categories", "colors", "className", "onClickLegendItem", "activeLegend", "enableLegendSlider"];
var _templateObject, _templateObject2, _templateObject3;
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; }
function _iterableToArrayLimit(r, l) { var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t.return && (u = t.return(), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } }
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
function _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = strings.slice(0); } return Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); }
import { createStyles } from 'antd-style';
import { ChevronLeft, ChevronRight } from 'lucide-react';
import { forwardRef, useCallback, useEffect, useRef, useState } from 'react';
import { Flexbox } from 'react-layout-kit';
import { useThemeColorRange } from "../hooks/useThemeColorRange";
import LegendItem from "./LegendItem";
import ScrollButton from "./ScrollButton";
import { jsx as _jsx } from "react/jsx-runtime";
import { jsxs as _jsxs } from "react/jsx-runtime";
var useStyles = createStyles(function (_ref) {
var css = _ref.css;
return {
container: css(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n position: relative;\n overflow: hidden;\n "]))),
enableLegendSlider: css(_templateObject2 || (_templateObject2 = _taggedTemplateLiteral(["\n scrollbar-width: none;\n\n overflow: auto;\n align-items: center;\n\n padding-right: 48px;\n padding-left: 16px;\n "]))),
scrollButtons: css(_templateObject3 || (_templateObject3 = _taggedTemplateLiteral(["\n top: 0;\n right: 0;\n bottom: 0;\n "])))
};
});
var Legend = /*#__PURE__*/forwardRef(function (props, ref) {
var _useStyles = useStyles(),
cx = _useStyles.cx,
styles = _useStyles.styles;
var themeColorRange = useThemeColorRange();
var customCategories = props.customCategories,
categories = props.categories,
_props$colors = props.colors,
colors = _props$colors === void 0 ? themeColorRange : _props$colors,
className = props.className,
onClickLegendItem = props.onClickLegendItem,
activeLegend = props.activeLegend,
_props$enableLegendSl = props.enableLegendSlider,
enableLegendSlider = _props$enableLegendSl === void 0 ? false : _props$enableLegendSl,
rest = _objectWithoutProperties(props, _excluded);
var scrollableRef = useRef(null);
var scrollButtonsRef = useRef(null);
var _useState = useState(null),
_useState2 = _slicedToArray(_useState, 2),
hasScroll = _useState2[0],
setHasScroll = _useState2[1];
var _useState3 = useState(null),
_useState4 = _slicedToArray(_useState3, 2),
isKeyDowned = _useState4[0],
setIsKeyDowned = _useState4[1];
var intervalRef = useRef(null);
var checkScroll = useCallback(function () {
var scrollable = scrollableRef === null || scrollableRef === void 0 ? void 0 : scrollableRef.current;
if (!scrollable) return;
var hasLeftScroll = scrollable.scrollLeft > 0;
var hasRightScroll = scrollable.scrollWidth - scrollable.clientWidth > scrollable.scrollLeft;
setHasScroll({
left: hasLeftScroll,
right: hasRightScroll
});
}, [setHasScroll]); // dependencies are listed here in the array
var scrollToTest = useCallback(function (direction) {
var _element$clientWidth, _scrollButtons$client;
var element = scrollableRef === null || scrollableRef === void 0 ? void 0 : scrollableRef.current;
var scrollButtons = scrollButtonsRef === null || scrollButtonsRef === void 0 ? void 0 : scrollButtonsRef.current;
var width = (_element$clientWidth = element === null || element === void 0 ? void 0 : element.clientWidth) !== null && _element$clientWidth !== void 0 ? _element$clientWidth : 0;
var scrollButtonsWith = (_scrollButtons$client = scrollButtons === null || scrollButtons === void 0 ? void 0 : scrollButtons.clientWidth) !== null && _scrollButtons$client !== void 0 ? _scrollButtons$client : 0;
if (element && enableLegendSlider) {
element.scrollTo({
behavior: 'smooth',
left: direction === 'left' ? element.scrollLeft - width + scrollButtonsWith : element.scrollLeft + width - scrollButtonsWith
});
setTimeout(function () {
checkScroll();
}, 400);
}
}, [enableLegendSlider, checkScroll]);
useEffect(function () {
var keyDownHandler = function keyDownHandler(key) {
if (key === 'ArrowLeft') {
scrollToTest('left');
} else if (key === 'ArrowRight') {
scrollToTest('right');
}
};
if (isKeyDowned) {
keyDownHandler(isKeyDowned);
intervalRef.current = setInterval(function () {
keyDownHandler(isKeyDowned);
}, 300);
} else {
clearInterval(intervalRef.current);
}
return function () {
return clearInterval(intervalRef.current);
};
}, [isKeyDowned, scrollToTest]);
var keyDown = function keyDown(e) {
e.stopPropagation();
if (e.key === 'ArrowLeft' || e.key === 'ArrowRight') {
e.preventDefault();
setIsKeyDowned(e.key);
}
};
var keyUp = function keyUp(e) {
e.stopPropagation();
setIsKeyDowned(null);
};
useEffect(function () {
var scrollable = scrollableRef === null || scrollableRef === void 0 ? void 0 : scrollableRef.current;
if (enableLegendSlider) {
checkScroll();
scrollable === null || scrollable === void 0 || scrollable.addEventListener('keydown', keyDown);
scrollable === null || scrollable === void 0 || scrollable.addEventListener('keyup', keyUp);
}
return function () {
scrollable === null || scrollable === void 0 || scrollable.removeEventListener('keydown', keyDown);
scrollable === null || scrollable === void 0 || scrollable.removeEventListener('keyup', keyUp);
};
}, [checkScroll, enableLegendSlider]);
// @ts-ignore
return /*#__PURE__*/_jsxs(Flexbox, _objectSpread(_objectSpread({
className: cx(styles.container, className),
gap: 8,
horizontal: true,
ref: ref
}, rest), {}, {
children: [/*#__PURE__*/_jsx(Flexbox, {
className: cx(enableLegendSlider && ((hasScroll === null || hasScroll === void 0 ? void 0 : hasScroll.right) || (hasScroll === null || hasScroll === void 0 ? void 0 : hasScroll.left)) && styles.enableLegendSlider),
flex: 1,
height: '100%',
horizontal: true,
ref: scrollableRef,
style: {
overflow: 'hidden'
},
tabIndex: 0,
wrap: enableLegendSlider ? 'nowrap' : 'wrap',
children: categories.map(function (category, idx) {
return /*#__PURE__*/_jsx(LegendItem, {
activeLegend: activeLegend,
color: colors[idx % colors.length],
label: (customCategories === null || customCategories === void 0 ? void 0 : customCategories[category]) || category,
name: category,
onClick: onClickLegendItem
}, "item-".concat(idx));
})
}), enableLegendSlider && (hasScroll !== null && hasScroll !== void 0 && hasScroll.right || hasScroll !== null && hasScroll !== void 0 && hasScroll.left) ? /*#__PURE__*/_jsxs(Flexbox, {
align: 'center',
className: styles.scrollButtons,
flex: 'none',
gap: 4,
height: '100%',
horizontal: true,
justify: 'center',
ref: scrollButtonsRef,
children: [/*#__PURE__*/_jsx(ScrollButton, {
disabled: !(hasScroll !== null && hasScroll !== void 0 && hasScroll.left),
icon: ChevronLeft,
onClick: function onClick() {
setIsKeyDowned(null);
scrollToTest('left');
}
}), /*#__PURE__*/_jsx(ScrollButton, {
disabled: !(hasScroll !== null && hasScroll !== void 0 && hasScroll.right),
icon: ChevronRight,
onClick: function onClick() {
setIsKeyDowned(null);
scrollToTest('right');
}
})]
}) : null]
}));
});
Legend.displayName = 'Legend';
export default Legend;