mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-12 22:25:24 +03:00
Combine account and settings menus on mobile
This commit is contained in:
parent
350bffd3d3
commit
3b8180e670
@ -3,6 +3,7 @@ import {
|
|||||||
LuGithub,
|
LuGithub,
|
||||||
LuLifeBuoy,
|
LuLifeBuoy,
|
||||||
LuList,
|
LuList,
|
||||||
|
LuLogOut,
|
||||||
LuMoon,
|
LuMoon,
|
||||||
LuPenSquare,
|
LuPenSquare,
|
||||||
LuRotateCw,
|
LuRotateCw,
|
||||||
@ -56,7 +57,7 @@ import {
|
|||||||
TooltipTrigger,
|
TooltipTrigger,
|
||||||
} from "@/components/ui/tooltip";
|
} from "@/components/ui/tooltip";
|
||||||
import ActivityIndicator from "../indicators/activity-indicator";
|
import ActivityIndicator from "../indicators/activity-indicator";
|
||||||
import { isDesktop } from "react-device-detect";
|
import { isDesktop, isMobile } from "react-device-detect";
|
||||||
import { Drawer, DrawerContent, DrawerTrigger } from "../ui/drawer";
|
import { Drawer, DrawerContent, DrawerTrigger } from "../ui/drawer";
|
||||||
import {
|
import {
|
||||||
Dialog,
|
Dialog,
|
||||||
@ -68,11 +69,18 @@ import {
|
|||||||
import { TooltipPortal } from "@radix-ui/react-tooltip";
|
import { TooltipPortal } from "@radix-ui/react-tooltip";
|
||||||
import { cn } from "@/lib/utils";
|
import { cn } from "@/lib/utils";
|
||||||
import { baseUrl } from "@/api/baseUrl";
|
import { baseUrl } from "@/api/baseUrl";
|
||||||
|
import useSWR from "swr";
|
||||||
|
|
||||||
type GeneralSettingsProps = {
|
type GeneralSettingsProps = {
|
||||||
className?: string;
|
className?: string;
|
||||||
};
|
};
|
||||||
export default function GeneralSettings({ className }: GeneralSettingsProps) {
|
export default function GeneralSettings({ className }: GeneralSettingsProps) {
|
||||||
|
const { data: profile } = useSWR("profile");
|
||||||
|
const { data: config } = useSWR("config");
|
||||||
|
const logoutUrl = config?.proxy?.logout_url || "/api/logout";
|
||||||
|
|
||||||
|
// settings
|
||||||
|
|
||||||
const { theme, colorScheme, setTheme, setColorScheme } = useTheme();
|
const { theme, colorScheme, setTheme, setColorScheme } = useTheme();
|
||||||
const [restartDialogOpen, setRestartDialogOpen] = useState(false);
|
const [restartDialogOpen, setRestartDialogOpen] = useState(false);
|
||||||
const [restartingSheetOpen, setRestartingSheetOpen] = useState(false);
|
const [restartingSheetOpen, setRestartingSheetOpen] = useState(false);
|
||||||
@ -144,6 +152,28 @@ export default function GeneralSettings({ className }: GeneralSettingsProps) {
|
|||||||
}
|
}
|
||||||
>
|
>
|
||||||
<div className="scrollbar-container w-full flex-col overflow-y-auto overflow-x-hidden">
|
<div className="scrollbar-container w-full flex-col overflow-y-auto overflow-x-hidden">
|
||||||
|
{isMobile && (
|
||||||
|
<>
|
||||||
|
<DropdownMenuLabel>
|
||||||
|
Current User: {profile?.username || "anonymous"}
|
||||||
|
</DropdownMenuLabel>
|
||||||
|
<DropdownMenuSeparator
|
||||||
|
className={isDesktop ? "mt-3" : "mt-1"}
|
||||||
|
/>
|
||||||
|
<MenuItem
|
||||||
|
className={
|
||||||
|
isDesktop
|
||||||
|
? "cursor-pointer"
|
||||||
|
: "flex items-center p-2 text-sm"
|
||||||
|
}
|
||||||
|
>
|
||||||
|
<a className="flex" href={logoutUrl}>
|
||||||
|
<LuLogOut className="mr-2 size-4" />
|
||||||
|
<span>Logout</span>
|
||||||
|
</a>
|
||||||
|
</MenuItem>
|
||||||
|
</>
|
||||||
|
)}
|
||||||
<DropdownMenuLabel>System</DropdownMenuLabel>
|
<DropdownMenuLabel>System</DropdownMenuLabel>
|
||||||
<DropdownMenuSeparator />
|
<DropdownMenuSeparator />
|
||||||
<DropdownMenuGroup className={isDesktop ? "" : "flex flex-col"}>
|
<DropdownMenuGroup className={isDesktop ? "" : "flex flex-col"}>
|
||||||
|
|||||||
@ -35,7 +35,6 @@ function Bottombar() {
|
|||||||
<NavItem key={item.id} className="p-2" item={item} Icon={item.icon} />
|
<NavItem key={item.id} className="p-2" item={item} Icon={item.icon} />
|
||||||
))}
|
))}
|
||||||
<GeneralSettings className="p-2" />
|
<GeneralSettings className="p-2" />
|
||||||
<AccountSettings className="p-2" />
|
|
||||||
<StatusAlertNav className="p-2" />
|
<StatusAlertNav className="p-2" />
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user