@adaptabletools/adaptable
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
56 lines (55 loc) • 3.1 kB
JavaScript
import * as React from 'react';
import { useCallback, useEffect } from 'react';
import { Box, Flex } from 'rebass';
import debounce from 'lodash/debounce';
import Input from '../Input';
import { getVariableColor } from '../../Utilities/Helpers/StyleHelper';
import tinycolor from 'tinycolor2';
export const ColorPicker = React.forwardRef((props, ref) => {
const ColorPalette = props.api.userInterfaceApi.getColorPalette();
let { api, value, includeAlpha = true, ...restProps } = props;
// Create a debounced version of onChange
// we need this because moving the mouse A LOT in the custom color picker can break the React rendering
const debouncedOnChange = useCallback(debounce((color) => {
props.onChange(color);
}, 30), [props.onChange]);
// Clean up the debounce on unmount
useEffect(() => {
return () => {
debouncedOnChange.cancel();
};
}, [debouncedOnChange]);
const optionsMap = ColorPalette.reduce((acc, colorItem) => ({ ...acc, [getVariableColor(colorItem)]: colorItem }), {});
const ABcolorChoicesOptions = Object.keys(optionsMap).map((x) => {
return (React.createElement("option", { key: x, value: x }, x));
});
const ABcolorChoices = React.createElement("datalist", { id: 'ABcolorChoices' }, ABcolorChoicesOptions);
const preparedValue = React.useMemo(() => {
const color = getVariableColor(value);
return tinycolor(color).toHexString();
}, [value]);
const preparedAlphaColor = React.useMemo(() => {
const color = getVariableColor(value);
return [tinycolor(color).setAlpha(0).toRgbString(), tinycolor(color).setAlpha(1).toRgbString()];
}, [value]);
const rangeBackround = `linear-gradient(90deg, ${preparedAlphaColor[0]} 0%, ${preparedAlphaColor[1]} 100%)`;
const alpha = tinycolor(value).getAlpha();
return (React.createElement(Flex, { className: 'ColorPicker' },
React.createElement(Input, { ...restProps, mr: 2, onChange: (event) => {
/**
* The value is not in the map when the color is not in the palette.
*/
const color = optionsMap[event.target.value] ?? event.target.value;
debouncedOnChange(color);
}, value: preparedValue, ref: ref, type: "color", style: {
width: 70,
padding: 0 /* we need this to be 0, since otherwise on Windows browsers, the chosen color cannot be seen */,
}, list: "ABcolorChoices", title: props.title }),
ABcolorChoices,
includeAlpha && (React.createElement(Flex, { alignItems: "center" },
React.createElement(Box, { mr: 1 }, "Opacity"),
React.createElement(Input, { disabled: props.disabled, className: "ab-ColorPicker-range", style: { background: rangeBackround }, value: alpha, onChange: (event) => {
const color = tinycolor(value).setAlpha(event.target.value).toRgbString();
debouncedOnChange(color);
}, min: 0, max: 1, step: 0.01, type: "range" })))));
});