-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Expand file tree
/
Copy pathtext-area.tsx
More file actions
253 lines (237 loc) · 7.22 KB
/
text-area.tsx
File metadata and controls
253 lines (237 loc) · 7.22 KB
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
import { useIsomorphicLayoutEffect } from 'ahooks'
import { CloseCircleFill } from 'antd-mobile-icons'
import type { ReactNode } from 'react'
import React, { forwardRef, useImperativeHandle, useRef } from 'react'
import runes from 'runes2'
import useInputHandleKeyDown from '../../components/input/useInputHandleKeyDown'
import { devError } from '../../utils/dev-log'
import { NativeProps, withNativeProps } from '../../utils/native-props'
import { usePropsValue } from '../../utils/use-props-value'
import { isIOS } from '../../utils/validate'
import { mergeProps } from '../../utils/with-default-props'
import { useConfig } from '../config-provider'
const classPrefix = 'adm-text-area'
export type TextAreaProps = Pick<
React.DetailedHTMLProps<
React.TextareaHTMLAttributes<HTMLTextAreaElement>,
HTMLTextAreaElement
>,
| 'autoComplete'
| 'autoFocus'
| 'disabled'
| 'readOnly'
| 'name'
| 'onFocus'
| 'onBlur'
| 'onCompositionStart'
| 'onCompositionEnd'
| 'onClick'
| 'onKeyDown'
> & {
onChange?: (val: string) => void
value?: string
defaultValue?: string
placeholder?: string
rows?: number
maxLength?: number
showCount?: boolean | ((length: number, maxLength?: number) => ReactNode)
autoSize?:
| boolean
| {
minRows?: number
maxRows?: number
}
id?: string
onEnterPress?: (e: React.KeyboardEvent<HTMLTextAreaElement>) => void
enterKeyHint?:
| 'enter'
| 'done'
| 'go'
| 'next'
| 'previous'
| 'search'
| 'send'
clearable?: boolean
clearIcon?: ReactNode
onClear?: () => void
} & NativeProps<
| '--font-size'
| '--color'
| '--placeholder-color'
| '--disabled-color'
| '--text-align'
| '--count-text-align'
>
export type TextAreaRef = {
clear: () => void
focus: () => void
blur: () => void
nativeElement: HTMLTextAreaElement | null
}
const defaultProps = {
rows: 2,
showCount: false as NonNullable<TextAreaProps['showCount']>,
autoSize: false as NonNullable<TextAreaProps['autoSize']>,
defaultValue: '',
clearIcon: <CloseCircleFill />,
}
export const TextArea = forwardRef<TextAreaRef, TextAreaProps>(
(p: TextAreaProps, ref) => {
const { locale, textArea: componentConfig = {} } = useConfig()
const props = mergeProps(defaultProps, componentConfig, p)
const { autoSize, showCount, maxLength } = props
const [value, setValue] = usePropsValue({
...props,
value: props.value === null ? '' : props.value,
})
if (props.value === null) {
devError(
'TextArea',
'`value` prop on `TextArea` should not be `null`. Consider using an empty string to clear the component.'
)
}
const nativeTextAreaRef = useRef<HTMLTextAreaElement>(null)
// https://github.com/ant-design/ant-design-mobile/issues/5961
const heightRef = useRef<string>('auto')
// https://github.com/ant-design/ant-design-mobile/issues/6051
const hiddenTextAreaRef = useRef<HTMLTextAreaElement>(null)
const handleKeydown = useInputHandleKeyDown({
onEnterPress: props.onEnterPress,
onKeyDown: props.onKeyDown,
})
useImperativeHandle(ref, () => ({
clear: () => {
setValue('')
},
focus: () => {
nativeTextAreaRef.current?.focus()
},
blur: () => {
nativeTextAreaRef.current?.blur()
},
get nativeElement() {
return nativeTextAreaRef.current
},
}))
useIsomorphicLayoutEffect(() => {
if (!autoSize) return
const textArea = nativeTextAreaRef.current
const hiddenTextArea = hiddenTextAreaRef.current
if (!textArea) return
textArea.style.height = heightRef.current
if (!hiddenTextArea) return
let height = hiddenTextArea.scrollHeight
if (typeof autoSize === 'object') {
const computedStyle = window.getComputedStyle(textArea)
const lineHeight = parseFloat(computedStyle.lineHeight)
if (autoSize.minRows) {
height = Math.max(height, autoSize.minRows * lineHeight)
}
if (autoSize.maxRows) {
height = Math.min(height, autoSize.maxRows * lineHeight)
}
}
heightRef.current = `${height}px`
textArea.style.height = `${height}px`
}, [value, autoSize])
const compositingRef = useRef(false)
const shouldShowClear =
props.clearable && !!value && !props.readOnly && !props.disabled
let count
const valueLength = runes(value).length
if (typeof showCount === 'function') {
count = showCount(valueLength, maxLength)
} else if (showCount) {
count = (
<div className={`${classPrefix}-count`}>
{maxLength === undefined
? valueLength
: valueLength + '/' + maxLength}
</div>
)
}
let rows = props.rows
if (typeof autoSize === 'object') {
if (autoSize.maxRows && rows > autoSize.maxRows) {
rows = autoSize.maxRows
}
if (autoSize.minRows && rows < autoSize.minRows) {
rows = autoSize.minRows
}
}
return withNativeProps(
props,
<div className={classPrefix}>
<textarea
ref={nativeTextAreaRef}
className={`${classPrefix}-element`}
rows={rows}
value={value}
placeholder={props.placeholder}
onChange={e => {
let v = e.target.value
if (maxLength && !compositingRef.current) {
v = runes(v).slice(0, maxLength).join('')
}
setValue(v)
}}
id={props.id}
onCompositionStart={e => {
compositingRef.current = true
props.onCompositionStart?.(e)
}}
onCompositionEnd={e => {
compositingRef.current = false
if (maxLength) {
const v = (e.target as HTMLTextAreaElement).value
setValue(runes(v).slice(0, maxLength).join(''))
}
props.onCompositionEnd?.(e)
}}
autoComplete={props.autoComplete}
autoFocus={props.autoFocus}
disabled={props.disabled}
readOnly={props.readOnly}
name={props.name}
onFocus={props.onFocus}
onBlur={props.onBlur}
onClick={props.onClick}
onKeyDown={handleKeydown}
enterKeyHint={props.enterKeyHint}
/>
{shouldShowClear && (
<div
className={`${classPrefix}-clear`}
onMouseDown={e => {
e.preventDefault()
}}
onClick={() => {
setValue('')
props.onClear?.()
// https://github.com/ant-design/ant-design-mobile/issues/5212
if (isIOS() && compositingRef.current) {
compositingRef.current = false
nativeTextAreaRef.current?.blur()
}
}}
aria-label={locale.TextArea.clear}
>
{props.clearIcon}
</div>
)}
{count}
{autoSize && (
<textarea
ref={hiddenTextAreaRef}
className={`${classPrefix}-element ${classPrefix}-element-hidden`}
value={value}
rows={rows}
aria-hidden
readOnly
/>
)}
</div>
)
}
)
TextArea.defaultProps = defaultProps