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
|
import {
FormControl, InputLabel, MenuItem, Select,
} from '@mui/material';
import React, { useState } from 'react';
import { useEffectAsync } from '../../reactHelper';
const SelectField = ({
label,
fullWidth,
multiple,
value,
emptyValue = 0,
emptyTitle = '\u00a0',
onChange,
endpoint,
data,
keyGetter = (item) => item.id,
titleGetter = (item) => item.name,
}) => {
const [items, setItems] = useState(data);
useEffectAsync(async () => {
if (endpoint) {
const response = await fetch(endpoint);
if (response.ok) {
setItems(await response.json());
} else {
throw Error(await response.text());
}
}
}, []);
if (items) {
return (
<FormControl fullWidth={fullWidth}>
<InputLabel>{label}</InputLabel>
<Select
label={label}
multiple={multiple}
value={value}
onChange={onChange}
>
{!multiple && emptyValue !== null && (
<MenuItem value={emptyValue}>{emptyTitle}</MenuItem>
)}
{items.map((item) => (
<MenuItem key={keyGetter(item)} value={keyGetter(item)}>{titleGetter(item)}</MenuItem>
))}
</Select>
</FormControl>
);
}
return null;
};
export default SelectField;
|