mirror of
https://github.com/utopia-os/utopia-ui.git
synced 2025-12-13 07:46:10 +00:00
50 lines
1.5 KiB
TypeScript
50 lines
1.5 KiB
TypeScript
import { useCallback, useEffect, useRef, useState } from "react";
|
|
import * as React from "react";
|
|
import { HexColorPicker } from "react-colorful";
|
|
import "./ColorPicker.css"
|
|
import useClickOutside from "./useClickOutside";
|
|
|
|
export const ColorPicker = ({ color, onChange, className }) => {
|
|
const popover = useRef<HTMLDivElement>(null);
|
|
const [isOpen, toggle] = useState(false);
|
|
|
|
const close = useCallback(() => toggle(false), []);
|
|
useClickOutside(popover, close);
|
|
|
|
const colorPickerRef = React.useRef<HTMLDivElement>(null)
|
|
|
|
useEffect(() => {
|
|
// Füge dem Color-Picker explizit Event-Listener hinzu
|
|
const colorPickerElement = colorPickerRef.current;
|
|
if (colorPickerElement) {
|
|
const enablePropagation = (event) => {
|
|
// Verhindere, dass Leaflet die Propagation stoppt
|
|
event.stopPropagation = () => {};
|
|
};
|
|
|
|
// Event-Listener für den Color-Picker
|
|
['click', 'dblclick', 'mousedown', 'touchstart'].forEach(eventType => {
|
|
colorPickerElement.addEventListener(eventType, enablePropagation, true);
|
|
});
|
|
}
|
|
|
|
}, []);
|
|
|
|
return (
|
|
<div ref={colorPickerRef} className={`picker ${className}`}>
|
|
<div
|
|
className="swatch"
|
|
style={{ backgroundColor: color }}
|
|
onClick={() => toggle(true)}
|
|
/>
|
|
|
|
{isOpen && (
|
|
<div className="popover tw-z-[10000]" ref={popover}>
|
|
<HexColorPicker color={color} onChange={onChange} onClick={() => toggle(false)}/>
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
};
|
|
|