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
|
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';
const useStyles = makeStyles((theme) => ({
root: {
height: '100%',
display: 'flex',
flexDirection: 'column',
},
content: {
overflow: 'auto',
paddingTop: theme.spacing(2),
paddingBottom: theme.spacing(2),
display: 'flex',
flexDirection: 'column',
gap: theme.spacing(2),
},
}));
const NetworkPage = () => {
const classes = useStyles();
const navigate = useNavigate();
const { positionId } = useParams();
const [item, setItem] = useState({});
useEffectAsync(async () => {
if (positionId) {
const response = await fetch(`/api/positions?id=${positionId}`);
if (response.ok) {
const positions = await response.json();
if (positions.length > 0) {
setItem(positions[0]);
}
} else {
throw Error(await response.text());
}
}
}, [positionId]);
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>MCC</TableCell>
<TableCell>MNC</TableCell>
<TableCell>LAC</TableCell>
<TableCell>CID</TableCell>
</TableRow>
</TableHead>
<TableBody>
{(item.network?.cellTowers || []).map((cell) => (
<TableRow key={cell.cellId}>
<TableCell>{cell.mobileCountryCode}</TableCell>
<TableCell>{cell.mobileNetworkCode}</TableCell>
<TableCell>{cell.locationAreaCode}</TableCell>
<TableCell>{cell.cellId}</TableCell>
</TableRow>
))}
</TableBody>
</Table>
</Paper>
</Container>
<Container maxWidth="sm">
<Paper>
<Table>
<TableHead>
<TableRow>
<TableCell>MAC</TableCell>
<TableCell>RSSI</TableCell>
</TableRow>
</TableHead>
<TableBody>
{(item.network?.wifiAccessPoints || []).map((wifi) => (
<TableRow key={wifi.macAddress}>
<TableCell>{wifi.macAddress}</TableCell>
<TableCell>{wifi.signalStrength}</TableCell>
</TableRow>
))}
</TableBody>
</Table>
</Paper>
</Container>
</div>
</div>
);
};
export default NetworkPage;
|