Repository URL to install this package:
|
Version:
3.12.16 ▾
|
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 { useState } from 'react';
import { Button, ColorPicker, Modal, ModalContent, ModalTitle } from '@scaleflex/ui/core';
import ColorPickerIcon from '@scaleflex/icons/color-picker';
import Styled from './ColorPickerModal.styled';
import { jsx as _jsx } from "react/jsx-runtime";
import { jsxs as _jsxs } from "react/jsx-runtime";
function ColorPickerModal(_ref) {
var _ref$defaultColor = _ref.defaultColor,
defaultColor = _ref$defaultColor === void 0 ? '' : _ref$defaultColor,
_ref$colors = _ref.colors,
colors = _ref$colors === void 0 ? [] : _ref$colors,
onChange = _ref.onChange,
open = _ref.open,
onClose = _ref.onClose,
_ref$i18n = _ref.i18n,
i18n = _ref$i18n === void 0 ? function () {} : _ref$i18n,
_ref$modalTitleLabel = _ref.modalTitleLabel,
modalTitleLabel = _ref$modalTitleLabel === void 0 ? i18n('colorPickerModalTitle') : _ref$modalTitleLabel,
_ref$cancelButtonLabe = _ref.cancelButtonLabel,
cancelButtonLabel = _ref$cancelButtonLabe === void 0 ? i18n('mutualizedCancelButtonLabel') : _ref$cancelButtonLabe,
_ref$saveButtonLabel = _ref.saveButtonLabel,
saveButtonLabel = _ref$saveButtonLabel === void 0 ? i18n('mutualizedApplyButtonLabel') : _ref$saveButtonLabel;
var _useState = useState(defaultColor),
_useState2 = _slicedToArray(_useState, 2),
value = _useState2[0],
setValue = _useState2[1];
var _useState3 = useState(colors),
_useState4 = _slicedToArray(_useState3, 2),
pinnedColors = _useState4[0],
setPinnedColors = _useState4[1];
if (!open) {
return null;
}
var handleSave = function handleSave() {
onChange(value);
onClose();
};
return /*#__PURE__*/_jsxs(Modal, {
onClose: onClose,
open: open,
fullWidth: true,
style: {
maxWidth: 350
},
children: [/*#__PURE__*/_jsx(ModalTitle, {
onClose: onClose,
primary: modalTitleLabel,
icon: /*#__PURE__*/_jsx(ColorPickerIcon, {
size: 29
}),
iconShadow: true,
variant: "with-icon"
}), /*#__PURE__*/_jsx(ModalContent, {
children: /*#__PURE__*/_jsx(Styled.ColorPickerWrap, {
children: /*#__PURE__*/_jsx(ColorPicker, {
defaultColor: defaultColor,
pinnedColors: pinnedColors,
onChange: function onChange(hexColor, rgbColor, colorPickerPinnedColors) {
// onChange(hexColor)
setValue(hexColor);
setPinnedColors(colorPickerPinnedColors);
}
})
})
}), /*#__PURE__*/_jsxs(Styled.ModalActions, {
children: [/*#__PURE__*/_jsx(Button, {
color: "basic",
onClick: onClose,
children: cancelButtonLabel
}), /*#__PURE__*/_jsx(Button, {
color: "primary",
onClick: handleSave,
children: saveButtonLabel
})]
})]
});
}
export default ColorPickerModal;