2026-03-09 23:52:26 +03:00
|
|
|
import { useCallback, useEffect, useMemo, useState } from "react";
|
|
|
|
|
import { useTranslation } from "react-i18next";
|
2026-03-12 04:55:56 +03:00
|
|
|
import { useForm, FormProvider } from "react-hook-form";
|
|
|
|
|
import { zodResolver } from "@hookform/resolvers/zod";
|
|
|
|
|
import { z } from "zod";
|
2026-03-09 23:52:26 +03:00
|
|
|
import useSWR from "swr";
|
|
|
|
|
import axios from "axios";
|
|
|
|
|
import { toast } from "sonner";
|
2026-03-12 04:55:56 +03:00
|
|
|
import { Pencil, Trash2 } from "lucide-react";
|
2026-03-11 23:51:29 +03:00
|
|
|
import { LuChevronDown, LuChevronRight, LuPlus } from "react-icons/lu";
|
2026-03-09 23:52:26 +03:00
|
|
|
import type { FrigateConfig } from "@/types/frigateConfig";
|
2026-03-12 04:55:56 +03:00
|
|
|
import type { JsonObject } from "@/types/configForm";
|
|
|
|
|
import type { ProfileState, ProfilesApiResponse } from "@/types/profile";
|
2026-03-09 23:52:26 +03:00
|
|
|
import { getProfileColor } from "@/utils/profileColors";
|
|
|
|
|
import { PROFILE_ELIGIBLE_SECTIONS } from "@/utils/configUtil";
|
2026-03-11 20:35:13 +03:00
|
|
|
import { resolveCameraName } from "@/hooks/use-camera-friendly-name";
|
2026-03-09 23:52:26 +03:00
|
|
|
import { cn } from "@/lib/utils";
|
|
|
|
|
import Heading from "@/components/ui/heading";
|
|
|
|
|
import { Button } from "@/components/ui/button";
|
|
|
|
|
import { Badge } from "@/components/ui/badge";
|
2026-03-11 23:51:29 +03:00
|
|
|
import { Input } from "@/components/ui/input";
|
2026-03-12 04:55:56 +03:00
|
|
|
import NameAndIdFields from "@/components/input/NameAndIdFields";
|
2026-03-09 23:52:26 +03:00
|
|
|
import {
|
|
|
|
|
Select,
|
|
|
|
|
SelectContent,
|
|
|
|
|
SelectItem,
|
|
|
|
|
SelectTrigger,
|
|
|
|
|
SelectValue,
|
|
|
|
|
} from "@/components/ui/select";
|
2026-03-11 23:51:29 +03:00
|
|
|
import {
|
|
|
|
|
Collapsible,
|
|
|
|
|
CollapsibleContent,
|
|
|
|
|
CollapsibleTrigger,
|
|
|
|
|
} from "@/components/ui/collapsible";
|
|
|
|
|
import {
|
|
|
|
|
Dialog,
|
|
|
|
|
DialogContent,
|
|
|
|
|
DialogFooter,
|
|
|
|
|
DialogHeader,
|
|
|
|
|
DialogTitle,
|
|
|
|
|
} from "@/components/ui/dialog";
|
2026-03-09 23:52:26 +03:00
|
|
|
import {
|
|
|
|
|
AlertDialog,
|
|
|
|
|
AlertDialogAction,
|
|
|
|
|
AlertDialogCancel,
|
|
|
|
|
AlertDialogContent,
|
|
|
|
|
AlertDialogDescription,
|
|
|
|
|
AlertDialogFooter,
|
|
|
|
|
AlertDialogHeader,
|
|
|
|
|
AlertDialogTitle,
|
|
|
|
|
} from "@/components/ui/alert-dialog";
|
2026-03-11 19:05:18 +03:00
|
|
|
import { Switch } from "@/components/ui/switch";
|
|
|
|
|
import { Label } from "@/components/ui/label";
|
2026-03-11 23:51:29 +03:00
|
|
|
import ActivityIndicator from "@/components/indicators/activity-indicator";
|
2026-03-09 23:52:26 +03:00
|
|
|
|
|
|
|
|
type ProfilesViewProps = {
|
|
|
|
|
setUnsavedChanges?: React.Dispatch<React.SetStateAction<boolean>>;
|
|
|
|
|
profileState?: ProfileState;
|
2026-03-11 19:05:18 +03:00
|
|
|
profilesUIEnabled?: boolean;
|
|
|
|
|
setProfilesUIEnabled?: React.Dispatch<React.SetStateAction<boolean>>;
|
2026-03-09 23:52:26 +03:00
|
|
|
};
|
|
|
|
|
|
2026-03-11 19:05:18 +03:00
|
|
|
export default function ProfilesView({
|
|
|
|
|
profileState,
|
|
|
|
|
profilesUIEnabled,
|
|
|
|
|
setProfilesUIEnabled,
|
|
|
|
|
}: ProfilesViewProps) {
|
2026-03-09 23:52:26 +03:00
|
|
|
const { t } = useTranslation(["views/settings", "common"]);
|
|
|
|
|
const { data: config, mutate: updateConfig } =
|
|
|
|
|
useSWR<FrigateConfig>("config");
|
|
|
|
|
const { data: profilesData, mutate: updateProfiles } =
|
|
|
|
|
useSWR<ProfilesApiResponse>("profiles");
|
|
|
|
|
|
|
|
|
|
const [activating, setActivating] = useState(false);
|
|
|
|
|
const [deleteProfile, setDeleteProfile] = useState<string | null>(null);
|
|
|
|
|
const [deleting, setDeleting] = useState(false);
|
2026-03-12 04:55:56 +03:00
|
|
|
const [renameProfile, setRenameProfile] = useState<string | null>(null);
|
|
|
|
|
const [renameValue, setRenameValue] = useState("");
|
|
|
|
|
const [renaming, setRenaming] = useState(false);
|
2026-03-11 23:51:29 +03:00
|
|
|
const [expandedProfiles, setExpandedProfiles] = useState<Set<string>>(
|
|
|
|
|
new Set(),
|
|
|
|
|
);
|
|
|
|
|
const [addDialogOpen, setAddDialogOpen] = useState(false);
|
2026-03-12 04:55:56 +03:00
|
|
|
|
|
|
|
|
const allProfileNames = useMemo(
|
|
|
|
|
() => profileState?.allProfileNames ?? [],
|
|
|
|
|
[profileState?.allProfileNames],
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
const addProfileSchema = useMemo(
|
|
|
|
|
() =>
|
|
|
|
|
z.object({
|
|
|
|
|
name: z
|
|
|
|
|
.string()
|
|
|
|
|
.min(2, {
|
|
|
|
|
message: t("profiles.error.mustBeAtLeastTwoCharacters", {
|
|
|
|
|
ns: "views/settings",
|
|
|
|
|
}),
|
|
|
|
|
})
|
|
|
|
|
.refine((value) => !value.includes("."), {
|
|
|
|
|
message: t("profiles.error.mustNotContainPeriod", {
|
|
|
|
|
ns: "views/settings",
|
|
|
|
|
}),
|
|
|
|
|
})
|
|
|
|
|
.refine((value) => !allProfileNames.includes(value), {
|
|
|
|
|
message: t("profiles.error.alreadyExists", {
|
|
|
|
|
ns: "views/settings",
|
|
|
|
|
}),
|
|
|
|
|
}),
|
|
|
|
|
friendly_name: z.string().min(2, {
|
|
|
|
|
message: t("profiles.error.mustBeAtLeastTwoCharacters", {
|
|
|
|
|
ns: "views/settings",
|
|
|
|
|
}),
|
|
|
|
|
}),
|
|
|
|
|
}),
|
|
|
|
|
[t, allProfileNames],
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
type AddProfileForm = z.infer<typeof addProfileSchema>;
|
|
|
|
|
const addForm = useForm<AddProfileForm>({
|
|
|
|
|
resolver: zodResolver(addProfileSchema),
|
|
|
|
|
defaultValues: { friendly_name: "", name: "" },
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const profileFriendlyNames = profileState?.profileFriendlyNames;
|
2026-03-09 23:52:26 +03:00
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
document.title = t("documentTitle.profiles", {
|
|
|
|
|
ns: "views/settings",
|
|
|
|
|
});
|
|
|
|
|
}, [t]);
|
|
|
|
|
|
|
|
|
|
const activeProfile = profilesData?.active_profile ?? null;
|
|
|
|
|
|
|
|
|
|
// Build overview data: for each profile, which cameras have which sections
|
|
|
|
|
const profileOverviewData = useMemo(() => {
|
|
|
|
|
if (!config || allProfileNames.length === 0) return {};
|
|
|
|
|
|
|
|
|
|
const data: Record<string, Record<string, string[]>> = {};
|
|
|
|
|
const cameras = Object.keys(config.cameras).sort();
|
|
|
|
|
|
|
|
|
|
for (const profile of allProfileNames) {
|
|
|
|
|
data[profile] = {};
|
|
|
|
|
for (const camera of cameras) {
|
|
|
|
|
const profileData = config.cameras[camera]?.profiles?.[profile];
|
|
|
|
|
if (!profileData) continue;
|
|
|
|
|
|
|
|
|
|
const sections: string[] = [];
|
|
|
|
|
for (const section of PROFILE_ELIGIBLE_SECTIONS) {
|
|
|
|
|
if (
|
|
|
|
|
profileData[section as keyof typeof profileData] !== undefined &&
|
|
|
|
|
profileData[section as keyof typeof profileData] !== null
|
|
|
|
|
) {
|
|
|
|
|
sections.push(section);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (profileData.enabled !== undefined && profileData.enabled !== null) {
|
|
|
|
|
sections.push("enabled");
|
|
|
|
|
}
|
|
|
|
|
if (sections.length > 0) {
|
|
|
|
|
data[profile][camera] = sections;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return data;
|
|
|
|
|
}, [config, allProfileNames]);
|
|
|
|
|
|
2026-03-12 04:55:56 +03:00
|
|
|
const handleAddSubmit = useCallback(
|
|
|
|
|
(data: AddProfileForm) => {
|
|
|
|
|
const id = data.name.trim();
|
|
|
|
|
const friendlyName = data.friendly_name.trim();
|
|
|
|
|
if (!id || !friendlyName) return;
|
|
|
|
|
profileState?.onAddProfile(id, friendlyName);
|
|
|
|
|
setAddDialogOpen(false);
|
|
|
|
|
addForm.reset();
|
2026-03-11 23:51:29 +03:00
|
|
|
},
|
2026-03-12 04:55:56 +03:00
|
|
|
[profileState, addForm],
|
2026-03-11 23:51:29 +03:00
|
|
|
);
|
|
|
|
|
|
2026-03-09 23:52:26 +03:00
|
|
|
const handleActivateProfile = useCallback(
|
|
|
|
|
async (profile: string | null) => {
|
|
|
|
|
setActivating(true);
|
|
|
|
|
try {
|
|
|
|
|
await axios.put("profile/set", {
|
|
|
|
|
profile: profile || null,
|
|
|
|
|
});
|
|
|
|
|
await updateProfiles();
|
|
|
|
|
toast.success(
|
|
|
|
|
profile
|
|
|
|
|
? t("profiles.activated", {
|
|
|
|
|
ns: "views/settings",
|
2026-03-12 04:55:56 +03:00
|
|
|
profile: profileFriendlyNames?.get(profile) ?? profile,
|
2026-03-09 23:52:26 +03:00
|
|
|
})
|
|
|
|
|
: t("profiles.deactivated", { ns: "views/settings" }),
|
|
|
|
|
{ position: "top-center" },
|
|
|
|
|
);
|
2026-03-11 20:35:13 +03:00
|
|
|
} catch (err) {
|
|
|
|
|
const message =
|
|
|
|
|
axios.isAxiosError(err) && err.response?.data?.message
|
|
|
|
|
? String(err.response.data.message)
|
|
|
|
|
: undefined;
|
|
|
|
|
toast.error(
|
|
|
|
|
message || t("profiles.activateFailed", { ns: "views/settings" }),
|
|
|
|
|
{ position: "top-center" },
|
|
|
|
|
);
|
2026-03-09 23:52:26 +03:00
|
|
|
} finally {
|
|
|
|
|
setActivating(false);
|
|
|
|
|
}
|
|
|
|
|
},
|
2026-03-12 04:55:56 +03:00
|
|
|
[updateProfiles, profileFriendlyNames, t],
|
2026-03-09 23:52:26 +03:00
|
|
|
);
|
|
|
|
|
|
|
|
|
|
const handleDeleteProfile = useCallback(async () => {
|
|
|
|
|
if (!deleteProfile || !config) return;
|
2026-03-11 19:35:12 +03:00
|
|
|
|
|
|
|
|
// If this is an unsaved (new) profile, just remove it from local state
|
|
|
|
|
const isNewProfile = profileState?.newProfiles.includes(deleteProfile);
|
|
|
|
|
if (isNewProfile) {
|
|
|
|
|
profileState?.onRemoveNewProfile(deleteProfile);
|
|
|
|
|
setDeleteProfile(null);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-09 23:52:26 +03:00
|
|
|
setDeleting(true);
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
// If this profile is active, deactivate it first
|
|
|
|
|
if (activeProfile === deleteProfile) {
|
|
|
|
|
await axios.put("profile/set", { profile: null });
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-12 04:55:56 +03:00
|
|
|
// Remove the profile from all cameras and the top-level definition
|
|
|
|
|
const cameraData: JsonObject = {};
|
2026-03-09 23:52:26 +03:00
|
|
|
for (const camera of Object.keys(config.cameras)) {
|
|
|
|
|
if (config.cameras[camera]?.profiles?.[deleteProfile]) {
|
2026-03-12 04:55:56 +03:00
|
|
|
cameraData[camera] = {
|
2026-03-09 23:52:26 +03:00
|
|
|
profiles: { [deleteProfile]: "" },
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-12 04:55:56 +03:00
|
|
|
const configData: JsonObject = {
|
|
|
|
|
profiles: { [deleteProfile]: "" },
|
|
|
|
|
};
|
|
|
|
|
if (Object.keys(cameraData).length > 0) {
|
|
|
|
|
configData.cameras = cameraData;
|
2026-03-09 23:52:26 +03:00
|
|
|
}
|
|
|
|
|
|
2026-03-12 04:55:56 +03:00
|
|
|
await axios.put("config/set", {
|
|
|
|
|
requires_restart: 0,
|
|
|
|
|
config_data: configData,
|
|
|
|
|
});
|
|
|
|
|
|
2026-03-09 23:52:26 +03:00
|
|
|
await updateConfig();
|
|
|
|
|
await updateProfiles();
|
|
|
|
|
|
2026-03-12 04:55:56 +03:00
|
|
|
// Also clean up local newProfiles state if this profile was in it
|
|
|
|
|
profileState?.onRemoveNewProfile(deleteProfile);
|
|
|
|
|
|
2026-03-09 23:52:26 +03:00
|
|
|
toast.success(
|
|
|
|
|
t("profiles.deleteSuccess", {
|
|
|
|
|
ns: "views/settings",
|
2026-03-12 04:55:56 +03:00
|
|
|
profile: profileFriendlyNames?.get(deleteProfile) ?? deleteProfile,
|
2026-03-09 23:52:26 +03:00
|
|
|
}),
|
|
|
|
|
{ position: "top-center" },
|
|
|
|
|
);
|
2026-03-11 20:35:13 +03:00
|
|
|
} catch (err) {
|
|
|
|
|
const errorMessage =
|
|
|
|
|
axios.isAxiosError(err) && err.response?.data?.message
|
|
|
|
|
? String(err.response.data.message)
|
|
|
|
|
: undefined;
|
|
|
|
|
toast.error(
|
|
|
|
|
errorMessage || t("toast.save.error.noMessage", { ns: "common" }),
|
|
|
|
|
{ position: "top-center" },
|
|
|
|
|
);
|
2026-03-09 23:52:26 +03:00
|
|
|
} finally {
|
|
|
|
|
setDeleting(false);
|
|
|
|
|
setDeleteProfile(null);
|
|
|
|
|
}
|
2026-03-11 19:35:12 +03:00
|
|
|
}, [
|
|
|
|
|
deleteProfile,
|
|
|
|
|
activeProfile,
|
|
|
|
|
config,
|
|
|
|
|
profileState,
|
2026-03-12 04:55:56 +03:00
|
|
|
profileFriendlyNames,
|
2026-03-11 19:35:12 +03:00
|
|
|
updateConfig,
|
|
|
|
|
updateProfiles,
|
|
|
|
|
t,
|
|
|
|
|
]);
|
2026-03-09 23:52:26 +03:00
|
|
|
|
2026-03-11 23:51:29 +03:00
|
|
|
const toggleExpanded = useCallback((profile: string) => {
|
|
|
|
|
setExpandedProfiles((prev) => {
|
|
|
|
|
const next = new Set(prev);
|
|
|
|
|
if (next.has(profile)) {
|
|
|
|
|
next.delete(profile);
|
|
|
|
|
} else {
|
|
|
|
|
next.add(profile);
|
|
|
|
|
}
|
|
|
|
|
return next;
|
|
|
|
|
});
|
|
|
|
|
}, []);
|
|
|
|
|
|
2026-03-12 04:55:56 +03:00
|
|
|
const handleRename = useCallback(async () => {
|
|
|
|
|
if (!renameProfile || !renameValue.trim()) return;
|
|
|
|
|
|
|
|
|
|
setRenaming(true);
|
|
|
|
|
try {
|
|
|
|
|
await axios.put("config/set", {
|
|
|
|
|
requires_restart: 0,
|
|
|
|
|
config_data: {
|
|
|
|
|
profiles: {
|
|
|
|
|
[renameProfile]: { friendly_name: renameValue.trim() },
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
await updateConfig();
|
|
|
|
|
await updateProfiles();
|
|
|
|
|
|
|
|
|
|
toast.success(
|
|
|
|
|
t("profiles.renameSuccess", {
|
|
|
|
|
ns: "views/settings",
|
|
|
|
|
profile: renameValue.trim(),
|
|
|
|
|
}),
|
|
|
|
|
{ position: "top-center" },
|
|
|
|
|
);
|
|
|
|
|
} catch {
|
|
|
|
|
toast.error(t("toast.save.error.noMessage", { ns: "common" }), {
|
|
|
|
|
position: "top-center",
|
|
|
|
|
});
|
|
|
|
|
} finally {
|
|
|
|
|
setRenaming(false);
|
|
|
|
|
setRenameProfile(null);
|
|
|
|
|
}
|
|
|
|
|
}, [renameProfile, renameValue, updateConfig, updateProfiles, t]);
|
|
|
|
|
|
2026-03-09 23:52:26 +03:00
|
|
|
if (!config || !profilesData) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-11 19:05:18 +03:00
|
|
|
const hasProfiles = allProfileNames.length > 0;
|
|
|
|
|
|
2026-03-09 23:52:26 +03:00
|
|
|
return (
|
2026-03-11 19:35:12 +03:00
|
|
|
<div className="flex size-full max-w-5xl flex-col lg:pr-2">
|
|
|
|
|
<Heading as="h4">{t("profiles.title", { ns: "views/settings" })}</Heading>
|
|
|
|
|
<div className="my-1 text-sm text-muted-foreground">
|
|
|
|
|
{t("profiles.disabledDescription", { ns: "views/settings" })}
|
|
|
|
|
</div>
|
2026-03-09 23:52:26 +03:00
|
|
|
|
2026-03-11 19:05:18 +03:00
|
|
|
{/* Enable Profiles Toggle — shown only when no profiles exist */}
|
|
|
|
|
{!hasProfiles && setProfilesUIEnabled && (
|
2026-03-11 19:35:12 +03:00
|
|
|
<div className="my-6 max-w-xl rounded-lg border border-border/70 bg-card/30 p-4">
|
2026-03-11 19:05:18 +03:00
|
|
|
<div className="flex items-center justify-between">
|
|
|
|
|
<Label htmlFor="profiles-toggle" className="cursor-pointer">
|
|
|
|
|
{t("profiles.enableSwitch", { ns: "views/settings" })}
|
|
|
|
|
</Label>
|
|
|
|
|
<Switch
|
|
|
|
|
id="profiles-toggle"
|
|
|
|
|
checked={profilesUIEnabled ?? false}
|
|
|
|
|
onCheckedChange={setProfilesUIEnabled}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
2026-03-09 23:52:26 +03:00
|
|
|
</div>
|
2026-03-11 19:05:18 +03:00
|
|
|
)}
|
|
|
|
|
|
2026-03-11 23:51:29 +03:00
|
|
|
{profilesUIEnabled && !hasProfiles && (
|
2026-03-11 19:35:12 +03:00
|
|
|
<p className="mb-5 max-w-xl text-sm text-primary-variant">
|
|
|
|
|
{t("profiles.enabledDescription", { ns: "views/settings" })}
|
|
|
|
|
</p>
|
|
|
|
|
)}
|
|
|
|
|
|
2026-03-11 23:51:29 +03:00
|
|
|
{/* Active Profile + Add Profile bar */}
|
|
|
|
|
{(hasProfiles || profilesUIEnabled) && (
|
|
|
|
|
<div className="my-4 flex items-center justify-between rounded-lg border border-border/70 bg-card/30 p-4">
|
|
|
|
|
{hasProfiles && (
|
|
|
|
|
<div className="flex items-center gap-3">
|
|
|
|
|
<span className="text-sm font-semibold text-primary-variant">
|
|
|
|
|
{t("profiles.activeProfile", { ns: "views/settings" })}
|
|
|
|
|
</span>
|
|
|
|
|
<Select
|
|
|
|
|
value={activeProfile ?? "__none__"}
|
|
|
|
|
onValueChange={(v) =>
|
|
|
|
|
handleActivateProfile(v === "__none__" ? null : v)
|
|
|
|
|
}
|
|
|
|
|
disabled={activating}
|
2026-03-11 19:05:18 +03:00
|
|
|
>
|
2026-03-11 23:51:29 +03:00
|
|
|
<SelectTrigger className="">
|
|
|
|
|
<SelectValue />
|
|
|
|
|
</SelectTrigger>
|
|
|
|
|
<SelectContent>
|
|
|
|
|
<SelectItem value="__none__">
|
|
|
|
|
{t("profiles.noActiveProfile", { ns: "views/settings" })}
|
|
|
|
|
</SelectItem>
|
|
|
|
|
{allProfileNames.map((profile) => {
|
|
|
|
|
const color = getProfileColor(profile, allProfileNames);
|
|
|
|
|
return (
|
|
|
|
|
<SelectItem key={profile} value={profile}>
|
|
|
|
|
<div className="flex items-center gap-2">
|
|
|
|
|
<span
|
|
|
|
|
className={cn(
|
|
|
|
|
"h-2 w-2 shrink-0 rounded-full",
|
|
|
|
|
color.dot,
|
|
|
|
|
)}
|
|
|
|
|
/>
|
2026-03-12 04:55:56 +03:00
|
|
|
{profileFriendlyNames?.get(profile) ?? profile}
|
2026-03-11 23:51:29 +03:00
|
|
|
</div>
|
|
|
|
|
</SelectItem>
|
|
|
|
|
);
|
|
|
|
|
})}
|
|
|
|
|
</SelectContent>
|
|
|
|
|
</Select>
|
2026-03-12 16:57:57 +03:00
|
|
|
{activating && <ActivityIndicator className="size-4" />}
|
2026-03-11 23:51:29 +03:00
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
<Button
|
|
|
|
|
variant="default"
|
|
|
|
|
size="sm"
|
|
|
|
|
onClick={() => setAddDialogOpen(true)}
|
|
|
|
|
>
|
|
|
|
|
<LuPlus className="mr-1.5 size-4" />
|
|
|
|
|
{t("profiles.addProfile", { ns: "views/settings" })}
|
|
|
|
|
</Button>
|
2026-03-09 23:52:26 +03:00
|
|
|
</div>
|
2026-03-11 19:05:18 +03:00
|
|
|
)}
|
2026-03-09 23:52:26 +03:00
|
|
|
|
2026-03-11 23:51:29 +03:00
|
|
|
{/* Profile List */}
|
2026-03-11 19:05:18 +03:00
|
|
|
{!hasProfiles ? (
|
2026-03-11 19:35:12 +03:00
|
|
|
profilesUIEnabled ? (
|
|
|
|
|
<p className="text-sm text-muted-foreground">
|
|
|
|
|
{t("profiles.noProfiles", { ns: "views/settings" })}
|
|
|
|
|
</p>
|
|
|
|
|
) : (
|
|
|
|
|
<div />
|
|
|
|
|
)
|
2026-03-09 23:52:26 +03:00
|
|
|
) : (
|
2026-03-11 23:51:29 +03:00
|
|
|
<div className="flex flex-col gap-2">
|
2026-03-09 23:52:26 +03:00
|
|
|
{allProfileNames.map((profile) => {
|
|
|
|
|
const color = getProfileColor(profile, allProfileNames);
|
|
|
|
|
const isActive = activeProfile === profile;
|
|
|
|
|
const cameraData = profileOverviewData[profile] ?? {};
|
|
|
|
|
const cameras = Object.keys(cameraData).sort();
|
2026-03-11 23:51:29 +03:00
|
|
|
const isExpanded = expandedProfiles.has(profile);
|
2026-03-09 23:52:26 +03:00
|
|
|
|
|
|
|
|
return (
|
2026-03-11 23:51:29 +03:00
|
|
|
<Collapsible
|
2026-03-09 23:52:26 +03:00
|
|
|
key={profile}
|
2026-03-11 23:51:29 +03:00
|
|
|
open={isExpanded}
|
|
|
|
|
onOpenChange={() => toggleExpanded(profile)}
|
2026-03-09 23:52:26 +03:00
|
|
|
>
|
2026-03-11 23:51:29 +03:00
|
|
|
<div
|
|
|
|
|
className={cn(
|
|
|
|
|
"rounded-lg border",
|
|
|
|
|
isActive
|
|
|
|
|
? "border-selected bg-selected/5"
|
|
|
|
|
: "border-border/70",
|
|
|
|
|
)}
|
|
|
|
|
>
|
|
|
|
|
<CollapsibleTrigger asChild>
|
|
|
|
|
<div className="flex cursor-pointer items-center justify-between px-4 py-3 hover:bg-secondary/30">
|
|
|
|
|
<div className="flex items-center gap-3">
|
|
|
|
|
{isExpanded ? (
|
|
|
|
|
<LuChevronDown className="size-4 text-muted-foreground" />
|
|
|
|
|
) : (
|
|
|
|
|
<LuChevronRight className="size-4 text-muted-foreground" />
|
|
|
|
|
)}
|
|
|
|
|
<span
|
|
|
|
|
className={cn(
|
|
|
|
|
"size-2.5 shrink-0 rounded-full",
|
|
|
|
|
color.dot,
|
|
|
|
|
)}
|
|
|
|
|
/>
|
2026-03-12 04:55:56 +03:00
|
|
|
<span className="font-medium">
|
|
|
|
|
{profileFriendlyNames?.get(profile) ?? profile}
|
|
|
|
|
</span>
|
|
|
|
|
<Button
|
|
|
|
|
variant="ghost"
|
|
|
|
|
size="icon"
|
|
|
|
|
className="size-6 text-muted-foreground hover:text-primary"
|
|
|
|
|
onClick={(e) => {
|
|
|
|
|
e.stopPropagation();
|
|
|
|
|
setRenameProfile(profile);
|
|
|
|
|
setRenameValue(
|
|
|
|
|
profileFriendlyNames?.get(profile) ?? profile,
|
|
|
|
|
);
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<Pencil className="size-3" />
|
|
|
|
|
</Button>
|
2026-03-11 23:51:29 +03:00
|
|
|
{isActive && (
|
|
|
|
|
<Badge
|
|
|
|
|
variant="secondary"
|
|
|
|
|
className="text-xs text-primary-variant"
|
|
|
|
|
>
|
|
|
|
|
{t("profiles.active", { ns: "views/settings" })}
|
|
|
|
|
</Badge>
|
|
|
|
|
)}
|
|
|
|
|
</div>
|
|
|
|
|
<div className="flex items-center gap-3">
|
|
|
|
|
<span className="text-sm text-muted-foreground">
|
|
|
|
|
{cameras.length > 0
|
|
|
|
|
? t("profiles.cameraCount", {
|
|
|
|
|
ns: "views/settings",
|
|
|
|
|
count: cameras.length,
|
|
|
|
|
})
|
|
|
|
|
: t("profiles.noOverrides", {
|
|
|
|
|
ns: "views/settings",
|
|
|
|
|
})}
|
|
|
|
|
</span>
|
|
|
|
|
<Button
|
|
|
|
|
variant="ghost"
|
|
|
|
|
size="icon"
|
|
|
|
|
className="size-7 text-muted-foreground hover:text-destructive"
|
2026-03-12 18:47:05 +03:00
|
|
|
disabled={deleting && deleteProfile === profile}
|
2026-03-11 23:51:29 +03:00
|
|
|
onClick={(e) => {
|
|
|
|
|
e.stopPropagation();
|
|
|
|
|
setDeleteProfile(profile);
|
|
|
|
|
}}
|
2026-03-09 23:52:26 +03:00
|
|
|
>
|
2026-03-12 18:47:05 +03:00
|
|
|
{deleting && deleteProfile === profile ? (
|
|
|
|
|
<ActivityIndicator className="size-4" />
|
|
|
|
|
) : (
|
|
|
|
|
<Trash2 className="size-4" />
|
|
|
|
|
)}
|
2026-03-11 23:51:29 +03:00
|
|
|
</Button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</CollapsibleTrigger>
|
|
|
|
|
<CollapsibleContent>
|
|
|
|
|
{cameras.length > 0 ? (
|
|
|
|
|
<div className="mx-4 mb-3 ml-11 border-l border-border/50 pl-4">
|
|
|
|
|
{cameras.map((camera) => {
|
|
|
|
|
const sections = cameraData[camera];
|
|
|
|
|
return (
|
|
|
|
|
<div
|
|
|
|
|
key={camera}
|
|
|
|
|
className="flex items-baseline gap-3 py-1.5"
|
|
|
|
|
>
|
|
|
|
|
<span className="min-w-[120px] shrink-0 truncate text-sm font-medium">
|
|
|
|
|
{resolveCameraName(config, camera)}
|
|
|
|
|
</span>
|
|
|
|
|
<span className="text-sm text-muted-foreground">
|
|
|
|
|
{sections
|
|
|
|
|
.map((section) =>
|
|
|
|
|
t(`configForm.sections.${section}`, {
|
|
|
|
|
ns: "views/settings",
|
|
|
|
|
defaultValue: section,
|
|
|
|
|
}),
|
|
|
|
|
)
|
|
|
|
|
.join(", ")}
|
|
|
|
|
</span>
|
2026-03-09 23:52:26 +03:00
|
|
|
</div>
|
2026-03-11 23:51:29 +03:00
|
|
|
);
|
|
|
|
|
})}
|
|
|
|
|
</div>
|
|
|
|
|
) : (
|
|
|
|
|
<div className="mx-4 mb-3 ml-11 text-sm text-muted-foreground">
|
|
|
|
|
{t("profiles.noOverrides", { ns: "views/settings" })}
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
</CollapsibleContent>
|
|
|
|
|
</div>
|
|
|
|
|
</Collapsible>
|
2026-03-09 23:52:26 +03:00
|
|
|
);
|
|
|
|
|
})}
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
|
2026-03-11 23:51:29 +03:00
|
|
|
{/* Add Profile Dialog */}
|
|
|
|
|
<Dialog
|
|
|
|
|
open={addDialogOpen}
|
|
|
|
|
onOpenChange={(open) => {
|
|
|
|
|
setAddDialogOpen(open);
|
|
|
|
|
if (!open) {
|
2026-03-12 04:55:56 +03:00
|
|
|
addForm.reset();
|
2026-03-11 23:51:29 +03:00
|
|
|
}
|
|
|
|
|
}}
|
|
|
|
|
>
|
2026-03-12 04:55:56 +03:00
|
|
|
<DialogContent className="sm:max-w-[400px]">
|
2026-03-11 23:51:29 +03:00
|
|
|
<DialogHeader>
|
|
|
|
|
<DialogTitle>
|
|
|
|
|
{t("profiles.newProfile", { ns: "views/settings" })}
|
|
|
|
|
</DialogTitle>
|
|
|
|
|
</DialogHeader>
|
2026-03-12 04:55:56 +03:00
|
|
|
<FormProvider {...addForm}>
|
|
|
|
|
<form
|
|
|
|
|
onSubmit={addForm.handleSubmit(handleAddSubmit)}
|
|
|
|
|
className="space-y-4 py-2"
|
2026-03-11 23:51:29 +03:00
|
|
|
>
|
2026-03-12 04:55:56 +03:00
|
|
|
<NameAndIdFields<AddProfileForm>
|
|
|
|
|
control={addForm.control}
|
|
|
|
|
type="profile"
|
|
|
|
|
nameField="friendly_name"
|
|
|
|
|
idField="name"
|
|
|
|
|
nameLabel={t("profiles.friendlyNameLabel", {
|
|
|
|
|
ns: "views/settings",
|
|
|
|
|
})}
|
|
|
|
|
idLabel={t("profiles.profileIdLabel", {
|
|
|
|
|
ns: "views/settings",
|
|
|
|
|
})}
|
|
|
|
|
idDescription={t("profiles.profileIdDescription", {
|
|
|
|
|
ns: "views/settings",
|
|
|
|
|
})}
|
|
|
|
|
placeholderName={t("profiles.profileNamePlaceholder", {
|
|
|
|
|
ns: "views/settings",
|
|
|
|
|
})}
|
|
|
|
|
/>
|
|
|
|
|
<DialogFooter>
|
|
|
|
|
<Button
|
|
|
|
|
type="button"
|
|
|
|
|
variant="outline"
|
|
|
|
|
onClick={() => setAddDialogOpen(false)}
|
|
|
|
|
>
|
|
|
|
|
{t("button.cancel", { ns: "common" })}
|
|
|
|
|
</Button>
|
|
|
|
|
<Button
|
|
|
|
|
type="submit"
|
|
|
|
|
variant="select"
|
|
|
|
|
disabled={
|
|
|
|
|
!addForm.watch("friendly_name").trim() ||
|
|
|
|
|
!addForm.watch("name").trim()
|
|
|
|
|
}
|
|
|
|
|
>
|
|
|
|
|
{t("button.add", { ns: "common" })}
|
|
|
|
|
</Button>
|
|
|
|
|
</DialogFooter>
|
|
|
|
|
</form>
|
|
|
|
|
</FormProvider>
|
2026-03-11 23:51:29 +03:00
|
|
|
</DialogContent>
|
|
|
|
|
</Dialog>
|
|
|
|
|
|
2026-03-09 23:52:26 +03:00
|
|
|
{/* Delete Profile Confirmation */}
|
|
|
|
|
<AlertDialog
|
|
|
|
|
open={!!deleteProfile}
|
|
|
|
|
onOpenChange={(open) => {
|
|
|
|
|
if (!open) setDeleteProfile(null);
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<AlertDialogContent>
|
|
|
|
|
<AlertDialogHeader>
|
|
|
|
|
<AlertDialogTitle>
|
|
|
|
|
{t("profiles.deleteProfile", { ns: "views/settings" })}
|
|
|
|
|
</AlertDialogTitle>
|
|
|
|
|
<AlertDialogDescription>
|
|
|
|
|
{t("profiles.deleteProfileConfirm", {
|
|
|
|
|
ns: "views/settings",
|
2026-03-12 04:55:56 +03:00
|
|
|
profile: deleteProfile
|
|
|
|
|
? (profileFriendlyNames?.get(deleteProfile) ?? deleteProfile)
|
|
|
|
|
: "",
|
2026-03-09 23:52:26 +03:00
|
|
|
})}
|
|
|
|
|
</AlertDialogDescription>
|
|
|
|
|
</AlertDialogHeader>
|
|
|
|
|
<AlertDialogFooter>
|
|
|
|
|
<AlertDialogCancel disabled={deleting}>
|
|
|
|
|
{t("button.cancel", { ns: "common" })}
|
|
|
|
|
</AlertDialogCancel>
|
|
|
|
|
<AlertDialogAction
|
|
|
|
|
className="bg-destructive text-white hover:bg-destructive/90"
|
2026-03-12 18:47:05 +03:00
|
|
|
onClick={(e) => {
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
handleDeleteProfile();
|
|
|
|
|
}}
|
2026-03-09 23:52:26 +03:00
|
|
|
disabled={deleting}
|
|
|
|
|
>
|
2026-03-12 04:55:56 +03:00
|
|
|
{deleting && <ActivityIndicator className="mr-2 size-4" />}
|
2026-03-09 23:52:26 +03:00
|
|
|
{t("button.delete", { ns: "common" })}
|
|
|
|
|
</AlertDialogAction>
|
|
|
|
|
</AlertDialogFooter>
|
|
|
|
|
</AlertDialogContent>
|
|
|
|
|
</AlertDialog>
|
2026-03-12 04:55:56 +03:00
|
|
|
|
|
|
|
|
{/* Rename Profile Dialog */}
|
|
|
|
|
<Dialog
|
|
|
|
|
open={!!renameProfile}
|
|
|
|
|
onOpenChange={(open) => {
|
|
|
|
|
if (!open) setRenameProfile(null);
|
|
|
|
|
}}
|
|
|
|
|
>
|
|
|
|
|
<DialogContent className="sm:max-w-[400px]">
|
|
|
|
|
<DialogHeader>
|
|
|
|
|
<DialogTitle>
|
|
|
|
|
{t("profiles.renameProfile", { ns: "views/settings" })}
|
|
|
|
|
</DialogTitle>
|
|
|
|
|
</DialogHeader>
|
|
|
|
|
<div className="space-y-4 py-2">
|
|
|
|
|
<Input
|
|
|
|
|
value={renameValue}
|
|
|
|
|
onChange={(e) => setRenameValue(e.target.value)}
|
|
|
|
|
placeholder={t("profiles.profileNamePlaceholder", {
|
|
|
|
|
ns: "views/settings",
|
|
|
|
|
})}
|
|
|
|
|
/>
|
|
|
|
|
<DialogFooter>
|
|
|
|
|
<Button
|
|
|
|
|
variant="outline"
|
|
|
|
|
onClick={() => setRenameProfile(null)}
|
|
|
|
|
disabled={renaming}
|
|
|
|
|
>
|
|
|
|
|
{t("button.cancel", { ns: "common" })}
|
|
|
|
|
</Button>
|
|
|
|
|
<Button
|
|
|
|
|
variant="select"
|
|
|
|
|
onClick={handleRename}
|
|
|
|
|
disabled={renaming || !renameValue.trim()}
|
|
|
|
|
>
|
|
|
|
|
{renaming && <ActivityIndicator className="mr-2 size-4" />}
|
|
|
|
|
{t("button.save", { ns: "common" })}
|
|
|
|
|
</Button>
|
|
|
|
|
</DialogFooter>
|
|
|
|
|
</div>
|
|
|
|
|
</DialogContent>
|
|
|
|
|
</Dialog>
|
2026-03-09 23:52:26 +03:00
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|