blakeblackshear.frigate/web/src/routes/Debug.jsx

111 lines
3.7 KiB
React
Raw Normal View History

2021-02-16 05:10:20 +01:00
import { h, Fragment } from 'preact';
2021-02-07 22:46:05 +01:00
import ActivityIndicator from '../components/ActivityIndicator';
import Button from '../components/Button';
import Heading from '../components/Heading';
import Link from '../components/Link';
2021-02-16 05:10:20 +01:00
import { useMqtt } from '../api/mqtt';
2022-02-26 20:11:00 +01:00
import useSWR from 'swr';
2021-02-07 22:46:05 +01:00
import { Table, Tbody, Thead, Tr, Th, Td } from '../components/Table';
2021-02-16 05:10:20 +01:00
import { useCallback } from 'preact/hooks';
2021-01-09 18:26:46 +01:00
const emptyObject = Object.freeze({});
2021-01-09 18:26:46 +01:00
export default function Debug() {
2022-02-26 20:11:00 +01:00
const { data: config } = useSWR('config');
2021-01-26 16:04:03 +01:00
2021-02-16 05:10:20 +01:00
const {
value: { payload: stats },
2021-02-16 05:10:20 +01:00
} = useMqtt('stats');
2022-02-26 20:11:00 +01:00
const { data: initialStats } = useSWR('stats');
2021-01-09 18:26:46 +01:00
2022-03-11 14:43:38 +01:00
const { detectors, service = {}, detection_fps: _, ...cameras } = stats || initialStats || emptyObject;
const detectorNames = Object.keys(detectors || emptyObject);
const detectorDataKeys = Object.keys(detectors ? detectors[detectorNames[0]] : emptyObject);
const cameraNames = Object.keys(cameras || emptyObject);
const cameraDataKeys = Object.keys(cameras[cameraNames[0]] || emptyObject);
const handleCopyConfig = useCallback(() => {
async function copy() {
await window.navigator.clipboard.writeText(JSON.stringify(config, null, 2));
}
copy();
}, [config]);
2021-02-16 05:10:20 +01:00
return (
2022-02-27 15:04:12 +01:00
<div className="space-y-4 p-2 px-4">
<Heading>
Debug <span className="text-sm">{service.version}</span>
</Heading>
2021-02-16 05:10:20 +01:00
{!detectors ? (
<div>
<ActivityIndicator />
</div>
) : (
<Fragment>
<div data-testid="detectors" className="min-w-0 overflow-auto">
<Table className="w-full">
<Thead>
<Tr>
<Th>detector</Th>
{detectorDataKeys.map((name) => (
2022-02-26 20:11:00 +01:00
<Th key={name}>{name.replace('_', ' ')}</Th>
2021-02-16 05:10:20 +01:00
))}
</Tr>
</Thead>
<Tbody>
{detectorNames.map((detector, i) => (
2022-02-26 20:11:00 +01:00
<Tr key={i} index={i}>
2021-02-16 05:10:20 +01:00
<Td>{detector}</Td>
{detectorDataKeys.map((name) => (
<Td key={`${name}-${detector}`}>{detectors[detector][name]}</Td>
))}
</Tr>
))}
2021-02-16 05:10:20 +01:00
</Tbody>
</Table>
</div>
2021-02-16 05:10:20 +01:00
<div data-testid="cameras" className="min-w-0 overflow-auto">
<Table className="w-full">
<Thead>
<Tr>
<Th>camera</Th>
{cameraDataKeys.map((name) => (
2022-02-26 20:11:00 +01:00
<Th key={name}>{name.replace('_', ' ')}</Th>
2021-02-16 05:10:20 +01:00
))}
</Tr>
</Thead>
<Tbody>
{cameraNames.map((camera, i) => (
2022-02-26 20:11:00 +01:00
<Tr key={i} index={i}>
2021-02-16 05:10:20 +01:00
<Td>
<Link href={`/cameras/${camera}`}>{camera.replaceAll('_', ' ')}</Link>
2021-02-16 05:10:20 +01:00
</Td>
{cameraDataKeys.map((name) => (
<Td key={`${name}-${camera}`}>{cameras[camera][name]}</Td>
))}
</Tr>
))}
2021-02-16 05:10:20 +01:00
</Tbody>
</Table>
</div>
<p>Debug stats update automatically every {config.mqtt.stats_interval} seconds.</p>
</Fragment>
)}
2021-02-02 05:28:25 +01:00
<div className="relative">
<Heading size="sm">Config</Heading>
2021-02-02 05:28:25 +01:00
<Button className="absolute top-8 right-4" onClick={handleCopyConfig}>
Copy to Clipboard
</Button>
<pre className="overflow-auto font-mono text-gray-900 dark:text-gray-100 rounded bg-gray-100 dark:bg-gray-800 p-2 max-h-96">
{JSON.stringify(config, null, 2)}
</pre>
2021-02-02 05:28:25 +01:00
</div>
</div>
);
2021-01-09 18:26:46 +01:00
}