-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTextArea.tsx
95 lines (79 loc) · 2.18 KB
/
TextArea.tsx
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
import React from "react";
import classnames from "classnames";
import { fixControlledValue } from "./Input";
export interface TextAreaProps
extends Omit<React.TextareaHTMLAttributes<HTMLTextAreaElement>, "onChange"> {
prefixCls?: string;
onChange?: (value: string, e: React.SyntheticEvent) => void;
onPressEnter?: (e: React.KeyboardEvent<HTMLTextAreaElement>) => void;
}
export interface TextAreaState {
value: TextAreaProps["value"];
}
export default class TextArea extends React.Component<TextAreaProps> {
static defaultProps: TextAreaProps = {
prefixCls: "rw-input",
defaultValue: "",
};
static getDerivedStateFromProps(nextProps: TextAreaProps, state: TextAreaState) {
return {
value: nextProps.value === undefined ? state.value : nextProps.value,
};
}
state: Readonly<TextAreaState> = {
value: this.props.defaultValue,
};
inputRef: React.RefObject<HTMLTextAreaElement> = React.createRef();
focus() {
this.inputRef.current?.focus();
}
blur() {
this.inputRef.current?.blur();
}
select() {
this.inputRef.current?.select();
}
handleKeyDown = (e: React.KeyboardEvent<HTMLTextAreaElement>) => {
const { onPressEnter, onKeyDown } = this.props;
if (e.keyCode === 13 && onPressEnter) {
onPressEnter(e);
}
if (onKeyDown) {
onKeyDown(e);
}
};
handleChange = (e: React.ChangeEvent<HTMLTextAreaElement>) => {
this.setValue(e.target.value, e);
};
setValue(newValue: string, e: React.SyntheticEvent, callback?: () => void) {
const { onChange, value } = this.props;
if (value === undefined) {
this.setState({ value: newValue }, callback);
}
if (onChange) {
onChange(newValue, e);
}
}
getInput() {
return this.inputRef.current!;
}
render() {
const { prefixCls, className, disabled, readOnly, onChange, ...restProps } = this.props;
return (
<textarea
{...restProps}
ref={this.inputRef}
disabled={disabled}
readOnly={readOnly}
onChange={this.handleChange}
onKeyDown={this.handleKeyDown}
value={fixControlledValue(this.state.value)}
className={classnames(prefixCls, {
[className!]: className,
[`${prefixCls}-disabled`]: !!disabled,
[`${prefixCls}-readonly`]: !!readOnly,
})}
/>
);
}
}