// Copyright (c) 2022 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN // THE SOFTWARE. import React, {Component} from 'react'; import styled, {withTheme} from 'styled-components'; import {SketchPicker} from 'react-color'; import onClickOutside from 'react-onclickoutside'; import {createSelector} from 'reselect'; // This was put in because 3rd party library react-color doesn't yet cater for customized color of child component which contains HEX/RGB input text box // Issue raised: https://github.com/casesandberg/react-color/issues/631 type SketchPickerValue = { hsl: {h: number; s: number; l: number; a: number}; hex: string; rgb: {r: number; g: number; b: number; a: number}; hsv: {h: number; s: number; v: number; a: number}; oldHue: number; source: string; }; type CustomPickerProps = { color: string; theme: { panelBackground: string; }; onChange: (v: SketchPickerValue) => void; onSwatchClose: () => void; }; const StyledPicker = styled.div` .sketch-picker { span { color: ${props => props.theme.labelColor} !important; font-family: ${props => props.theme.fontFamily}; } input { text-align: center; font-family: ${props => props.theme.fontFamily}; color: ${props => props.theme.inputColor} !important; border-color: ${props => props.theme.secondaryInputBgd} !important; box-shadow: none !important; background-color: ${props => props.theme.inputBgdHover} !important; } } `; const PRESET_COLORS = []; class CustomPicker extends Component { themeSelector = (props: CustomPickerProps) => props.theme; pickerStyleSelector = createSelector(this.themeSelector, theme => ({ picker: { width: '200px', padding: '10px 10px 8px', boxSizing: 'initial', background: theme.panelBackground } })); handleClickOutside = (e: Event) => { this.props.onSwatchClose(); }; render() { const {color, onChange} = this.props; const pickerStyle = this.pickerStyleSelector(this.props); return ( ); } } export default withTheme(onClickOutside(CustomPicker));