aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/ui/textarea/index.tsx
blob: 4a0e77afebb1ff18be82d23ab0dde5e7a6c88b56 (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
117
118
119
120
121
122
123
124
125
126
127
import classnames from 'classnames';
import { Component, type TextareaHTMLAttributes, createRef } from 'react';
import injectSheet, { type WithStylesProps } from 'react-jss';

import { noop } from 'lodash';
import type { IFormField } from '../typings/generic';

// biome-ignore lint/suspicious/noShadowRestrictedNames: <explanation>
import Error from '../error';
import Label from '../label';
import Wrapper from '../wrapper';

import styles from './styles';

interface IData {
  [index: string]: string;
}

interface IProps
  extends TextareaHTMLAttributes<HTMLTextAreaElement>,
    IFormField,
    WithStylesProps<typeof styles> {
  data: IData;
  textareaClassName?: string;
}

class TextareaComponent extends Component<IProps> {
  static defaultProps = {
    onChange: noop,
    onBlur: noop,
    onFocus: noop,
    showLabel: true,
    disabled: false,
    rows: 5,
  };

  private textareaRef = createRef<HTMLTextAreaElement>();

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

    if (this.textareaRef?.current && data) {
      Object.keys(data).map(
        // biome-ignore lint/suspicious/noAssignInExpressions: <explanation>
        key => (this.textareaRef.current!.dataset[key] = data[key]),
      );
    }
  }

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

    if (onChange) {
      onChange(e);
    }
  }

  render() {
    const {
      classes,
      className,
      disabled,
      error,
      id,
      textareaClassName,
      label,
      showLabel,
      value,
      name,
      placeholder,
      spellCheck,
      onBlur,
      onFocus,
      minLength,
      maxLength,
      required,
      rows,
      noMargin,
    } = this.props;

    return (
      <Wrapper
        className={className}
        identifier="franz-textarea"
        noMargin={noMargin}
      >
        <Label
          title={label}
          showLabel={showLabel}
          htmlFor={id}
          className={classes.label}
          isRequired={required}
        >
          <div
            className={classnames({
              [`${textareaClassName}`]: textareaClassName,
              [`${classes.wrapper}`]: true,
              [`${classes.disabled}`]: disabled,
              [`${classes.hasError}`]: error,
            })}
          >
            <textarea
              id={id}
              name={name}
              placeholder={placeholder}
              spellCheck={spellCheck}
              className={classes.textarea}
              ref={this.textareaRef}
              onChange={this.onChange.bind(this)}
              onFocus={onFocus}
              onBlur={onBlur}
              disabled={disabled}
              minLength={minLength}
              maxLength={maxLength}
              rows={rows}
            >
              {value}
            </textarea>
          </div>
        </Label>
        {error && <Error message={error} />}
      </Wrapper>
    );
  }
}

export default injectSheet(styles, { injectTheme: true })(TextareaComponent);