-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathBaseInput.tsx
More file actions
217 lines (201 loc) · 5.37 KB
/
BaseInput.tsx
File metadata and controls
217 lines (201 loc) · 5.37 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
import clsx from 'classnames';
import type { FC, ReactElement } from 'react';
import React, { cloneElement, useRef } from 'react';
import DefaultCopyIcon from './DefaultCopyIcon';
import type { BaseInputProps } from './interface';
import { hasAddon, hasPrefixSuffix } from './utils/commonUtils';
const copyText = (text?: string): void => {
if (!text) {
return;
}
const textarea = document.createElement('textarea');
textarea.setAttribute('readonly', 'readonly');
textarea.innerHTML = text;
document.body.appendChild(textarea);
textarea.select();
if (document.execCommand('copy')) {
document.execCommand('copy');
}
document.body.removeChild(textarea);
};
const BaseInput: FC<BaseInputProps> = (props) => {
const {
inputElement,
prefixCls,
prefix,
suffix,
addonBefore,
addonAfter,
className,
style,
disabled,
readOnly,
focused,
triggerFocus,
allowClear,
value,
handleReset,
hidden,
classes,
classNames,
dataAttrs,
styles,
allowCopy,
copyCallback,
} = props;
const containerRef = useRef<HTMLSpanElement>(null);
const onInputClick: React.MouseEventHandler = (e) => {
if (containerRef.current?.contains(e.target as Element)) {
triggerFocus?.();
}
};
// ================== Clear Icon ================== //
const getClearIcon = () => {
if (!allowClear) {
return null;
}
const needClear = !disabled && !readOnly && value;
const clearIconCls = `${prefixCls}-clear-icon`;
const iconNode =
typeof allowClear === 'object' && allowClear?.clearIcon
? allowClear.clearIcon
: '✖';
return (
<span
onClick={handleReset}
// Do not trigger onBlur when clear input
// https://github.com/ant-design/ant-design/issues/31200
onMouseDown={(e) => e.preventDefault()}
className={clsx(clearIconCls, {
[`${clearIconCls}-hidden`]: !needClear,
[`${clearIconCls}-has-suffix`]: !!suffix,
})}
role="button"
tabIndex={-1}
>
{iconNode}
</span>
);
};
let element: ReactElement = cloneElement(inputElement, {
value,
hidden,
className:
clsx(
inputElement.props?.className,
!hasPrefixSuffix(props) && !hasAddon(props) && className,
) || null,
style: {
...inputElement.props?.style,
...(!hasPrefixSuffix(props) && !hasAddon(props) && !allowCopy
? style
: {}),
},
});
// ================== Prefix & Suffix ================== //
if (hasPrefixSuffix(props)) {
const affixWrapperPrefixCls = `${prefixCls}-affix-wrapper`;
const affixWrapperCls = clsx(
affixWrapperPrefixCls,
{
[`${affixWrapperPrefixCls}-disabled`]: disabled,
[`${affixWrapperPrefixCls}-focused`]: focused,
[`${affixWrapperPrefixCls}-readonly`]: readOnly,
[`${affixWrapperPrefixCls}-input-with-clear-btn`]:
suffix && allowClear && value,
},
!hasAddon(props) && className,
classes?.affixWrapper,
);
const suffixNode = (suffix || allowClear) && (
<span
className={clsx(`${prefixCls}-suffix`, classNames?.suffix)}
style={styles?.suffix}
>
{getClearIcon()}
{suffix}
</span>
);
element = (
<span
className={affixWrapperCls}
style={!hasAddon(props) ? style : undefined}
hidden={!hasAddon(props) && hidden}
onClick={onInputClick}
{...dataAttrs?.affixWrapper}
ref={containerRef}
>
{prefix && (
<span
className={clsx(`${prefixCls}-prefix`, classNames?.prefix)}
style={styles?.prefix}
>
{prefix}
</span>
)}
{cloneElement(inputElement, {
value,
hidden: null,
})}
{suffixNode}
</span>
);
}
const CopyIcon = React.createElement(
'span',
{
onClick: () => {
if (typeof copyCallback === 'function') {
copyCallback(value, inputElement);
} else {
copyText(value?.toString());
}
},
},
DefaultCopyIcon,
);
// ================== Addon ================== //
if (hasAddon(props)) {
const wrapperCls = `${prefixCls}-group`;
const addonCls = `${wrapperCls}-addon`;
const mergedWrapperClassName = clsx(
`${prefixCls}-wrapper`,
wrapperCls,
classes?.wrapper,
);
const mergedGroupClassName = clsx(
`${prefixCls}-group-wrapper`,
className,
classes?.group,
);
// Need another wrapper for changing display:table to display:inline-block
// and put style prop in wrapper
return (
<span className={mergedGroupClassName} style={style} hidden={hidden}>
<span className={mergedWrapperClassName}>
{addonBefore && <span className={addonCls}>{addonBefore}</span>}
{cloneElement(element, {
hidden: null,
})}
{addonAfter && <span className={addonCls}>{addonAfter}</span>}
{allowCopy ? CopyIcon : null}
</span>
</span>
);
}
return (
<>
{CopyIcon ? (
<div
style={{ display: 'flex', alignItems: 'center', ...(style || {}) }}
>
{element}
{allowCopy ? CopyIcon : null}
</div>
) : (
element
)}
</>
);
};
export default BaseInput;