mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-21 19:07:46 +01:00
Add filmstrip video/image toggle to general settings (#12608)
This commit is contained in:
parent
cea0596cf5
commit
81139e8f47
@ -11,6 +11,9 @@ import { VideoPreview } from "../player/PreviewThumbnailPlayer";
|
|||||||
import { isCurrentHour } from "@/utils/dateUtil";
|
import { isCurrentHour } from "@/utils/dateUtil";
|
||||||
import { useCameraPreviews } from "@/hooks/use-camera-previews";
|
import { useCameraPreviews } from "@/hooks/use-camera-previews";
|
||||||
import { baseUrl } from "@/api/baseUrl";
|
import { baseUrl } from "@/api/baseUrl";
|
||||||
|
import { useApiHost } from "@/api";
|
||||||
|
import { isSafari } from "react-device-detect";
|
||||||
|
import { usePersistence } from "@/hooks/use-persistence";
|
||||||
|
|
||||||
type AnimatedEventCardProps = {
|
type AnimatedEventCardProps = {
|
||||||
event: ReviewSegment;
|
event: ReviewSegment;
|
||||||
@ -21,6 +24,7 @@ export function AnimatedEventCard({
|
|||||||
selectedGroup,
|
selectedGroup,
|
||||||
}: AnimatedEventCardProps) {
|
}: AnimatedEventCardProps) {
|
||||||
const { data: config } = useSWR<FrigateConfig>("config");
|
const { data: config } = useSWR<FrigateConfig>("config");
|
||||||
|
const apiHost = useApiHost();
|
||||||
|
|
||||||
const currentHour = useMemo(() => isCurrentHour(event.start_time), [event]);
|
const currentHour = useMemo(() => isCurrentHour(event.start_time), [event]);
|
||||||
|
|
||||||
@ -76,6 +80,8 @@ export function AnimatedEventCard({
|
|||||||
|
|
||||||
// image behavior
|
// image behavior
|
||||||
|
|
||||||
|
const [alertVideos] = usePersistence("alertVideos", true);
|
||||||
|
|
||||||
const aspectRatio = useMemo(() => {
|
const aspectRatio = useMemo(() => {
|
||||||
if (!config || !Object.keys(config.cameras).includes(event.camera)) {
|
if (!config || !Object.keys(config.cameras).includes(event.camera)) {
|
||||||
return 16 / 9;
|
return 16 / 9;
|
||||||
@ -98,6 +104,14 @@ export function AnimatedEventCard({
|
|||||||
className="size-full cursor-pointer overflow-hidden rounded md:rounded-lg"
|
className="size-full cursor-pointer overflow-hidden rounded md:rounded-lg"
|
||||||
onClick={onOpenReview}
|
onClick={onOpenReview}
|
||||||
>
|
>
|
||||||
|
{!alertVideos ? (
|
||||||
|
<img
|
||||||
|
className="size-full select-none"
|
||||||
|
src={`${apiHost}${event.thumb_path.replace("/media/frigate/", "")}`}
|
||||||
|
loading={isSafari ? "eager" : "lazy"}
|
||||||
|
/>
|
||||||
|
) : (
|
||||||
|
<>
|
||||||
{previews ? (
|
{previews ? (
|
||||||
<VideoPreview
|
<VideoPreview
|
||||||
relevantPreview={previews[previews.length - 1]}
|
relevantPreview={previews[previews.length - 1]}
|
||||||
@ -125,6 +139,8 @@ export function AnimatedEventCard({
|
|||||||
/>
|
/>
|
||||||
</video>
|
</video>
|
||||||
)}
|
)}
|
||||||
|
</>
|
||||||
|
)}
|
||||||
</div>
|
</div>
|
||||||
<div className="absolute inset-x-0 bottom-0 h-6 rounded bg-gradient-to-t from-slate-900/50 to-transparent">
|
<div className="absolute inset-x-0 bottom-0 h-6 rounded bg-gradient-to-t from-slate-900/50 to-transparent">
|
||||||
<div className="absolute bottom-0 left-1 w-full text-xs text-white">
|
<div className="absolute bottom-0 left-1 w-full text-xs text-white">
|
||||||
|
@ -55,6 +55,7 @@ export default function GeneralSettingsView() {
|
|||||||
const [autoLive, setAutoLive] = usePersistence("autoLiveView", true);
|
const [autoLive, setAutoLive] = usePersistence("autoLiveView", true);
|
||||||
const [playbackRate, setPlaybackRate] = usePersistence("playbackRate", 1);
|
const [playbackRate, setPlaybackRate] = usePersistence("playbackRate", 1);
|
||||||
const [weekStartsOn, setWeekStartsOn] = usePersistence("weekStartsOn", 0);
|
const [weekStartsOn, setWeekStartsOn] = usePersistence("weekStartsOn", 0);
|
||||||
|
const [alertVideos, setAlertVideos] = usePersistence("alertVideos", true);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
@ -91,6 +92,25 @@ export default function GeneralSettingsView() {
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div className="space-y-3">
|
||||||
|
<div className="flex flex-row items-center justify-start gap-2">
|
||||||
|
<Switch
|
||||||
|
id="images-only"
|
||||||
|
checked={alertVideos}
|
||||||
|
onCheckedChange={setAlertVideos}
|
||||||
|
/>
|
||||||
|
<Label className="cursor-pointer" htmlFor="images-only">
|
||||||
|
Play Alert Videos
|
||||||
|
</Label>
|
||||||
|
</div>
|
||||||
|
<div className="my-2 text-sm text-muted-foreground">
|
||||||
|
<p>
|
||||||
|
By default, recent alerts on the Live dashboard play as small
|
||||||
|
looping videos. Disable this option to only show a static
|
||||||
|
image of recent alerts on this device/browser.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="my-3 flex w-full flex-col space-y-6">
|
<div className="my-3 flex w-full flex-col space-y-6">
|
||||||
|
Loading…
Reference in New Issue
Block a user