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
49import * as React from 'react';
import { SelectInput, useField } from 'payload/components/forms';
export const CustomSelectComponent: React.FC<{ path: string }> = ({ path }) => {
const { value, setValue } = useField<string>({ path });
const [options, setOptions] = React.useState([]);
// Fetch options on component mount
React.useEffect(() => {
const fetchOptions = async () => {
try {
const response = await fetch('https://restcountries.com/v3.1/all');
const data = await response.json();
const countryOptions = data.map((country) => {
return {
label: `${country.name.common + ' ' + country.flag}`,
value: country.name.common,
};
});
setOptions(countryOptions.sort(
(a, b) => a.label.localeCompare(b.label)
));
} catch (error) {
console.error('Error fetching data:', error);
}
};
fetchOptions();
}, []);
return (
<div>
<label className='field-label'>
Custom Select
</label>
<SelectInput
path={path}
name={path}
options={options}
value={value}
onChange={(e) => setValue(e.value)}
/>
</div>
)
};