Files
frigate/web/src/pages/Settings.tsx
T

706 lines
23 KiB
TypeScript
Raw Normal View History

import {
DropdownMenu,
DropdownMenuContent,
DropdownMenuLabel,
DropdownMenuSeparator,
DropdownMenuTrigger,
} from "@/components/ui/dropdown-menu";
import {
AlertDialog,
AlertDialogAction,
AlertDialogCancel,
AlertDialogContent,
AlertDialogDescription,
AlertDialogFooter,
AlertDialogHeader,
AlertDialogTitle,
} from "@/components/ui/alert-dialog";
import { Drawer, DrawerContent, DrawerTrigger } from "@/components/ui/drawer";
import { Button } from "@/components/ui/button";
2025-10-08 14:59:21 -05:00
import { useCallback, useEffect, useMemo, useState } from "react";
import useOptimisticState from "@/hooks/use-optimistic-state";
2025-10-08 14:59:21 -05:00
import { isMobile } from "react-device-detect";
import { FaVideo } from "react-icons/fa";
import { CameraConfig, FrigateConfig } from "@/types/frigateConfig";
import useSWR from "swr";
import FilterSwitch from "@/components/filter/FilterSwitch";
import { ZoneMaskFilterButton } from "@/components/filter/ZoneMaskFilter";
import { PolygonType } from "@/types/canvas";
2025-11-18 16:33:42 -06:00
import CameraReviewSettingsView from "@/views/settings/CameraReviewSettingsView";
2025-10-13 11:52:08 -05:00
import CameraManagementView from "@/views/settings/CameraManagementView";
2024-05-29 08:01:39 -06:00
import MotionTunerView from "@/views/settings/MotionTunerView";
import MasksAndZonesView from "@/views/settings/MasksAndZonesView";
import UsersView from "@/views/settings/UsersView";
import RolesView from "@/views/settings/RolesView";
import NotificationView from "@/views/settings/NotificationsSettingsView";
2025-05-22 19:16:35 -05:00
import EnrichmentsSettingsView from "@/views/settings/EnrichmentsSettingsView";
2024-10-15 18:25:59 -06:00
import UiSettingsView from "@/views/settings/UiSettingsView";
2025-03-17 13:44:57 -05:00
import FrigatePlusSettingsView from "@/views/settings/FrigatePlusSettingsView";
2025-02-10 10:42:35 -06:00
import { useSearchEffect } from "@/hooks/use-overlay-state";
2025-10-08 14:59:21 -05:00
import { useNavigate, useSearchParams } from "react-router-dom";
2025-03-03 09:30:52 -06:00
import { useInitialCameraState } from "@/api/ws";
2025-03-08 10:01:08 -06:00
import { useIsAdmin } from "@/hooks/use-is-admin";
import { useTranslation } from "react-i18next";
2025-07-07 09:03:57 -05:00
import TriggerView from "@/views/settings/TriggerView";
2025-11-07 22:02:06 +08:00
import { CameraNameLabel } from "@/components/camera/FriendlyNameLabel";
2025-10-08 14:59:21 -05:00
import {
Sidebar,
SidebarContent,
SidebarGroup,
SidebarGroupLabel,
SidebarInset,
SidebarMenu,
SidebarMenuButton,
SidebarMenuItem,
SidebarMenuSub,
SidebarMenuSubButton,
SidebarMenuSubItem,
SidebarProvider,
} from "@/components/ui/sidebar";
import { cn } from "@/lib/utils";
import Heading from "@/components/ui/heading";
import { LuChevronRight } from "react-icons/lu";
import Logo from "@/components/Logo";
import {
MobilePage,
MobilePageContent,
MobilePageHeader,
MobilePageTitle,
} from "@/components/mobile/MobilePage";
const allSettingsViews = [
2025-03-21 11:47:32 -06:00
"ui",
2025-05-22 19:16:35 -05:00
"enrichments",
2025-10-13 11:52:08 -05:00
"cameraManagement",
"cameraReview",
"masksAndZones",
"motionTuner",
2025-07-07 09:03:57 -05:00
"triggers",
"debug",
"users",
"roles",
"notifications",
2025-03-17 13:44:57 -05:00
"frigateplus",
] as const;
type SettingsType = (typeof allSettingsViews)[number];
2025-10-08 14:59:21 -05:00
const settingsGroups = [
{
2025-10-08 16:36:23 -05:00
label: "general",
2025-10-08 14:59:21 -05:00
items: [{ key: "ui", component: UiSettingsView }],
},
{
2025-10-08 16:36:23 -05:00
label: "cameras",
2025-10-08 14:59:21 -05:00
items: [
2025-10-13 11:52:08 -05:00
{ key: "cameraManagement", component: CameraManagementView },
2025-11-18 16:33:42 -06:00
{ key: "cameraReview", component: CameraReviewSettingsView },
2025-10-08 14:59:21 -05:00
{ key: "masksAndZones", component: MasksAndZonesView },
{ key: "motionTuner", component: MotionTunerView },
],
},
{
2025-10-08 16:36:23 -05:00
label: "enrichments",
2025-10-08 14:59:21 -05:00
items: [{ key: "enrichments", component: EnrichmentsSettingsView }],
},
{
2025-10-08 16:36:23 -05:00
label: "users",
2025-10-08 14:59:21 -05:00
items: [
{ key: "users", component: UsersView },
{ key: "roles", component: RolesView },
],
},
{
2025-10-08 16:36:23 -05:00
label: "notifications",
2025-10-08 14:59:21 -05:00
items: [
{ key: "notifications", component: NotificationView },
{ key: "triggers", component: TriggerView },
],
},
{
2025-10-08 16:36:23 -05:00
label: "frigateplus",
2025-10-08 14:59:21 -05:00
items: [{ key: "frigateplus", component: FrigatePlusSettingsView }],
},
];
2025-10-13 11:52:08 -05:00
const CAMERA_SELECT_BUTTON_PAGES = [
"debug",
"cameraReview",
"masksAndZones",
"motionTuner",
"triggers",
];
const ALLOWED_VIEWS_FOR_VIEWER = ["ui", "debug", "notifications"];
2025-10-08 14:59:21 -05:00
const getCurrentComponent = (page: SettingsType) => {
for (const group of settingsGroups) {
for (const item of group.items) {
if (item.key === page) {
return item.component;
}
}
}
return null;
};
function MobileMenuItem({
item,
onSelect,
onClose,
className,
}: {
item: { key: string };
onSelect: (key: string) => void;
onClose?: () => void;
className?: string;
}) {
const { t } = useTranslation(["views/settings"]);
return (
2025-11-05 08:49:31 -06:00
<div
className={cn(
"inline-flex h-10 w-full cursor-pointer items-center justify-between whitespace-nowrap rounded-md px-4 py-2 pr-2 text-sm font-medium text-primary-variant disabled:pointer-events-none disabled:opacity-50",
className,
)}
2025-10-08 14:59:21 -05:00
onClick={() => {
onSelect(item.key);
onClose?.();
}}
>
<div className="smart-capitalize">{t("menu." + item.key)}</div>
<LuChevronRight className="size-4" />
2025-11-05 08:49:31 -06:00
</div>
2025-10-08 14:59:21 -05:00
);
}
export default function Settings() {
const { t } = useTranslation(["views/settings"]);
2025-03-21 11:47:32 -06:00
const [page, setPage] = useState<SettingsType>("ui");
const [pageToggle, setPageToggle] = useOptimisticState(page, setPage, 100);
2025-10-08 14:59:21 -05:00
const [contentMobileOpen, setContentMobileOpen] = useState(false);
const { data: config } = useSWR<FrigateConfig>("config");
2025-02-15 07:56:45 -06:00
const [searchParams] = useSearchParams();
2025-03-08 10:01:08 -06:00
// auth and roles
const isAdmin = useIsAdmin();
const visibleSettingsViews = !isAdmin
2025-10-13 11:52:08 -05:00
? ALLOWED_VIEWS_FOR_VIEWER
2025-03-08 10:01:08 -06:00
: allSettingsViews;
// TODO: confirm leave page
const [unsavedChanges, setUnsavedChanges] = useState(false);
const [confirmationDialogOpen, setConfirmationDialogOpen] = useState(false);
2025-10-08 14:59:21 -05:00
const navigate = useNavigate();
const cameras = useMemo(() => {
if (!config) {
return [];
}
return Object.values(config.cameras)
2025-03-03 09:30:52 -06:00
.filter((conf) => conf.ui.dashboard && conf.enabled_in_config)
.sort((aConf, bConf) => aConf.ui.order - bConf.ui.order);
}, [config]);
const [selectedCamera, setSelectedCamera] = useState<string>("");
2025-03-03 09:30:52 -06:00
const { payload: allCameraStates } = useInitialCameraState(
cameras.length > 0 ? cameras[0].name : "",
true,
);
const cameraEnabledStates = useMemo(() => {
const states: Record<string, boolean> = {};
if (allCameraStates) {
Object.entries(allCameraStates).forEach(([camName, state]) => {
states[camName] = state.config?.enabled ?? false;
});
}
// fallback to config if ws data isnt available yet
cameras.forEach((cam) => {
if (!(cam.name in states)) {
states[cam.name] = cam.enabled;
}
});
return states;
}, [allCameraStates, cameras]);
const [filterZoneMask, setFilterZoneMask] = useState<PolygonType[]>();
const handleDialog = useCallback(
(save: boolean) => {
if (unsavedChanges && save) {
// TODO
}
setConfirmationDialogOpen(false);
setUnsavedChanges(false);
},
[unsavedChanges],
);
useEffect(() => {
2025-03-03 09:30:52 -06:00
if (cameras.length > 0) {
if (!selectedCamera) {
// Set to first enabled camera initially if no selection
const firstEnabledCamera =
cameras.find((cam) => cameraEnabledStates[cam.name]) || cameras[0];
setSelectedCamera(firstEnabledCamera.name);
2025-10-08 14:59:21 -05:00
} else if (
!cameraEnabledStates[selectedCamera] &&
2025-10-13 11:52:08 -05:00
pageToggle !== "cameraReview"
2025-10-08 14:59:21 -05:00
) {
2025-03-03 09:30:52 -06:00
// Switch to first enabled camera if current one is disabled, unless on "camera settings" page
const firstEnabledCamera =
cameras.find((cam) => cameraEnabledStates[cam.name]) || cameras[0];
if (firstEnabledCamera.name !== selectedCamera) {
setSelectedCamera(firstEnabledCamera.name);
}
}
}
2025-10-08 14:59:21 -05:00
}, [cameras, selectedCamera, cameraEnabledStates, pageToggle]);
2024-04-19 12:17:23 -05:00
2025-02-10 10:42:35 -06:00
useSearchEffect("page", (page: string) => {
if (allSettingsViews.includes(page as SettingsType)) {
2025-03-08 10:01:08 -06:00
// Restrict viewer to UI settings
2025-10-13 11:52:08 -05:00
if (
!isAdmin &&
!ALLOWED_VIEWS_FOR_VIEWER.includes(page as SettingsType)
) {
2025-10-08 14:59:21 -05:00
setPageToggle("ui");
2025-03-08 10:01:08 -06:00
} else {
2025-10-08 14:59:21 -05:00
setPageToggle(page as SettingsType);
2025-03-08 10:01:08 -06:00
}
2025-11-05 08:49:31 -06:00
if (isMobile) {
setContentMobileOpen(true);
}
2025-02-10 10:42:35 -06:00
}
2025-02-15 07:56:45 -06:00
// don't clear url params if we're creating a new object mask
2025-07-07 09:03:57 -05:00
return !(searchParams.has("object_mask") || searchParams.has("event_id"));
2025-02-10 10:42:35 -06:00
});
useSearchEffect("camera", (camera: string) => {
const cameraNames = cameras.map((c) => c.name);
if (cameraNames.includes(camera)) {
setSelectedCamera(camera);
2025-11-05 08:49:31 -06:00
if (isMobile) {
setContentMobileOpen(true);
}
2025-02-10 10:42:35 -06:00
}
2025-07-07 09:03:57 -05:00
// don't clear url params if we're creating a new object mask or trigger
return !(searchParams.has("object_mask") || searchParams.has("event_id"));
2025-02-10 10:42:35 -06:00
});
2024-04-27 12:02:01 -05:00
useEffect(() => {
2025-10-08 14:59:21 -05:00
if (!contentMobileOpen) {
document.title = t("documentTitle.default");
}
}, [t, contentMobileOpen]);
if (isMobile) {
return (
<>
{!contentMobileOpen && (
<div className="flex size-full flex-col">
<div className="sticky -top-2 z-50 mb-2 bg-background p-4">
<div className="flex items-center justify-center">
<Logo className="h-8" />
</div>
<div className="flex flex-row text-center">
2025-10-09 07:23:03 -05:00
<h2 className="ml-2 text-lg">
2025-10-08 16:36:23 -05:00
{t("menu.settings", { ns: "common" })}
2025-10-08 14:59:21 -05:00
</h2>
</div>
</div>
<div className="scrollbar-container overflow-y-auto px-4">
{settingsGroups.map((group) => {
const filteredItems = group.items.filter((item) =>
visibleSettingsViews.includes(item.key as SettingsType),
);
if (filteredItems.length === 0) return null;
return (
<div key={group.label} className="mb-3">
{filteredItems.length > 1 && (
<h3 className="mb-2 ml-2 text-sm font-medium text-secondary-foreground">
2025-10-08 16:36:23 -05:00
<div className="smart-capitalize">
{t("menu." + group.label)}
</div>
2025-10-08 14:59:21 -05:00
</h3>
)}
{filteredItems.map((item) => (
<MobileMenuItem
key={item.key}
item={item}
className={cn(filteredItems.length == 1 && "pl-2")}
onSelect={(key) => {
if (
!isAdmin &&
2025-10-13 11:52:08 -05:00
!ALLOWED_VIEWS_FOR_VIEWER.includes(
key as SettingsType,
)
2025-10-08 14:59:21 -05:00
) {
setPageToggle("ui");
} else {
setPageToggle(key as SettingsType);
}
setContentMobileOpen(true);
}}
/>
))}
</div>
);
})}
</div>
</div>
)}
<MobilePage
open={contentMobileOpen}
onOpenChange={setContentMobileOpen}
>
<MobilePageContent
className={cn("px-2", "scrollbar-container overflow-y-auto")}
>
<MobilePageHeader
className="top-0 mb-0"
onClose={() => navigate(-1)}
actions={
2025-10-13 11:52:08 -05:00
CAMERA_SELECT_BUTTON_PAGES.includes(pageToggle) ? (
2025-10-08 14:59:21 -05:00
<div className="flex items-center gap-2">
{pageToggle == "masksAndZones" && (
<ZoneMaskFilterButton
selectedZoneMask={filterZoneMask}
updateZoneMaskFilter={setFilterZoneMask}
/>
)}
<CameraSelectButton
allCameras={cameras}
selectedCamera={selectedCamera}
setSelectedCamera={setSelectedCamera}
cameraEnabledStates={cameraEnabledStates}
currentPage={page}
/>
</div>
) : undefined
}
>
<MobilePageTitle>{t("menu." + page)}</MobilePageTitle>
</MobilePageHeader>
<div className="p-2">
{(() => {
const CurrentComponent = getCurrentComponent(page);
if (!CurrentComponent) return null;
return (
<CurrentComponent
selectedCamera={selectedCamera}
setUnsavedChanges={setUnsavedChanges}
selectedZoneMask={filterZoneMask}
/>
);
})()}
</div>
</MobilePageContent>
</MobilePage>
{confirmationDialogOpen && (
<AlertDialog
open={confirmationDialogOpen}
onOpenChange={() => setConfirmationDialogOpen(false)}
>
<AlertDialogContent>
<AlertDialogHeader>
<AlertDialogTitle>
{t("dialog.unsavedChanges.title")}
</AlertDialogTitle>
<AlertDialogDescription>
{t("dialog.unsavedChanges.desc")}
</AlertDialogDescription>
</AlertDialogHeader>
<AlertDialogFooter>
<AlertDialogCancel onClick={() => handleDialog(false)}>
{t("button.cancel", { ns: "common" })}
</AlertDialogCancel>
<AlertDialogAction onClick={() => handleDialog(true)}>
{t("button.save", { ns: "common" })}
</AlertDialogAction>
</AlertDialogFooter>
</AlertDialogContent>
</AlertDialog>
)}
</>
);
}
2024-04-27 12:02:01 -05:00
return (
2025-10-08 14:59:21 -05:00
<div className="flex h-full flex-col">
<div className="flex min-h-16 items-center justify-between border-b border-secondary p-3">
<Heading as="h3" className="mb-0">
2025-10-08 16:36:23 -05:00
{t("menu.settings", { ns: "common" })}
2025-10-08 14:59:21 -05:00
</Heading>
2025-10-13 11:52:08 -05:00
{CAMERA_SELECT_BUTTON_PAGES.includes(page) && (
2025-10-08 14:59:21 -05:00
<div className="flex items-center gap-2">
{pageToggle == "masksAndZones" && (
<ZoneMaskFilterButton
selectedZoneMask={filterZoneMask}
updateZoneMaskFilter={setFilterZoneMask}
/>
)}
<CameraSelectButton
allCameras={cameras}
selectedCamera={selectedCamera}
setSelectedCamera={setSelectedCamera}
2025-03-03 09:30:52 -06:00
cameraEnabledStates={cameraEnabledStates}
currentPage={page}
/>
</div>
)}
</div>
2025-10-08 16:02:38 -05:00
<SidebarProvider>
<Sidebar variant="inset" className="relative mb-8 pl-0 pt-0">
2025-10-12 12:23:17 -05:00
<SidebarContent className="scrollbar-container mb-24 overflow-y-auto border-r-[1px] border-secondary bg-background py-2">
2025-10-08 14:59:21 -05:00
<SidebarMenu>
{settingsGroups.map((group) => {
const filteredItems = group.items.filter((item) =>
visibleSettingsViews.includes(item.key as SettingsType),
);
if (filteredItems.length === 0) return null;
return (
<SidebarGroup key={group.label} className="py-1">
{filteredItems.length === 1 ? (
<SidebarMenu>
<SidebarMenuItem>
<SidebarMenuButton
2025-10-08 16:02:38 -05:00
className="ml-0"
2025-10-08 14:59:21 -05:00
isActive={pageToggle === filteredItems[0].key}
onClick={() => {
if (
!isAdmin &&
2025-10-13 11:52:08 -05:00
!ALLOWED_VIEWS_FOR_VIEWER.includes(
2025-10-08 14:59:21 -05:00
filteredItems[0].key as SettingsType,
)
) {
setPageToggle("ui");
} else {
setPageToggle(
filteredItems[0].key as SettingsType,
);
}
}}
>
<div className="smart-capitalize">
{t("menu." + filteredItems[0].key)}
</div>
</SidebarMenuButton>
</SidebarMenuItem>
</SidebarMenu>
) : (
<>
<SidebarGroupLabel
className={cn(
2025-10-08 16:02:38 -05:00
"ml-2 cursor-default pl-0 text-sm",
2025-10-08 14:59:21 -05:00
filteredItems.some(
(item) => pageToggle === item.key,
)
? "text-primary"
: "text-sidebar-foreground/80",
)}
>
2025-10-08 16:36:23 -05:00
<div className="smart-capitalize">
{t("menu." + group.label)}
</div>
2025-10-08 14:59:21 -05:00
</SidebarGroupLabel>
2025-10-08 16:02:38 -05:00
<SidebarMenuSub className="mx-2 border-0">
2025-10-08 14:59:21 -05:00
{filteredItems.map((item) => (
<SidebarMenuSubItem key={item.key}>
<SidebarMenuSubButton
isActive={pageToggle === item.key}
onClick={() => {
if (
!isAdmin &&
2025-10-13 11:52:08 -05:00
!ALLOWED_VIEWS_FOR_VIEWER.includes(
2025-10-08 14:59:21 -05:00
item.key as SettingsType,
)
) {
setPageToggle("ui");
} else {
setPageToggle(item.key as SettingsType);
}
}}
>
<div className="w-full cursor-pointer smart-capitalize">
{t("menu." + item.key)}
</div>
</SidebarMenuSubButton>
</SidebarMenuSubItem>
))}
</SidebarMenuSub>
</>
)}
</SidebarGroup>
);
})}
</SidebarMenu>
</SidebarContent>
</Sidebar>
<SidebarInset>
2025-10-12 12:23:17 -05:00
<div className="scrollbar-container mb-24 flex-1 overflow-y-auto p-2 pr-0">
2025-10-08 14:59:21 -05:00
{(() => {
const CurrentComponent = getCurrentComponent(page);
if (!CurrentComponent) return null;
return (
<CurrentComponent
selectedCamera={selectedCamera}
setUnsavedChanges={setUnsavedChanges}
selectedZoneMask={filterZoneMask}
/>
);
})()}
</div>
</SidebarInset>
{confirmationDialogOpen && (
<AlertDialog
open={confirmationDialogOpen}
onOpenChange={() => setConfirmationDialogOpen(false)}
>
<AlertDialogContent>
<AlertDialogHeader>
<AlertDialogTitle>
{t("dialog.unsavedChanges.title")}
</AlertDialogTitle>
<AlertDialogDescription>
{t("dialog.unsavedChanges.desc")}
</AlertDialogDescription>
</AlertDialogHeader>
<AlertDialogFooter>
<AlertDialogCancel onClick={() => handleDialog(false)}>
{t("button.cancel", { ns: "common" })}
</AlertDialogCancel>
<AlertDialogAction onClick={() => handleDialog(true)}>
{t("button.save", { ns: "common" })}
</AlertDialogAction>
</AlertDialogFooter>
</AlertDialogContent>
</AlertDialog>
2024-10-15 18:25:59 -06:00
)}
2025-10-08 14:59:21 -05:00
</SidebarProvider>
</div>
);
}
type CameraSelectButtonProps = {
allCameras: CameraConfig[];
selectedCamera: string;
setSelectedCamera: React.Dispatch<React.SetStateAction<string>>;
2025-03-03 09:30:52 -06:00
cameraEnabledStates: Record<string, boolean>;
currentPage: SettingsType;
};
function CameraSelectButton({
allCameras,
selectedCamera,
setSelectedCamera,
2025-03-03 09:30:52 -06:00
cameraEnabledStates,
currentPage,
}: CameraSelectButtonProps) {
const { t } = useTranslation(["views/settings"]);
const [open, setOpen] = useState(false);
if (!allCameras.length) {
2025-03-03 09:30:52 -06:00
return null;
}
const trigger = (
<Button
className="flex items-center gap-2 bg-selected smart-capitalize hover:bg-selected"
2024-10-22 17:07:42 -05:00
aria-label="Select a camera"
size="sm"
>
<FaVideo className="text-background dark:text-primary" />
2024-05-14 10:06:44 -05:00
<div className="hidden text-background dark:text-primary md:block">
2025-08-27 01:15:01 +08:00
{selectedCamera == undefined ? (
t("cameraSetting.noCamera")
) : (
<CameraNameLabel camera={selectedCamera} />
)}
</div>
</Button>
);
const content = (
<>
{isMobile && (
<>
<DropdownMenuLabel className="flex justify-center">
{t("cameraSetting.camera")}
</DropdownMenuLabel>
<DropdownMenuSeparator />
</>
)}
<div className="scrollbar-container mb-5 h-auto max-h-[80dvh] overflow-y-auto overflow-x-hidden p-4 md:mb-1">
<div className="flex flex-col gap-2.5">
2025-03-03 09:30:52 -06:00
{allCameras.map((item) => {
const isEnabled = cameraEnabledStates[item.name];
2025-10-13 11:52:08 -05:00
const isCameraSettingsPage = currentPage === "cameraReview";
2025-03-03 09:30:52 -06:00
return (
<FilterSwitch
key={item.name}
isChecked={item.name === selectedCamera}
2025-08-27 01:15:01 +08:00
label={item.name}
2025-11-07 22:02:06 +08:00
type={"camera"}
2025-03-03 09:30:52 -06:00
onCheckedChange={(isChecked) => {
if (isChecked && (isEnabled || isCameraSettingsPage)) {
setSelectedCamera(item.name);
setOpen(false);
}
}}
disabled={!isEnabled && !isCameraSettingsPage}
/>
);
})}
</div>
</div>
</>
);
if (isMobile) {
return (
<Drawer
open={open}
onOpenChange={(open: boolean) => {
if (!open) {
setSelectedCamera(selectedCamera);
}
setOpen(open);
}}
>
<DrawerTrigger asChild>{trigger}</DrawerTrigger>
<DrawerContent className="max-h-[75dvh] overflow-hidden">
{content}
</DrawerContent>
</Drawer>
);
}
return (
<DropdownMenu
2024-05-30 08:39:14 -05:00
modal={false}
open={open}
onOpenChange={(open: boolean) => {
if (!open) {
setSelectedCamera(selectedCamera);
}
setOpen(open);
}}
>
<DropdownMenuTrigger asChild>{trigger}</DropdownMenuTrigger>
<DropdownMenuContent>{content}</DropdownMenuContent>
</DropdownMenu>
);
}