-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPlaceKit.jsx
173 lines (160 loc) · 4.18 KB
/
PlaceKit.jsx
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
import PropTypes from 'prop-types';
import React, { forwardRef, useCallback, useEffect } from 'react';
import { usePlaceKit } from './usePlaceKit';
const PlaceKit = forwardRef(
(
{
apiKey,
className,
geolocation,
options,
onClient,
onOpen,
onClose,
onResults,
onPick,
onError,
onCountryChange,
onDirty,
onEmpty,
onFreeForm,
onGeolocation,
onCountryMode,
onState,
...inputProps
},
ref,
) => {
const { target, client, state } = usePlaceKit(apiKey, {
...options,
handlers: {
onOpen,
onClose,
onResults,
onPick,
onError,
onCountryChange,
onDirty,
onEmpty,
onFreeForm,
onGeolocation,
onCountryMode,
onState,
},
});
// update default value (only if untouched)
useEffect(() => {
if (client && !client.state.dirty) {
client.setValue(inputProps.defaultValue);
}
}, [inputProps.defaultValue, client]);
// forward ref from `target`
useEffect(() => {
if (target.current && ref) {
if (typeof ref === 'function') {
ref(target.current);
} else {
ref.current = target.current;
}
}
}, [target.current]);
// pass client to `onClient` when it updates
useEffect(() => {
if (onClient?.call) {
onClient(client);
}
}, [client, onClient]);
// toggle geolocation
const toggleGeolocation = useCallback(() => {
if (client) {
if (client.state.geolocation) {
client.clearGeolocation();
} else {
client.requestGeolocation();
}
}
}, [client]);
return (
<div className={['pka-input', className].filter((c) => c).join(' ')}>
{!!geolocation && (
<button
type="button"
className={['pka-input-geolocation', state.geolocation ? 'pka-enabled' : '']
.join(' ')
.trim()}
title="Activate geolocation"
role="switch"
aria-checked={state.geolocation}
onClick={toggleGeolocation}
disabled={inputProps.disabled}
>
<span className="pka-sr-only">Activate geolocation</span>
</button>
)}
<button
type="button"
className="pka-input-clear"
title="Clear value"
aria-hidden={state.empty}
onClick={client?.clear}
disabled={inputProps.disabled}
>
<span className="pka-sr-only">Clear value</span>
</button>
<input {...inputProps} type="search" ref={target} />
</div>
);
},
);
PlaceKit.defaultProps = {
geolocation: true,
options: {},
placeholder: 'Search places...',
};
PlaceKit.propTypes = {
// component options
geolocation: PropTypes.bool,
className: PropTypes.string,
// PlaceKit Autocomplete JS options
apiKey: PropTypes.string.isRequired,
options: PropTypes.shape({
panel: PropTypes.shape({
className: PropTypes.string,
offset: PropTypes.number,
strategy: PropTypes.oneOf(['absolute', 'fixed']),
flip: PropTypes.bool,
}),
format: PropTypes.shape({
flag: PropTypes.func,
icon: PropTypes.func,
sub: PropTypes.func,
noResults: PropTypes.func,
applySuggestion: PropTypes.string,
cancel: PropTypes.string,
}),
countryAutoFill: PropTypes.bool,
countrySelect: PropTypes.bool,
timeout: PropTypes.number,
maxResults: PropTypes.number,
types: PropTypes.arrayOf(PropTypes.string),
language: PropTypes.string,
countries: PropTypes.arrayOf(PropTypes.string),
coordinates: PropTypes.string,
}),
// event handlers
onClient: PropTypes.func,
onOpen: PropTypes.func,
onClose: PropTypes.func,
onResults: PropTypes.func,
onPick: PropTypes.func,
onError: PropTypes.func,
onDirty: PropTypes.func,
onEmpty: PropTypes.func,
onFreeForm: PropTypes.func,
onGeolocation: PropTypes.func,
onCountryMode: PropTypes.func,
onState: PropTypes.func,
onCountryChange: PropTypes.func,
// other HTML input props get forwarded
};
export default PlaceKit;