mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-21 19:07:46 +01:00
46 lines
1.5 KiB
JavaScript
46 lines
1.5 KiB
JavaScript
import { h, Fragment } from 'preact';
|
|
import LinkedLogo from './components/LinkedLogo';
|
|
import { Match } from 'preact-router/match';
|
|
import { memo } from 'preact/compat';
|
|
import { useConfig } from './api';
|
|
import NavigationDrawer, { Destination, Separator } from './components/NavigationDrawer';
|
|
import { useCallback, useMemo } from 'preact/hooks';
|
|
|
|
export default function Sidebar() {
|
|
const { data: config } = useConfig();
|
|
const cameras = useMemo(() => Object.keys(config.cameras), [config]);
|
|
|
|
return (
|
|
<NavigationDrawer header={<Header />}>
|
|
<Destination href="/" text="Cameras" />
|
|
<Match path="/cameras/:camera">
|
|
{({ matches }) =>
|
|
matches ? (
|
|
<Fragment>
|
|
<Separator />
|
|
{cameras.map((camera) => (
|
|
<Destination href={`/cameras/${camera}`} text={camera} />
|
|
))}
|
|
<Separator />
|
|
</Fragment>
|
|
) : null
|
|
}
|
|
</Match>
|
|
<Destination href="/events" text="Events" />
|
|
<Destination href="/debug" text="Debug" />
|
|
<Separator />
|
|
<div className="flex flex-grow" />
|
|
<Destination className="self-end" href="https://blakeblackshear.github.io/frigate" text="Documentation" />
|
|
<Destination className="self-end" href="https://github.com/blakeblackshear/frigate" text="GitHub" />
|
|
</NavigationDrawer>
|
|
);
|
|
}
|
|
|
|
const Header = memo(function Header() {
|
|
return (
|
|
<div class="text-gray-500">
|
|
<LinkedLogo />
|
|
</div>
|
|
);
|
|
});
|