mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-15 15:45:27 +03:00
163 lines
5.0 KiB
TypeScript
163 lines
5.0 KiB
TypeScript
import { useCallback, useState } from "react";
|
|
import TimeAgo from "../dynamic/TimeAgo";
|
|
import useSWR from "swr";
|
|
import { FrigateConfig } from "@/types/frigateConfig";
|
|
import { useFormattedTimestamp } from "@/hooks/use-date-utils";
|
|
import { Tooltip, TooltipContent, TooltipTrigger } from "../ui/tooltip";
|
|
import ActivityIndicator from "../indicators/activity-indicator";
|
|
import { SearchResult } from "@/types/search";
|
|
import {
|
|
DropdownMenu,
|
|
DropdownMenuContent,
|
|
DropdownMenuItem,
|
|
DropdownMenuTrigger,
|
|
} from "@/components/ui/dropdown-menu";
|
|
import {
|
|
LuCamera,
|
|
LuDownload,
|
|
LuMoreVertical,
|
|
LuSearch,
|
|
LuTrash2,
|
|
} from "react-icons/lu";
|
|
import FrigatePlusIcon from "@/components/icons/FrigatePlusIcon";
|
|
import { FrigatePlusDialog } from "../overlay/dialog/FrigatePlusDialog";
|
|
import { Event } from "@/types/event";
|
|
import { FaArrowsRotate } from "react-icons/fa6";
|
|
import { baseUrl } from "@/api/baseUrl";
|
|
import axios from "axios";
|
|
import { toast } from "sonner";
|
|
|
|
type SearchThumbnailProps = {
|
|
searchResult: SearchResult;
|
|
findSimilar: () => void;
|
|
refreshResults: () => void;
|
|
};
|
|
|
|
export default function SearchThumbnailFooter({
|
|
searchResult,
|
|
findSimilar,
|
|
refreshResults,
|
|
}: SearchThumbnailProps) {
|
|
const { data: config } = useSWR<FrigateConfig>("config");
|
|
|
|
// interactions
|
|
|
|
const [showFrigatePlus, setShowFrigatePlus] = useState(false);
|
|
|
|
const handleDelete = useCallback(() => {
|
|
axios
|
|
.delete(`events/${searchResult.id}`)
|
|
.then((resp) => {
|
|
if (resp.status == 200) {
|
|
toast.success("Deleted object successfully.", {
|
|
position: "top-center",
|
|
});
|
|
refreshResults();
|
|
}
|
|
})
|
|
.catch(() => {
|
|
toast.error("Failed to delete object.", {
|
|
position: "top-center",
|
|
});
|
|
});
|
|
}, [searchResult, refreshResults]);
|
|
|
|
// date
|
|
|
|
const formattedDate = useFormattedTimestamp(
|
|
searchResult.start_time,
|
|
config?.ui.time_format == "24hour" ? "%b %-d, %H:%M" : "%b %-d, %I:%M %p",
|
|
config?.ui.timezone,
|
|
);
|
|
|
|
return (
|
|
<>
|
|
<FrigatePlusDialog
|
|
upload={
|
|
showFrigatePlus ? (searchResult as unknown as Event) : undefined
|
|
}
|
|
onClose={() => setShowFrigatePlus(false)}
|
|
onEventUploaded={() => {}}
|
|
/>
|
|
|
|
<div className="flex flex-col items-start">
|
|
{searchResult.end_time ? (
|
|
<TimeAgo time={searchResult.start_time * 1000} dense />
|
|
) : (
|
|
<div>
|
|
<ActivityIndicator size={24} />
|
|
</div>
|
|
)}
|
|
{formattedDate}
|
|
</div>
|
|
<div className="flex flex-row items-center justify-end gap-4">
|
|
{config?.plus?.enabled &&
|
|
searchResult.has_snapshot &&
|
|
searchResult.end_time && (
|
|
<Tooltip>
|
|
<TooltipTrigger>
|
|
<FrigatePlusIcon
|
|
className="size-5 cursor-pointer text-primary"
|
|
onClick={() => setShowFrigatePlus(true)}
|
|
/>
|
|
</TooltipTrigger>
|
|
<TooltipContent>Submit to Frigate+</TooltipContent>
|
|
</Tooltip>
|
|
)}
|
|
|
|
{config?.semantic_search?.enabled && (
|
|
<Tooltip>
|
|
<TooltipTrigger>
|
|
<LuSearch
|
|
className="size-5 cursor-pointer text-primary"
|
|
onClick={findSimilar}
|
|
/>
|
|
</TooltipTrigger>
|
|
<TooltipContent>Find similar</TooltipContent>
|
|
</Tooltip>
|
|
)}
|
|
|
|
<DropdownMenu>
|
|
<DropdownMenuTrigger>
|
|
<LuMoreVertical className="size-5 cursor-pointer text-primary" />
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent>
|
|
{searchResult.has_clip && (
|
|
<DropdownMenuItem>
|
|
<a
|
|
className="justify_start flex items-center"
|
|
href={`${baseUrl}api/events/${searchResult.id}/clip.mp4`}
|
|
download={`${searchResult.camera}_${searchResult.label}.mp4`}
|
|
>
|
|
<LuDownload className="mr-2 size-4" />
|
|
<span>Download video</span>
|
|
</a>
|
|
</DropdownMenuItem>
|
|
)}
|
|
{searchResult.has_snapshot && (
|
|
<DropdownMenuItem>
|
|
<a
|
|
className="justify_start flex items-center"
|
|
href={`${baseUrl}api/events/${searchResult.id}/snapshot.jpg`}
|
|
download={`${searchResult.camera}_${searchResult.label}.jpg`}
|
|
>
|
|
<LuCamera className="mr-2 size-4" />
|
|
<span>Download snapshot</span>
|
|
</a>
|
|
</DropdownMenuItem>
|
|
)}
|
|
<DropdownMenuItem>
|
|
<FaArrowsRotate className="mr-2 size-4" />
|
|
<span>View object lifecycle</span>
|
|
</DropdownMenuItem>
|
|
<DropdownMenuItem onClick={handleDelete}>
|
|
<LuTrash2 className="mr-2 size-4" />
|
|
<span>Delete</span>
|
|
</DropdownMenuItem>
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
</div>
|
|
</>
|
|
);
|
|
}
|