add chat and features group to mobile menu

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
Josh Hawkins 2026-04-25 07:52:02 -05:00
parent bc0fc4dc46
commit 96a4ad4db5
2 changed files with 35 additions and 18 deletions

View File

@ -257,6 +257,7 @@
"export": "Export", "export": "Export",
"actions": "Actions", "actions": "Actions",
"uiPlayground": "UI Playground", "uiPlayground": "UI Playground",
"features": "Features",
"faceLibrary": "Face Library", "faceLibrary": "Face Library",
"classification": "Classification", "classification": "Classification",
"chat": "Chat", "chat": "Chat",

View File

@ -6,6 +6,7 @@ import {
LuLifeBuoy, LuLifeBuoy,
LuList, LuList,
LuLogOut, LuLogOut,
LuMessageSquare,
LuMoon, LuMoon,
LuSquarePen, LuSquarePen,
LuScanFace, LuScanFace,
@ -482,8 +483,15 @@ export default function GeneralSettings({ className }: GeneralSettingsProps) {
</Link> </Link>
</> </>
)} )}
{isAdmin && isMobile && config?.face_recognition.enabled && ( </DropdownMenuGroup>
{isMobile && isAdmin && (
<> <>
<DropdownMenuLabel className="mt-1">
{t("menu.features")}
</DropdownMenuLabel>
<DropdownMenuSeparator />
<DropdownMenuGroup className="flex flex-col">
{config?.face_recognition.enabled && (
<Link to="/faces"> <Link to="/faces">
<MenuItem <MenuItem
className="flex w-full items-center p-2 text-sm" className="flex w-full items-center p-2 text-sm"
@ -493,10 +501,7 @@ export default function GeneralSettings({ className }: GeneralSettingsProps) {
<span>{t("menu.faceLibrary")}</span> <span>{t("menu.faceLibrary")}</span>
</MenuItem> </MenuItem>
</Link> </Link>
</>
)} )}
{isAdmin && isMobile && (
<>
<Link to="/classification"> <Link to="/classification">
<MenuItem <MenuItem
className="flex w-full items-center p-2 text-sm" className="flex w-full items-center p-2 text-sm"
@ -506,9 +511,20 @@ export default function GeneralSettings({ className }: GeneralSettingsProps) {
<span>{t("menu.classification")}</span> <span>{t("menu.classification")}</span>
</MenuItem> </MenuItem>
</Link> </Link>
</> {config?.genai?.model !== "none" && (
<Link to="/chat">
<MenuItem
className="flex w-full items-center p-2 text-sm"
aria-label={t("menu.chat")}
>
<LuMessageSquare className="mr-2 size-4" />
<span>{t("menu.chat")}</span>
</MenuItem>
</Link>
)} )}
</DropdownMenuGroup> </DropdownMenuGroup>
</>
)}
<DropdownMenuLabel className={isDesktop ? "mt-3" : "mt-1"}> <DropdownMenuLabel className={isDesktop ? "mt-3" : "mt-1"}>
{t("menu.appearance")} {t("menu.appearance")}
</DropdownMenuLabel> </DropdownMenuLabel>