-
Notifications
You must be signed in to change notification settings - Fork 145
Expand file tree
/
Copy pathAutocompleteInput.tsx
More file actions
283 lines (253 loc) · 7.56 KB
/
Copy pathAutocompleteInput.tsx
File metadata and controls
283 lines (253 loc) · 7.56 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
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
import React, { useRef, useEffect } from 'react'
import classNames from 'classnames'
import { Input, InputSearch } from 'vtex.styleguide'
import { ExtensionPoint, useChildBlock } from 'vtex.render-runtime'
import { IconSearch, IconClose } from 'vtex.store-icons'
import type { DownshiftProps } from 'downshift'
import { useIntl } from 'react-intl'
import { useSearchBarCssHandles } from './SearchBarCssHandles'
const DISPLAY_MODES = [
'clear-button',
'search-and-clear-buttons',
'search-button',
]
/** Midleware component to adapt the styleguide/Input to be used by the Downshift */
export const CSS_HANDLES = [
'autoCompleteOuterContainer',
'compactMode',
'externalSearchButtonWrapper',
'paddingInput',
'searchBarClearIcon',
'searchBarIcon',
'searchBarSearchIcon',
'suffixWrapper',
] as const
const CloseIcon = () => {
const hasIconBlock = Boolean(useChildBlock({ id: 'icon-close' }))
if (hasIconBlock) {
return <ExtensionPoint id="icon-close" size={16} type="line" />
}
return <IconClose type="line" size={16} />
}
const SearchIcon = () => {
const hasIconBlock = Boolean(useChildBlock({ id: 'icon-search' }))
if (hasIconBlock) {
return <ExtensionPoint id="icon-search" />
}
return <IconSearch />
}
interface Props {
/** Downshift prop to be passed to the input */
autoComplete?: string
/** Input ID */
id?: string
/** Downshift prop to be passed to the input */
onBlur?: () => void
/** Downshift prop to be passed to the input */
onChange?: DownshiftProps<any>['onChange']
/** Downshift prop to be passed to the input */
onKeyDown?: (event: any) => void
/** Downshift prop to be passed to the input */
value?: string
/** Downshift func to open the menu */
openMenu?: () => void
/** Placeholder to be used on the input */
placeholder?: string
compactMode?: boolean
/** Clears the input */
onClearInput: () => void
/** Identify if the search icon is on left or right position */
hasIconLeft?: boolean
/** Custom classes for the search icon */
iconClasses?: string
/** Block class for the search icon */
iconBlockClass?: string
/** Identify if the search input should autofocus or not */
autoFocus?: boolean
/** Function to direct the user to the searchPage */
onGoToSearchPage: () => void
/**
* @deprecated Use `displayMode`
* Identify if icon should submit on click
* */
submitOnIconClick?: boolean
/* Define the input display mode */
displayMode?: 'clear-button' | 'search-and-clear-buttons' | 'search-button'
/** Error message showed in search input */
inputErrorMessage?: string
/** The type of the search input */
inputType?: 'text' | 'search'
openAutocompleteOnFocus?: boolean
onInputChange: DownshiftProps<any>['onChange']
inputValue: string
}
function AutocompleteInput({
onClearInput,
compactMode,
value,
hasIconLeft,
iconBlockClass,
iconClasses,
autoFocus,
onGoToSearchPage,
submitOnIconClick,
displayMode = 'clear-button',
openMenu,
inputErrorMessage,
inputType = 'text',
openAutocompleteOnFocus,
...restProps
}: Props) {
const { handles, withModifiers } = useSearchBarCssHandles()
const inputRef = useRef<HTMLInputElement>(null)
const intl = useIntl()
let dMode = displayMode
if (DISPLAY_MODES.indexOf(dMode) < 0) {
console.error(
`[store-components/search-bar] Invalid displayMode '${displayMode}'. The valid options are: ${DISPLAY_MODES.join(
', '
)}`
)
}
// for backward compatibility
if (submitOnIconClick === true) {
dMode = 'search-button'
} else if (submitOnIconClick === false) {
dMode = 'clear-button'
}
useEffect(() => {
const changeClassInput = () => {
// eslint-disable-next-line vtex/prefer-early-return
if (compactMode && inputRef.current) {
inputRef.current.placeholder = ''
inputRef.current.classList.add(handles.paddingInput)
}
}
changeClassInput()
if (autoFocus) inputRef.current?.focus()
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [])
const hasValue = value != null && value.length > 0
const showClearButton =
(dMode === 'clear-button' && hasValue) ||
dMode === 'search-and-clear-buttons'
const showInternalSearchButton =
(dMode === 'clear-button' && !hasValue) || dMode === 'search-button'
const showExternalSearchButton = dMode === 'search-and-clear-buttons'
const clearButton = showClearButton && (
<button
className={`${iconClasses ?? ''} ${withModifiers(
'searchBarIcon',
'clear'
)} flex items-center pointer bn bg-transparent outline-0 pv0 pl0 pr3`}
style={{
visibility: hasValue ? 'visible' : 'hidden',
}}
aria-label={intl.formatMessage({
id: 'store/search.clear-input',
})}
onClick={() => onClearInput()}
>
<CloseIcon />
</button>
)
const internalSearchButton = showInternalSearchButton && (
<button
className={`${iconClasses ?? ''} ${withModifiers(
'searchBarIcon',
'search'
)} flex items-center pointer bn bg-transparent outline-0 pv0 pl0 pr3`}
onClick={() => hasValue && onGoToSearchPage()}
aria-label={intl.formatMessage({
id: 'store/search.submit-search',
})}
>
<SearchIcon />
</button>
)
const externalSearchButton = showExternalSearchButton && (
<div
className={`${handles.externalSearchButtonWrapper} bw1 bl b--muted-4 flex items-center `}
>
<button
className={`${iconClasses ?? ''} ${withModifiers(
'searchBarIcon',
'external-search'
)} flex items-center h-100 pointer pv0 nr5 ph5 bn c-link`}
onClick={onGoToSearchPage}
aria-label={intl.formatMessage({
id: 'store/search.submit-search',
})}
>
<SearchIcon />
</button>
</div>
)
const suffix = (
<div className={`${handles.suffixWrapper} flex h-100`}>
{clearButton}
{internalSearchButton}
{externalSearchButton}
</div>
)
const prefix = (
<span
className={`${iconClasses} ${withModifiers('searchBarIcon', 'prefix')} `}
>
<SearchIcon />
</span>
)
const classContainer = classNames('w-100 flex', {
[handles.compactMode]: compactMode,
})
if (inputType === 'search') {
// <form> tag is needed for iOS:
// https://stackoverflow.com/a/26287843
return (
<form
action="#"
onSubmit={e => {
e.preventDefault()
e.stopPropagation()
e.nativeEvent.stopImmediatePropagation()
}}
className={handles.autoCompleteOuterContainer}
>
<div className={classContainer}>
<InputSearch
ref={inputRef}
size="large"
value={value}
{...restProps}
error={Boolean(inputErrorMessage)}
errorMessage={inputErrorMessage}
onSubmit={onGoToSearchPage}
aria-label={intl.formatMessage({
id: 'store/search.autocompleteInput.aria-label',
})}
/>
</div>
</form>
)
}
return (
<div className={handles.autoCompleteOuterContainer}>
<div className={classContainer}>
<Input
ref={inputRef}
size="large"
value={value}
prefix={hasIconLeft && prefix}
suffix={suffix}
{...restProps}
error={Boolean(inputErrorMessage)}
errorMessage={inputErrorMessage}
aria-label={intl.formatMessage({
id: 'store/search.autocompleteInput.aria-label',
})}
/>
</div>
</div>
)
}
export default AutocompleteInput