forked from Github/frigate
* fix warning * Improve event switching speed * Fix icon colors * Only show frigate+ page when frigate+ is enabled * Add link from reecordings to live as well
69 lines
2.0 KiB
TypeScript
69 lines
2.0 KiB
TypeScript
import NavItem from "./NavItem";
|
|
import { IoIosWarning } from "react-icons/io";
|
|
import { Drawer, DrawerContent, DrawerTrigger } from "../ui/drawer";
|
|
import useSWR from "swr";
|
|
import { FrigateStats } from "@/types/stats";
|
|
import { useFrigateStats } from "@/api/ws";
|
|
import { useMemo } from "react";
|
|
import useStats from "@/hooks/use-stats";
|
|
import GeneralSettings from "../settings/GeneralSettings";
|
|
import AccountSettings from "../settings/AccountSettings";
|
|
import useNavigation from "@/hooks/use-navigation";
|
|
|
|
function Bottombar() {
|
|
const navItems = useNavigation("secondary");
|
|
|
|
return (
|
|
<div className="absolute h-16 inset-x-4 bottom-0 flex flex-row items-center justify-between">
|
|
{navItems.map((item) => (
|
|
<NavItem key={item.id} item={item} Icon={item.icon} />
|
|
))}
|
|
<GeneralSettings />
|
|
<AccountSettings />
|
|
<StatusAlertNav />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function StatusAlertNav() {
|
|
const { data: initialStats } = useSWR<FrigateStats>("stats", {
|
|
revalidateOnFocus: false,
|
|
});
|
|
const { payload: latestStats } = useFrigateStats();
|
|
const stats = useMemo(() => {
|
|
if (latestStats) {
|
|
return latestStats;
|
|
}
|
|
|
|
return initialStats;
|
|
}, [initialStats, latestStats]);
|
|
const { potentialProblems } = useStats(stats);
|
|
|
|
if (!potentialProblems || potentialProblems.length == 0) {
|
|
return;
|
|
}
|
|
|
|
return (
|
|
<Drawer>
|
|
<DrawerTrigger>
|
|
<IoIosWarning className="size-5 text-danger" />
|
|
</DrawerTrigger>
|
|
<DrawerContent className="max-h-[75dvh] px-2 mx-1 rounded-t-2xl overflow-hidden">
|
|
<div className="w-full h-auto py-4 overflow-y-auto overflow-x-hidden flex flex-col items-center gap-2">
|
|
{potentialProblems.map((prob) => (
|
|
<div
|
|
key={prob.text}
|
|
className="w-full flex items-center text-xs gap-2 capitalize"
|
|
>
|
|
<IoIosWarning className={`size-5 ${prob.color}`} />
|
|
{prob.text}
|
|
</div>
|
|
))}
|
|
</div>
|
|
</DrawerContent>
|
|
</Drawer>
|
|
);
|
|
}
|
|
|
|
export default Bottombar;
|