aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/ui/SearchInput.tsx
blob: af55b0e11a1f02dc0737bf81ec6f902d687be6a9 (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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
import { ChangeEvent, Component } from 'react';
import { observer } from 'mobx-react';
import classnames from 'classnames';
import { debounce } from 'lodash';

type Props = {
  value: string;
  placeholder: string;
  className: string;
  onChange: (e: ChangeEvent<HTMLInputElement>) => void;
  onReset: () => void;
  name: string;
  throttle: boolean;
  throttleDelay: number;
  autoFocus: boolean;
};

@observer
class SearchInput extends Component<Props> {
  static defaultProps = {
    value: '',
    placeholder: '',
    className: '',
    name: 'searchInput',
    throttle: false,
    throttleDelay: 250,
    onChange: () => null,
    onReset: () => null,
    autoFocus: false,
  };

  input = null;

  constructor(props: Props) {
    super(props);

    this.state = {
      value: props.value,
    };

    this.throttledOnChange = debounce(
      this.throttledOnChange,
      this.props.throttleDelay,
    );
  }

  componentDidMount() {
    const { autoFocus } = this.props;

    if (autoFocus) {
      // @ts-expect-error Object is possibly 'null'.
      this.input.focus();
    }
  }

  onChange(e: ChangeEvent<HTMLInputElement>) {
    const { throttle, onChange } = this.props;
    const { value } = e.target;
    this.setState({ value });

    if (throttle) {
      e.persist();
      // @ts-expect-error Argument of type 'string' is not assignable to parameter of type 'ChangeEvent<HTMLInputElement>'.
      this.throttledOnChange(value);
    } else {
      // @ts-expect-error Argument of type 'string' is not assignable to parameter of type 'ChangeEvent<HTMLInputElement>'.
      onChange(value);
    }
  }

  throttledOnChange(e: ChangeEvent<HTMLInputElement>) {
    const { onChange } = this.props;

    onChange(e);
  }

  reset() {
    const { onReset } = this.props;
    this.setState({ value: '' });

    onReset();
  }

  render() {
    const { className, name, placeholder } = this.props;
    // @ts-expect-error Property 'value' does not exist on type 'Readonly<{}>'.
    const { value } = this.state;

    return (
      <div className={classnames([className, 'search-input'])}>
        <label htmlFor={name} className="mdi mdi-magnify">
          <input
            name={name}
            id={name}
            type="text"
            placeholder={placeholder}
            value={value}
            onChange={e => this.onChange(e)}
            ref={ref => {
              // @ts-expect-error Type 'HTMLInputElement | null' is not assignable to type 'null'.
              this.input = ref;
            }}
          />
        </label>
        {value.length > 0 && (
          <span
            className="mdi mdi-close-circle-outline"
            onClick={() => this.reset()}
          />
        )}
      </div>
    );
  }
}

export default SearchInput;