-
Notifications
You must be signed in to change notification settings - Fork 530
/
Copy pathSearchBox.tsx
237 lines (223 loc) · 6.26 KB
/
SearchBox.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
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
import { cx } from 'instantsearch-ui-components';
import React from 'react';
export type IconProps = {
classNames: Partial<SearchBoxClassNames>;
};
export type SearchBoxClassNames = {
/**
* Class names to apply to the root element
*/
root: string;
/**
* Class names to apply to the form element
*/
form: string;
/**
* Class names to apply to the input element
*/
input: string;
/**
* Class names to apply to the submit button
*/
submit: string;
/**
* Class names to apply to the reset button
*/
reset: string;
/**
* Class names to apply to the loading indicator element
*/
loadingIndicator: string;
/**
* Class names to apply to the submit icon
*/
submitIcon: string;
/**
* Class names to apply to the reset icon
*/
resetIcon: string;
/**
* Class names to apply to the loading icon
*/
loadingIcon: string;
};
export type SearchBoxTranslations = {
/**
* The alternative text of the submit button.
*/
submitButtonTitle: string;
/**
* The alternative text of the reset button.
*/
resetButtonTitle: string;
};
export type SearchBoxProps = Omit<
React.ComponentProps<'div'>,
'onSubmit' | 'onReset' | 'onChange'
> &
Pick<React.ComponentProps<'form'>, 'onSubmit'> &
Required<Pick<React.ComponentProps<'form'>, 'onReset'>> &
Pick<React.ComponentProps<'input'>, 'placeholder' | 'autoFocus'> & {
onChange?: (
event:
| React.ChangeEvent<HTMLInputElement>
| React.CompositionEvent<HTMLInputElement>
) => void;
formRef?: React.RefObject<HTMLFormElement>;
inputRef: React.RefObject<HTMLInputElement>;
isSearchStalled: boolean;
value: string;
resetIconComponent?: React.JSXElementConstructor<IconProps>;
submitIconComponent?: React.JSXElementConstructor<IconProps>;
loadingIconComponent?: React.JSXElementConstructor<IconProps>;
classNames?: Partial<SearchBoxClassNames>;
translations: SearchBoxTranslations;
};
function DefaultSubmitIcon({ classNames }: IconProps) {
return (
<svg
className={cx('ais-SearchBox-submitIcon', classNames.submitIcon)}
width="10"
height="10"
viewBox="0 0 40 40"
aria-hidden="true"
>
<path d="M26.804 29.01c-2.832 2.34-6.465 3.746-10.426 3.746C7.333 32.756 0 25.424 0 16.378 0 7.333 7.333 0 16.378 0c9.046 0 16.378 7.333 16.378 16.378 0 3.96-1.406 7.594-3.746 10.426l10.534 10.534c.607.607.61 1.59-.004 2.202-.61.61-1.597.61-2.202.004L26.804 29.01zm-10.426.627c7.323 0 13.26-5.936 13.26-13.26 0-7.32-5.937-13.257-13.26-13.257C9.056 3.12 3.12 9.056 3.12 16.378c0 7.323 5.936 13.26 13.258 13.26z"></path>
</svg>
);
}
function DefaultResetIcon({ classNames }: IconProps) {
return (
<svg
className={cx('ais-SearchBox-resetIcon', classNames.resetIcon)}
viewBox="0 0 20 20"
width="10"
height="10"
aria-hidden="true"
>
<path d="M8.114 10L.944 2.83 0 1.885 1.886 0l.943.943L10 8.113l7.17-7.17.944-.943L20 1.886l-.943.943-7.17 7.17 7.17 7.17.943.944L18.114 20l-.943-.943-7.17-7.17-7.17 7.17-.944.943L0 18.114l.943-.943L8.113 10z"></path>
</svg>
);
}
function DefaultLoadingIcon({ classNames }: IconProps) {
return (
<svg
aria-label="Results are loading"
width="16"
height="16"
viewBox="0 0 38 38"
stroke="#444"
className={cx('ais-SearchBox-loadingIcon', classNames.loadingIcon)}
aria-hidden="true"
>
<g fill="none" fillRule="evenodd">
<g transform="translate(1 1)" strokeWidth="2">
<circle strokeOpacity=".5" cx="18" cy="18" r="18" />
<path d="M36 18c0-9.94-8.06-18-18-18">
<animateTransform
attributeName="transform"
type="rotate"
from="0 18 18"
to="360 18 18"
dur="1s"
repeatCount="indefinite"
/>
</path>
</g>
</g>
</svg>
);
}
export function SearchBox({
formRef,
inputRef,
isSearchStalled,
onChange,
onReset,
onSubmit,
placeholder = '',
value,
autoFocus,
resetIconComponent: ResetIcon = DefaultResetIcon,
submitIconComponent: SubmitIcon = DefaultSubmitIcon,
loadingIconComponent: LoadingIcon = DefaultLoadingIcon,
classNames = {},
translations,
...props
}: SearchBoxProps) {
function handleSubmit(event: React.FormEvent<HTMLFormElement>) {
event.preventDefault();
event.stopPropagation();
if (onSubmit) {
onSubmit(event);
}
if (inputRef.current) {
inputRef.current.blur();
}
}
function handleReset(event: React.FormEvent<HTMLFormElement>) {
event.preventDefault();
event.stopPropagation();
onReset(event);
if (inputRef.current) {
inputRef.current.focus();
}
}
return (
<div
{...props}
className={cx('ais-SearchBox', classNames.root, props.className)}
>
<form
ref={formRef}
action=""
className={cx('ais-SearchBox-form', classNames.form)}
noValidate
onSubmit={handleSubmit}
onReset={handleReset}
role="search"
>
<input
ref={inputRef}
className={cx('ais-SearchBox-input', classNames.input)}
aria-label="Search"
autoComplete="off"
autoCorrect="off"
autoCapitalize="off"
placeholder={placeholder}
spellCheck={false}
maxLength={512}
type="search"
value={value}
onChange={onChange}
onCompositionEnd={onChange}
autoFocus={autoFocus}
/>
<button
className={cx('ais-SearchBox-submit', classNames.submit)}
type="submit"
title={translations.submitButtonTitle}
>
<SubmitIcon classNames={classNames} />
</button>
<button
className={cx('ais-SearchBox-reset', classNames.reset)}
type="reset"
title={translations.resetButtonTitle}
hidden={value.length === 0 || isSearchStalled}
>
<ResetIcon classNames={classNames} />
</button>
<span
className={cx(
'ais-SearchBox-loadingIndicator',
classNames.loadingIndicator
)}
hidden={!isSearchStalled}
>
<LoadingIcon classNames={classNames} />
</span>
</form>
</div>
);
}