@light-sheet/react
Version:
FortuneSheet is a drop-in javascript spreadsheet library that provides rich features like Excel and Google Sheets
94 lines • 4.29 kB
JavaScript
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; }
import React, { useLayoutEffect, useRef, useState } from "react";
import { useOutsideClick } from "../../hooks/useOutsideClick";
import SVGIcon from "../SVGIcon";
var Combo = function Combo(_ref) {
var tooltip = _ref.tooltip,
_onClick = _ref.onClick,
text = _ref.text,
iconId = _ref.iconId,
children = _ref.children;
var style = {
userSelect: "none"
};
var _useState = useState(false),
_useState2 = _slicedToArray(_useState, 2),
open = _useState2[0],
setOpen = _useState2[1];
var _useState3 = useState({
left: 0
}),
_useState4 = _slicedToArray(_useState3, 2),
popupPosition = _useState4[0],
setPopupPosition = _useState4[1];
var popupRef = useRef(null);
var buttonRef = useRef(null);
useOutsideClick(popupRef, function () {
setOpen(false);
});
useLayoutEffect(function () {
// re-position the popup menu if it overflows the window
if (!popupRef.current) {
return;
}
if (!open) {
setPopupPosition({
left: 0
});
}
var winW = window.innerWidth;
var rect = popupRef.current.getBoundingClientRect();
var menuW = rect.width;
var left = rect.left;
if (left + menuW > winW) {
setPopupPosition({
left: -rect.width + buttonRef.current.clientWidth
});
}
}, [open]);
return /*#__PURE__*/React.createElement("div", {
className: "fortune-toobar-combo-container fortune-toolbar-item"
}, /*#__PURE__*/React.createElement("div", {
ref: buttonRef,
className: "fortune-toolbar-combo"
}, /*#__PURE__*/React.createElement("div", {
className: "fortune-toolbar-combo-button",
onClick: function onClick(e) {
if (_onClick) _onClick(e);else setOpen(!open);
},
tabIndex: 0,
"data-tips": tooltip,
role: "button",
"aria-label": tooltip,
style: style
}, iconId ? /*#__PURE__*/React.createElement(SVGIcon, {
name: iconId
}) : /*#__PURE__*/React.createElement("span", {
className: "fortune-toolbar-combo-text"
}, text)), /*#__PURE__*/React.createElement("div", {
className: "fortune-toolbar-combo-arrow",
onClick: function onClick() {
return setOpen(!open);
},
tabIndex: 0,
"data-tips": tooltip,
role: "button",
"aria-label": tooltip,
style: style
}, /*#__PURE__*/React.createElement(SVGIcon, {
name: "combo-arrow",
width: 10
})), tooltip && /*#__PURE__*/React.createElement("div", {
className: "fortune-tooltip"
}, tooltip)), open && /*#__PURE__*/React.createElement("div", {
ref: popupRef,
className: "fortune-toolbar-combo-popup",
style: popupPosition
}, children === null || children === void 0 ? void 0 : children(setOpen)));
};
export default Combo;