2023-10-31 14:55:15 +00:00
|
|
|
import DeleteIcon from "@mui/icons-material/Delete";
|
|
|
|
import VisibilityIcon from "@mui/icons-material/Visibility";
|
|
|
|
import {
|
|
|
|
Button,
|
|
|
|
IconButton,
|
|
|
|
Paper,
|
|
|
|
Table,
|
|
|
|
TableBody,
|
|
|
|
TableCell,
|
|
|
|
TableContainer,
|
|
|
|
TableHead,
|
|
|
|
TableRow,
|
|
|
|
Typography,
|
|
|
|
} from "@mui/material";
|
|
|
|
import React from "react";
|
|
|
|
import { NetworkApi, NetworkInfo, NetworkURL } from "../api/NetworksApi";
|
|
|
|
import { AsyncWidget } from "../widgets/AsyncWidget";
|
|
|
|
import { RouterLink } from "../widgets/RouterLink";
|
|
|
|
import { VirtWebRouteContainer } from "../widgets/VirtWebRouteContainer";
|
2023-12-06 14:30:30 +00:00
|
|
|
import { NetworkStatusWidget } from "../widgets/net/NetworkStatusWidget";
|
2023-12-12 00:35:44 +00:00
|
|
|
import { useNavigate } from "react-router-dom";
|
2024-01-11 18:02:47 +00:00
|
|
|
import { NetworkHookStatusWidget } from "../widgets/net/NetworkHookStatusWidget";
|
2023-10-31 14:55:15 +00:00
|
|
|
|
|
|
|
export function NetworksListRoute(): React.ReactElement {
|
|
|
|
const [list, setList] = React.useState<NetworkInfo[] | undefined>();
|
|
|
|
|
2024-01-02 22:40:38 +00:00
|
|
|
const [count] = React.useState(1);
|
2023-10-31 14:55:15 +00:00
|
|
|
|
|
|
|
const load = async () => {
|
|
|
|
setList(await NetworkApi.GetList());
|
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
|
|
|
<AsyncWidget
|
|
|
|
loadKey={count}
|
|
|
|
load={load}
|
|
|
|
ready={list !== undefined}
|
|
|
|
errMsg="Failed to load the list of networks!"
|
2024-01-02 22:40:38 +00:00
|
|
|
build={() => <NetworksListRouteInner list={list!} />}
|
2023-10-31 14:55:15 +00:00
|
|
|
/>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
function NetworksListRouteInner(p: {
|
|
|
|
list: NetworkInfo[];
|
|
|
|
}): React.ReactElement {
|
2023-12-12 00:35:44 +00:00
|
|
|
const navigate = useNavigate();
|
|
|
|
|
2023-10-31 14:55:15 +00:00
|
|
|
return (
|
|
|
|
<VirtWebRouteContainer
|
|
|
|
label="Networks"
|
|
|
|
actions={
|
|
|
|
<RouterLink to="/net/new">
|
|
|
|
<Button>New</Button>
|
|
|
|
</RouterLink>
|
|
|
|
}
|
|
|
|
>
|
2024-01-11 18:02:47 +00:00
|
|
|
<NetworkHookStatusWidget hiddenIfInstalled />
|
|
|
|
|
2023-10-31 14:55:15 +00:00
|
|
|
<TableContainer component={Paper}>
|
|
|
|
<Table>
|
|
|
|
<TableHead>
|
|
|
|
<TableRow>
|
|
|
|
<TableCell>Name</TableCell>
|
|
|
|
<TableCell>Description</TableCell>
|
|
|
|
<TableCell>Network type</TableCell>
|
|
|
|
<TableCell>IP</TableCell>
|
2023-12-06 14:30:30 +00:00
|
|
|
<TableCell>State</TableCell>
|
2023-10-31 14:55:15 +00:00
|
|
|
<TableCell>Actions</TableCell>
|
|
|
|
</TableRow>
|
|
|
|
</TableHead>
|
|
|
|
<TableBody>
|
|
|
|
{p.list.map((t) => {
|
|
|
|
return (
|
2023-12-12 00:35:44 +00:00
|
|
|
<TableRow
|
|
|
|
key={t.uuid}
|
|
|
|
hover
|
|
|
|
onDoubleClick={() => navigate(NetworkURL(t))}
|
|
|
|
>
|
2023-10-31 14:55:15 +00:00
|
|
|
<TableCell>{t.name}</TableCell>
|
|
|
|
<TableCell>
|
|
|
|
{t.description ?? (
|
|
|
|
<Typography style={{ fontStyle: "italic" }}>
|
|
|
|
None
|
|
|
|
</Typography>
|
|
|
|
)}
|
|
|
|
</TableCell>
|
|
|
|
<TableCell>{t.forward_mode}</TableCell>
|
|
|
|
<TableCell>
|
|
|
|
{t.ip_v4 && "IPv4"} {t.ip_v6 && "IPv6"}
|
|
|
|
</TableCell>
|
2023-12-06 14:30:30 +00:00
|
|
|
<TableCell>
|
|
|
|
<NetworkStatusWidget net={t} />
|
|
|
|
</TableCell>
|
2023-10-31 14:55:15 +00:00
|
|
|
<TableCell>
|
|
|
|
<RouterLink to={NetworkURL(t)}>
|
|
|
|
<IconButton>
|
|
|
|
<VisibilityIcon />
|
|
|
|
</IconButton>
|
|
|
|
</RouterLink>
|
|
|
|
</TableCell>
|
|
|
|
</TableRow>
|
|
|
|
);
|
|
|
|
})}
|
|
|
|
</TableBody>
|
|
|
|
</Table>
|
|
|
|
</TableContainer>
|
|
|
|
</VirtWebRouteContainer>
|
|
|
|
);
|
|
|
|
}
|