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
|
import React, { useState } from 'react';
import { useSelector } from 'react-redux';
import {
Typography, Container, Paper, AppBar, Toolbar, IconButton, Table, TableHead, TableRow, TableCell, TableBody,
} from '@mui/material';
import makeStyles from '@mui/styles/makeStyles';
import ArrowBackIcon from '@mui/icons-material/ArrowBack';
import { useNavigate, useParams } from 'react-router-dom';
import { useEffectAsync } from '../reactHelper';
import { prefixString } from '../common/util/stringUtils';
import { useTranslation } from '../common/components/LocalizationProvider';
import PositionValue from '../common/components/PositionValue';
const useStyles = makeStyles((theme) => ({
root: {
height: '100%',
display: 'flex',
flexDirection: 'column',
},
content: {
overflow: 'auto',
paddingTop: theme.spacing(2),
paddingBottom: theme.spacing(2),
},
}));
const PositionPage = () => {
const classes = useStyles();
const navigate = useNavigate();
const t = useTranslation();
const { id } = useParams();
const [item, setItem] = useState();
useEffectAsync(async () => {
if (id) {
const response = await fetch(`/api/positions?id=${id}`);
if (response.ok) {
const positions = await response.json();
if (positions.length > 0) {
setItem(positions[0]);
}
} else {
throw Error(await response.text());
}
}
}, [id]);
const deviceName = useSelector((state) => {
if (item) {
const device = state.devices.items[item.deviceId];
if (device) {
return device.name;
}
}
return null;
});
return (
<div className={classes.root}>
<AppBar position="sticky" color="inherit">
<Toolbar>
<IconButton color="inherit" edge="start" sx={{ mr: 2 }} onClick={() => navigate(-1)}>
<ArrowBackIcon />
</IconButton>
<Typography variant="h6">
{deviceName}
</Typography>
</Toolbar>
</AppBar>
<div className={classes.content}>
<Container maxWidth="sm">
<Paper>
<Table>
<TableHead>
<TableRow>
<TableCell>{t('stateName')}</TableCell>
<TableCell>{t('sharedName')}</TableCell>
<TableCell>{t('stateValue')}</TableCell>
</TableRow>
</TableHead>
<TableBody>
{item && Object.getOwnPropertyNames(item).filter((it) => it !== 'attributes').map((property) => (
<TableRow key={property}>
<TableCell>{property}</TableCell>
<TableCell><strong>{t(prefixString('position', property))}</strong></TableCell>
<TableCell><PositionValue position={item} property={property} /></TableCell>
</TableRow>
))}
{item && Object.getOwnPropertyNames(item.attributes).map((attribute) => (
<TableRow key={attribute}>
<TableCell>{attribute}</TableCell>
<TableCell><strong>{t(prefixString('position', attribute)) || t(prefixString('device', attribute))}</strong></TableCell>
<TableCell><PositionValue position={item} attribute={attribute} /></TableCell>
</TableRow>
))}
</TableBody>
</Table>
</Paper>
</Container>
</div>
</div>
);
};
export default PositionPage;
|