UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

33 lines (32 loc) 1.06 kB
"use client"; import React, { useState } from 'react'; import Input from '../../input/Input'; import { toHexFormat } from '../color'; import { generateColor } from '../util'; const hexReg = /(^#[\da-f]{6}$)|(^#[\da-f]{8}$)/i; const isHexString = hex => hexReg.test(`#${hex}`); const ColorHexInput = _ref => { let { prefixCls, value, onChange } = _ref; const colorHexInputPrefixCls = `${prefixCls}-hex-input`; const [internalValue, setInternalValue] = useState(''); const hexValue = value ? toHexFormat(value.toHexString()) : internalValue; const handleHexChange = e => { const originValue = e.target.value; setInternalValue(toHexFormat(originValue)); if (isHexString(toHexFormat(originValue, true))) { onChange === null || onChange === void 0 ? void 0 : onChange(generateColor(originValue)); } }; return /*#__PURE__*/React.createElement(Input, { className: colorHexInputPrefixCls, value: hexValue, prefix: "#", onChange: handleHexChange, size: "small" }); }; export default ColorHexInput;