UNPKG

@light-sheet/react

Version:

FortuneSheet is a drop-in javascript spreadsheet library that provides rich features like Excel and Google Sheets

52 lines 3.21 kB
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 { locale } from "@light-sheet/core"; import React, { useContext, useState } from "react"; import WorkbookContext from "../../context"; import ColorPicker from "../Toolbar/ColorPicker"; import "./index.css"; export var CustomColor = function CustomColor(_ref) { var onCustomPick = _ref.onCustomPick, onColorPick = _ref.onColorPick; var _useContext = useContext(WorkbookContext), context = _useContext.context; var _locale = locale(context), toolbar = _locale.toolbar, sheetconfig = _locale.sheetconfig, button = _locale.button; var _useState = useState("#000000"), _useState2 = _slicedToArray(_useState, 2), inputColor = _useState2[0], setInputColor = _useState2[1]; return /*#__PURE__*/React.createElement("div", { id: "fortune-custom-color" }, /*#__PURE__*/React.createElement("div", { className: "color-reset", onClick: function onClick() { return onCustomPick(undefined); }, tabIndex: 0 }, sheetconfig.resetColor), /*#__PURE__*/React.createElement("div", { className: "custom-color" }, /*#__PURE__*/React.createElement("div", null, toolbar.customColor, ":"), /*#__PURE__*/React.createElement("input", { type: "color", value: inputColor, onChange: function onChange(e) { return setInputColor(e.target.value); } }), /*#__PURE__*/React.createElement("div", { className: "button-basic button-primary", onClick: function onClick() { onCustomPick(inputColor); }, tabIndex: 0 }, button.confirm)), /*#__PURE__*/React.createElement(ColorPicker, { onPick: function onPick(color) { onColorPick(color); } })); };