aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/ui/colorPickerInput/index.tsx
blob: 2367175bd20969a9dd4538adaa0a0349aa0de821 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
import {
  Component,
  createRef,
  InputHTMLAttributes,
  ReactElement,
  RefObject,
} from 'react';
import { observer } from 'mobx-react';
import classnames from 'classnames';
import { SliderPicker } from 'react-color';
import { noop } from 'lodash';
import { FormFields } from '../../../@types/mobx-form.types';

interface IProps extends InputHTMLAttributes<HTMLInputElement>, FormFields {
  className?: string;
  focus?: boolean;
  onColorChange?: () => void;
  error: string;
}

@observer
class ColorPickerInput extends Component<IProps> {
  private inputElement: RefObject<HTMLInputElement> =
    createRef<HTMLInputElement>();

  componentDidMount(): void {
    const { focus = false } = this.props;
    if (focus && this.inputElement?.current) {
      this.inputElement.current.focus();
    }
  }

  onChange({ hex }: { hex: string }): void {
    const { onColorChange = noop, onChange = noop } = this.props;
    onColorChange();
    onChange(hex);
  }

  render(): ReactElement {
    const {
      id,
      name,
      value = '',
      placeholder = '',
      disabled = false,
      className = null,
      type = 'text',
      error = '',
      onChange = noop,
    } = this.props;

    return (
      <div
        className={classnames({
          'franz-form__field': true,
          'has-error': error,
          [`${className}`]: className,
        })}
        ref={this.inputElement}
      >
        <SliderPicker
          color={value}
          onChange={this.onChange.bind(this)}
          id={`${id}-SliderPicker`}
          type={type}
          className="franz-form__input"
          name={name}
          placeholder={placeholder}
          disabled={disabled}
        />
        <div className="franz-form__input-wrapper franz-form__input-wrapper__color-picker">
          <input
            id={`${id}-Input`}
            type={type}
            className="franz-form__input"
            name={name}
            value={value}
            placeholder={placeholder}
            onChange={onChange}
            disabled={disabled}
          />
        </div>
      </div>
    );
  }
}

export default ColorPickerInput;