mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-08 20:25:26 +03:00
* Break out live page * Improving layouts and add chip component * Improve default camera player sizing * Improve live updating * Cleanup and fit figma * Use fixed height * Masonry layout * Fix stuff * Don't force heights * Adjust scaling * Cleanup * remove sidebar (#9731) * remove sidebar * keep sidebar on mobile for now and add icons * Fix revalidation * Cleanup * Cleanup width * Add chips for activity on cameras * Remove dashboard from header * Use Inter font (#9735) * Show still image when no activity is occurring * remove unused search params * add playing check for webrtc * Don't use grid at all for single column * Fix height on mobile * a few style updates to better match figma (#9745) * Remove active objects when they become stationary * Move to sidebar only and make settings separate component * Fix layout * Animate visibility of chips * Sidebar is full screen * Fix tall aspect ratio cameras * Fix complicated aspect logic * remove * Adjust thumbnail aspect and add text * margin on single column layout * Smaller event thumb text * Simplify basic image view * Only show the red dot when camera is recording * Improve typing for camera toggles * animate chips with react-transition-group (#9763) * don't flash when going to still image * revalidate * tooltips and active tracking outline (#9766) * tooltips * fix tooltip provider and add active tracking outline * remove unused icon * remove figma comment * Get live mode working for jsmpeg * add small gradient below timeago on event thumbnails (#9767) * Create live mode hook and make sure jsmpeg can be used * Enforce env var * Use print * Remove unstable * Add tooltips to thumbnails * Put back vite * Format * Update web/src/components/player/JSMpegPlayer.tsx --------- Co-authored-by: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Co-authored-by: Blake Blackshear <blake@frigate.video>
103 lines
2.9 KiB
TypeScript
103 lines
2.9 KiB
TypeScript
import { EventThumbnail } from "@/components/image/EventThumbnail";
|
|
import LivePlayer from "@/components/player/LivePlayer";
|
|
import { ScrollArea, ScrollBar } from "@/components/ui/scroll-area";
|
|
import { TooltipProvider } from "@/components/ui/tooltip";
|
|
import { Event as FrigateEvent } from "@/types/event";
|
|
import { FrigateConfig } from "@/types/frigateConfig";
|
|
import axios from "axios";
|
|
import { useCallback, useMemo } from "react";
|
|
import useSWR from "swr";
|
|
|
|
function Live() {
|
|
const { data: config } = useSWR<FrigateConfig>("config");
|
|
|
|
// recent events
|
|
|
|
const { data: allEvents, mutate: updateEvents } = useSWR<FrigateEvent[]>(
|
|
["events", { limit: 10 }],
|
|
{ refreshInterval: 60000 }
|
|
);
|
|
|
|
const events = useMemo(() => {
|
|
if (!allEvents) {
|
|
return [];
|
|
}
|
|
|
|
const date = new Date();
|
|
date.setHours(date.getHours() - 1);
|
|
const cutoff = date.getTime() / 1000;
|
|
return allEvents.filter((event) => event.start_time > cutoff);
|
|
}, [allEvents]);
|
|
|
|
const onFavorite = useCallback(async (e: Event, event: FrigateEvent) => {
|
|
e.stopPropagation();
|
|
let response;
|
|
if (!event.retain_indefinitely) {
|
|
response = await axios.post(`events/${event.id}/retain`);
|
|
} else {
|
|
response = await axios.delete(`events/${event.id}/retain`);
|
|
}
|
|
if (response.status === 200) {
|
|
updateEvents();
|
|
}
|
|
}, []);
|
|
|
|
// camera live views
|
|
|
|
const cameras = useMemo(() => {
|
|
if (!config) {
|
|
return [];
|
|
}
|
|
|
|
return Object.values(config.cameras)
|
|
.filter((conf) => conf.ui.dashboard && conf.enabled)
|
|
.sort((aConf, bConf) => aConf.ui.order - bConf.ui.order);
|
|
}, [config]);
|
|
|
|
return (
|
|
<>
|
|
{events && events.length > 0 && (
|
|
<ScrollArea>
|
|
<TooltipProvider>
|
|
<div className="flex">
|
|
{events.map((event) => {
|
|
return (
|
|
<EventThumbnail
|
|
key={event.id}
|
|
event={event}
|
|
onFavorite={onFavorite}
|
|
/>
|
|
);
|
|
})}
|
|
</div>
|
|
</TooltipProvider>
|
|
<ScrollBar orientation="horizontal" />
|
|
</ScrollArea>
|
|
)}
|
|
|
|
<div className="mt-4 md:grid md:grid-cols-2 xl:grid-cols-3 3xl:grid-cols-4 gap-4">
|
|
{cameras.map((camera) => {
|
|
let grow;
|
|
if (camera.detect.width / camera.detect.height > 2) {
|
|
grow = "aspect-wide md:col-span-2";
|
|
} else if (camera.detect.width / camera.detect.height < 1) {
|
|
grow = "aspect-tall md:aspect-auto md:row-span-2";
|
|
} else {
|
|
grow = "aspect-video";
|
|
}
|
|
return (
|
|
<LivePlayer
|
|
key={camera.name}
|
|
className={`mb-2 md:mb-0 rounded-2xl bg-black ${grow}`}
|
|
cameraConfig={camera}
|
|
preferredLiveMode="mse"
|
|
/>
|
|
);
|
|
})}
|
|
</div>
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default Live;
|