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
|
import React, { useState } from 'react';
import TextField from '@material-ui/core/TextField';
import t from './common/localization';
import EditItemView from './EditItemView';
import { Accordion, AccordionSummary, AccordionDetails, makeStyles, Typography, FormControl, InputLabel, Select } from '@material-ui/core';
import ExpandMoreIcon from '@material-ui/icons/ExpandMore';
import { useEffectAsync } from './reactHelper';
const useStyles = makeStyles(() => ({
details: {
flexDirection: 'column',
},
}));
const deviceCategories = [
'default',
'animal',
'bicycle',
'boat',
'bus',
'car',
'crane',
'helicopter',
'motorcycle',
'offroad',
'person',
'pickup',
'plane',
'ship',
'tractor',
'train',
'tram',
'trolleybus',
'truck',
'van',
'scooter',
];
const DevicePage = () => {
const classes = useStyles();
const [item, setItem] = useState();
const [groups, setGroups] = useState();
useEffectAsync(async () => {
const response = await fetch('/api/groups');
if (response.ok) {
setGroups(await response.json());
}
}, []);
return (
<EditItemView endpoint="devices" setItem={setItem} getItem={() => item}>
{item &&
<>
<Accordion defaultExpanded>
<AccordionSummary expandIcon={<ExpandMoreIcon />}>
<Typography variant="subtitle1">
{t('sharedRequired')}
</Typography>
</AccordionSummary>
<AccordionDetails className={classes.details}>
<TextField
margin="normal"
defaultValue={item.name}
onChange={event => setItem({...item, name: event.target.value})}
label={t('sharedName')}
variant="filled" />
<TextField
margin="normal"
defaultValue={item.uniqueId}
onChange={event => setItem({...item, uniqueId: event.target.value})}
label={t('deviceIdentifier')}
variant="filled" />
</AccordionDetails>
</Accordion>
<Accordion>
<AccordionSummary expandIcon={<ExpandMoreIcon />}>
<Typography variant="subtitle1">
{t('sharedExtra')}
</Typography>
</AccordionSummary>
<AccordionDetails className={classes.details}>
{groups &&
<FormControl margin="normal" variant="filled">
<InputLabel>{t('groupParent')}</InputLabel>
<Select
native
defaultValue={item.groupId}
onChange={event => setItem({...item, groupId: Number(event.target.value)})}>
<option value={0}></option>
{groups.map(group => (
<option value={group.id}>{group.name}</option>
))}
</Select>
</FormControl>
}
<TextField
margin="normal"
defaultValue={item.phone}
onChange={event => setItem({...item, phone: event.target.value})}
label={t('sharedPhone')}
variant="filled" />
<TextField
margin="normal"
defaultValue={item.model}
onChange={event => setItem({...item, model: event.target.value})}
label={t('deviceModel')}
variant="filled" />
<TextField
margin="normal"
defaultValue={item.contact}
onChange={event => setItem({...item, contact: event.target.value})}
label={t('deviceContact')}
variant="filled" />
<FormControl margin="normal" variant="filled">
<InputLabel>{t('deviceCategory')}</InputLabel>
<Select
native
defaultValue={item.category}
onChange={event => setItem({...item, category: event.target.value})}>
{deviceCategories.map(category => (
<option value={category}>{t(`category${category.replace(/^\w/, c => c.toUpperCase())}`)}</option>
))}
</Select>
</FormControl>
</AccordionDetails>
</Accordion>
</>
}
</EditItemView>
);
}
export default DevicePage;
|