UNPKG

antd-color-editor

Version:

An open-source color editor for designing color system

97 lines (94 loc) 4.53 kB
var _templateObject, _templateObject2; 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 _taggedTemplateLiteral(strings, raw) { if (!raw) { raw = strings.slice(0); } return Object.freeze(Object.defineProperties(strings, { raw: { value: Object.freeze(raw) } })); } import { Popover } from 'antd'; import { LevaPanel, useControls, useCreateStore } from 'leva'; import { memo, useEffect, useState } from 'react'; import styled from 'styled-components'; import { hctToHex, hexToHct, levaLightTheme } from "./.."; /****************************************************** *********************** Style ************************* ******************************************************/ import { jsx as _jsx } from "react/jsx-runtime"; var ControlView = styled.div(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n width: 240px;\n"]))); var ColorAvatar = styled.div(_templateObject2 || (_templateObject2 = _taggedTemplateLiteral(["\n cursor: pointer;\n\n width: 24px;\n min-width: 24px;\n height: 24px;\n\n border-radius: 3px;\n"]))); /****************************************************** ************************* Dom ************************* ******************************************************/ var HctPicker = /*#__PURE__*/memo(function (_ref) { var _ref$color = _ref.color, color = _ref$color === void 0 ? '#1677FF' : _ref$color, onChange = _ref.onChange, listModify = _ref.listModify; var _useState = useState(false), _useState2 = _slicedToArray(_useState, 2), visible = _useState2[0], setVisible = _useState2[1]; var colorStore = useCreateStore(); // @ts-ignore var _useControls = useControls( // @ts-ignore function () { return { HCT: { max: 360, min: 0, onChange: function onChange(v) { return set({ HEX: hctToHex(v) }); }, step: 1, transient: false, value: hexToHct(color) }, HEX: { onChange: function onChange(v) { return set({ HCT: hexToHct(v) }); }, transient: false, value: color } }; }, { store: colorStore }), _useControls2 = _slicedToArray(_useControls, 2), HEX = _useControls2[0].HEX, set = _useControls2[1]; useEffect(function () { onChange(HEX); }, [HEX]); return /*#__PURE__*/_jsx(Popover, { content: /*#__PURE__*/_jsx(ControlView, { children: /*#__PURE__*/_jsx(LevaPanel, { fill: true, flat: true, store: colorStore, theme: levaLightTheme, titleBar: false }) }), onOpenChange: setVisible, open: visible, trigger: "click", children: /*#__PURE__*/_jsx(ColorAvatar, { onClick: function onClick() { return listModify && set({ HEX: color }); }, style: { background: listModify ? color : HEX } }) }); }); export default HctPicker;