mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-12-10 08:51:00 -06:00
* don't flatten the search result cache when updating this would cause an infinite swr fetch if something was mutated and then fetch was called again * Properly sort keys for recording summary in StorageMetrics * tracked object description box tweaks * Remove ability to right click on elements inside of face popup * Update reprocess message * don't show object track until video metadata is loaded * fix blue line height calc for in progress events * Use timeline tab by default for notifications but add a query arg for customization * Try and improve notification opening behavior * Reduce review item buffering behavior * ensure logging config is passed to camera capture and tracker processes * ensure on demand recording stops when browser closes * improve active line progress height with resize observer * remove icons and duplicate find similar link in explore context menu * fix for initial broken image when creating trigger from explore * display friendly names for triggers in toasts * lpr and triggers docs updates * remove icons from dropdowns in face and classification * fix comma dangle linter issue * re-add incorrectly removed face library button icons * fix sidebar nav links on < 768px desktop layout * allow text to wrap on mark as reviewed button * match exact pixels * clarify LPR docs --------- Co-authored-by: Nicolas Mowen <nickmowen213@gmail.com>
366 lines
11 KiB
TypeScript
366 lines
11 KiB
TypeScript
import { baseUrl } from "@/api/baseUrl";
|
|
import ClassificationModelWizardDialog from "@/components/classification/ClassificationModelWizardDialog";
|
|
import ClassificationModelEditDialog from "@/components/classification/ClassificationModelEditDialog";
|
|
import ActivityIndicator from "@/components/indicators/activity-indicator";
|
|
import { ImageShadowOverlay } from "@/components/overlay/ImageShadowOverlay";
|
|
import { Button, buttonVariants } from "@/components/ui/button";
|
|
import { ToggleGroup, ToggleGroupItem } from "@/components/ui/toggle-group";
|
|
import useOptimisticState from "@/hooks/use-optimistic-state";
|
|
import { cn } from "@/lib/utils";
|
|
import {
|
|
CustomClassificationModelConfig,
|
|
FrigateConfig,
|
|
} from "@/types/frigateConfig";
|
|
import { ClassificationDatasetResponse } from "@/types/classification";
|
|
import { useCallback, useEffect, useMemo, useState } from "react";
|
|
import { useTranslation } from "react-i18next";
|
|
import { FaFolderPlus } from "react-icons/fa";
|
|
import { MdModelTraining } from "react-icons/md";
|
|
import { FiMoreVertical } from "react-icons/fi";
|
|
import useSWR from "swr";
|
|
import Heading from "@/components/ui/heading";
|
|
import { useOverlayState } from "@/hooks/use-overlay-state";
|
|
import axios from "axios";
|
|
import { toast } from "sonner";
|
|
import {
|
|
DropdownMenu,
|
|
DropdownMenuContent,
|
|
DropdownMenuItem,
|
|
DropdownMenuTrigger,
|
|
} from "@/components/ui/dropdown-menu";
|
|
import {
|
|
AlertDialog,
|
|
AlertDialogAction,
|
|
AlertDialogCancel,
|
|
AlertDialogContent,
|
|
AlertDialogDescription,
|
|
AlertDialogFooter,
|
|
AlertDialogHeader,
|
|
AlertDialogTitle,
|
|
} from "@/components/ui/alert-dialog";
|
|
import BlurredIconButton from "@/components/button/BlurredIconButton";
|
|
|
|
const allModelTypes = ["objects", "states"] as const;
|
|
type ModelType = (typeof allModelTypes)[number];
|
|
|
|
type ModelSelectionViewProps = {
|
|
onClick: (model: CustomClassificationModelConfig) => void;
|
|
};
|
|
export default function ModelSelectionView({
|
|
onClick,
|
|
}: ModelSelectionViewProps) {
|
|
const { t } = useTranslation(["views/classificationModel"]);
|
|
const [page, setPage] = useOverlayState<ModelType>("objects", "objects");
|
|
const [pageToggle, setPageToggle] = useOptimisticState(
|
|
page || "objects",
|
|
setPage,
|
|
100,
|
|
);
|
|
const { data: config, mutate: refreshConfig } = useSWR<FrigateConfig>(
|
|
"config",
|
|
{
|
|
revalidateOnFocus: false,
|
|
},
|
|
);
|
|
|
|
// title
|
|
|
|
useEffect(() => {
|
|
document.title = t("documentTitle");
|
|
}, [t]);
|
|
|
|
// data
|
|
|
|
const classificationConfigs = useMemo(() => {
|
|
if (!config) {
|
|
return [];
|
|
}
|
|
|
|
return Object.values(config.classification.custom);
|
|
}, [config]);
|
|
|
|
const selectedClassificationConfigs = useMemo(() => {
|
|
return classificationConfigs.filter((model) => {
|
|
if (pageToggle == "objects" && model.object_config != undefined) {
|
|
return true;
|
|
}
|
|
|
|
if (pageToggle == "states" && model.state_config != undefined) {
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
});
|
|
}, [classificationConfigs, pageToggle]);
|
|
|
|
// new model wizard
|
|
|
|
const [newModel, setNewModel] = useState(false);
|
|
|
|
if (!config) {
|
|
return <ActivityIndicator />;
|
|
}
|
|
|
|
return (
|
|
<div className="flex size-full flex-col p-2">
|
|
<ClassificationModelWizardDialog
|
|
open={newModel}
|
|
defaultModelType={pageToggle === "objects" ? "object" : "state"}
|
|
onClose={() => {
|
|
setNewModel(false);
|
|
refreshConfig();
|
|
}}
|
|
/>
|
|
|
|
<div className="flex h-12 w-full items-center justify-between">
|
|
<div className="flex flex-row items-center">
|
|
<ToggleGroup
|
|
className="*:rounded-md *:px-3 *:py-4"
|
|
type="single"
|
|
size="sm"
|
|
value={pageToggle}
|
|
onValueChange={(value: ModelType) => {
|
|
if (value) {
|
|
setPageToggle(value);
|
|
}
|
|
}}
|
|
>
|
|
{allModelTypes.map((item) => (
|
|
<ToggleGroupItem
|
|
key={item}
|
|
className={`flex scroll-mx-10 items-center justify-between gap-2 ${pageToggle == item ? "" : "*:text-muted-foreground"}`}
|
|
value={item}
|
|
data-nav-item={item}
|
|
aria-label={t("selectItem", {
|
|
ns: "common",
|
|
item: t("menu." + item),
|
|
})}
|
|
>
|
|
<div className="smart-capitalize">{t("menu." + item)}</div>
|
|
</ToggleGroupItem>
|
|
))}
|
|
</ToggleGroup>
|
|
</div>
|
|
<div className="flex flex-row items-center">
|
|
<Button
|
|
className="flex flex-row items-center gap-2"
|
|
variant="select"
|
|
onClick={() => setNewModel(true)}
|
|
>
|
|
<FaFolderPlus />
|
|
{t("button.addClassification")}
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
{selectedClassificationConfigs.length === 0 ? (
|
|
<NoModelsView
|
|
onCreateModel={() => setNewModel(true)}
|
|
modelType={pageToggle}
|
|
/>
|
|
) : (
|
|
<div className="grid auto-rows-max grid-cols-2 gap-2 overflow-y-auto p-2 md:grid-cols-4 lg:grid-cols-5 xl:grid-cols-6 2xl:grid-cols-8 3xl:grid-cols-10">
|
|
{selectedClassificationConfigs.map((config) => (
|
|
<ModelCard
|
|
key={config.name}
|
|
config={config}
|
|
onClick={() => onClick(config)}
|
|
onUpdate={() => refreshConfig()}
|
|
onDelete={() => refreshConfig()}
|
|
/>
|
|
))}
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function NoModelsView({
|
|
onCreateModel,
|
|
modelType,
|
|
}: {
|
|
onCreateModel: () => void;
|
|
modelType: ModelType;
|
|
}) {
|
|
const { t } = useTranslation(["views/classificationModel"]);
|
|
const typeKey = modelType === "objects" ? "object" : "state";
|
|
|
|
return (
|
|
<div className="flex size-full items-center justify-center">
|
|
<div className="flex flex-col items-center gap-2">
|
|
<MdModelTraining className="size-8" />
|
|
<Heading as="h4">{t(`noModels.${typeKey}.title`)}</Heading>
|
|
<div className="mb-3 text-center text-secondary-foreground">
|
|
{t(`noModels.${typeKey}.description`)}
|
|
</div>
|
|
<Button size="sm" variant="select" onClick={onCreateModel}>
|
|
{t(`noModels.${typeKey}.buttonText`)}
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
type ModelCardProps = {
|
|
config: CustomClassificationModelConfig;
|
|
onClick: () => void;
|
|
onUpdate: () => void;
|
|
onDelete: () => void;
|
|
};
|
|
function ModelCard({ config, onClick, onUpdate, onDelete }: ModelCardProps) {
|
|
const { t } = useTranslation(["views/classificationModel"]);
|
|
|
|
const { data: dataset } = useSWR<ClassificationDatasetResponse>(
|
|
`classification/${config.name}/dataset`,
|
|
{ revalidateOnFocus: false },
|
|
);
|
|
|
|
const [deleteDialogOpen, setDeleteDialogOpen] = useState(false);
|
|
const [editDialogOpen, setEditDialogOpen] = useState(false);
|
|
|
|
const handleDelete = useCallback(async () => {
|
|
try {
|
|
await axios.delete(`classification/${config.name}`);
|
|
await axios.put("/config/set", {
|
|
requires_restart: 0,
|
|
update_topic: `config/classification/custom/${config.name}`,
|
|
config_data: {
|
|
classification: {
|
|
custom: {
|
|
[config.name]: "",
|
|
},
|
|
},
|
|
},
|
|
});
|
|
|
|
toast.success(t("toast.success.deletedModel", { count: 1 }), {
|
|
position: "top-center",
|
|
});
|
|
onDelete();
|
|
} catch (err) {
|
|
const error = err as {
|
|
response?: { data?: { message?: string; detail?: string } };
|
|
};
|
|
const errorMessage =
|
|
error.response?.data?.message ||
|
|
error.response?.data?.detail ||
|
|
"Unknown error";
|
|
toast.error(t("toast.error.deleteModelFailed", { errorMessage }), {
|
|
position: "top-center",
|
|
});
|
|
}
|
|
}, [config, onDelete, t]);
|
|
|
|
const handleDeleteClick = useCallback((e: React.MouseEvent) => {
|
|
e.stopPropagation();
|
|
setDeleteDialogOpen(true);
|
|
}, []);
|
|
|
|
const handleEditClick = useCallback((e: React.MouseEvent) => {
|
|
e.stopPropagation();
|
|
setEditDialogOpen(true);
|
|
}, []);
|
|
|
|
const coverImage = useMemo(() => {
|
|
if (!dataset || !dataset.categories) {
|
|
return undefined;
|
|
}
|
|
|
|
const keys = Object.keys(dataset.categories).filter((key) => key != "none");
|
|
if (keys.length === 0) {
|
|
return undefined;
|
|
}
|
|
|
|
const selectedKey = keys[0];
|
|
const images = dataset.categories[selectedKey];
|
|
|
|
if (!images || images.length === 0) {
|
|
return undefined;
|
|
}
|
|
|
|
return {
|
|
name: selectedKey,
|
|
img: images[0],
|
|
};
|
|
}, [dataset]);
|
|
|
|
return (
|
|
<>
|
|
<ClassificationModelEditDialog
|
|
open={editDialogOpen}
|
|
model={config}
|
|
onClose={() => setEditDialogOpen(false)}
|
|
onSuccess={() => onUpdate()}
|
|
/>
|
|
|
|
<AlertDialog
|
|
open={deleteDialogOpen}
|
|
onOpenChange={() => setDeleteDialogOpen(!deleteDialogOpen)}
|
|
>
|
|
<AlertDialogContent>
|
|
<AlertDialogHeader>
|
|
<AlertDialogTitle>{t("deleteModel.title")}</AlertDialogTitle>
|
|
</AlertDialogHeader>
|
|
<AlertDialogDescription>
|
|
{t("deleteModel.single", { name: config.name })}
|
|
</AlertDialogDescription>
|
|
<AlertDialogFooter>
|
|
<AlertDialogCancel>
|
|
{t("button.cancel", { ns: "common" })}
|
|
</AlertDialogCancel>
|
|
<AlertDialogAction
|
|
className={buttonVariants({ variant: "destructive" })}
|
|
onClick={handleDelete}
|
|
>
|
|
{t("button.delete", { ns: "common" })}
|
|
</AlertDialogAction>
|
|
</AlertDialogFooter>
|
|
</AlertDialogContent>
|
|
</AlertDialog>
|
|
|
|
<div
|
|
className={cn(
|
|
"relative aspect-square w-full cursor-pointer overflow-hidden rounded-lg",
|
|
)}
|
|
onClick={onClick}
|
|
>
|
|
{coverImage ? (
|
|
<>
|
|
<img
|
|
className="size-full"
|
|
src={`${baseUrl}clips/${config.name}/dataset/${coverImage.name}/${coverImage.img}`}
|
|
/>
|
|
<ImageShadowOverlay lowerClassName="h-[30%] z-0" />
|
|
</>
|
|
) : (
|
|
<div className="flex size-full items-center justify-center bg-background_alt">
|
|
<MdModelTraining className="size-16 text-muted-foreground" />
|
|
</div>
|
|
)}
|
|
<div className="absolute bottom-2 left-3 text-lg text-white smart-capitalize">
|
|
{config.name}
|
|
</div>
|
|
<div className="absolute bottom-2 right-2 z-40">
|
|
<DropdownMenu>
|
|
<DropdownMenuTrigger asChild onClick={(e) => e.stopPropagation()}>
|
|
<BlurredIconButton>
|
|
<FiMoreVertical className="size-5 text-white" />
|
|
</BlurredIconButton>
|
|
</DropdownMenuTrigger>
|
|
<DropdownMenuContent
|
|
align="end"
|
|
onClick={(e) => e.stopPropagation()}
|
|
>
|
|
<DropdownMenuItem onClick={handleEditClick}>
|
|
<span>{t("button.edit", { ns: "common" })}</span>
|
|
</DropdownMenuItem>
|
|
<DropdownMenuItem onClick={handleDeleteClick}>
|
|
<span>{t("button.delete", { ns: "common" })}</span>
|
|
</DropdownMenuItem>
|
|
</DropdownMenuContent>
|
|
</DropdownMenu>
|
|
</div>
|
|
</div>
|
|
</>
|
|
);
|
|
}
|