You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
1.8 KiB
64 lines
1.8 KiB
2 years ago
|
import { ColorPickerPanel as RcColorPickerPanel } from '@rc-component/color-picker';
|
||
|
import type { FC } from 'react';
|
||
|
import React from 'react';
|
||
|
import Divider from '../divider';
|
||
|
import type { Color } from './color';
|
||
|
import ColorClear from './components/ColorClear';
|
||
|
import ColorInput from './components/ColorInput';
|
||
|
import ColorPresets from './components/ColorPresets';
|
||
|
import type { ColorPickerBaseProps } from './interface';
|
||
|
|
||
|
interface ColorPickerPanelProps extends ColorPickerBaseProps {
|
||
|
onChange?: (value?: Color) => void;
|
||
|
onClear?: (clear?: boolean) => void;
|
||
|
}
|
||
|
|
||
|
const ColorPickerPanel: FC<ColorPickerPanelProps> = (props) => {
|
||
|
const { prefixCls, allowClear, presets, onChange, onClear, color, ...injectProps } = props;
|
||
|
const colorPickerPanelPrefixCls = `${prefixCls}-inner-panel`;
|
||
|
|
||
|
const extraPanelRender = (panel: React.ReactElement) => (
|
||
|
<div className={colorPickerPanelPrefixCls}>
|
||
|
{allowClear && (
|
||
|
<ColorClear
|
||
|
prefixCls={prefixCls}
|
||
|
value={color}
|
||
|
onChange={(clearColor) => {
|
||
|
onChange?.(clearColor);
|
||
|
onClear?.(true);
|
||
|
}}
|
||
|
{...injectProps}
|
||
|
/>
|
||
|
)}
|
||
|
{panel}
|
||
|
<ColorInput
|
||
|
value={color}
|
||
|
onChange={(value) => onChange?.(value)}
|
||
|
prefixCls={prefixCls}
|
||
|
{...injectProps}
|
||
|
/>
|
||
|
|
||
|
{Array.isArray(presets) && (
|
||
|
<>
|
||
|
<Divider className={`${colorPickerPanelPrefixCls}-divider`} />
|
||
|
<ColorPresets
|
||
|
value={color}
|
||
|
presets={presets}
|
||
|
onChange={(value) => onChange?.(value)}
|
||
|
prefixCls={prefixCls}
|
||
|
/>
|
||
|
</>
|
||
|
)}
|
||
|
</div>
|
||
|
);
|
||
|
return (
|
||
|
<RcColorPickerPanel
|
||
|
prefixCls={prefixCls}
|
||
|
value={color?.toHsb()}
|
||
|
onChange={onChange}
|
||
|
panelRender={extraPanelRender}
|
||
|
/>
|
||
|
);
|
||
|
};
|
||
|
export default ColorPickerPanel;
|