feat: add theme toggle to navigation bar

This commit is contained in:
Rafael Panisset 2025-03-15 22:25:13 -03:00
parent 21c3ad0ecc
commit d4ed80e751
2 changed files with 103 additions and 76 deletions

View File

@ -14,6 +14,7 @@ import APP_ROUTE from "@/lib/app-route.ts";
import useAuth from "@/features/auth/hooks/use-auth.ts";
import { CustomAvatar } from "@/components/ui/custom-avatar.tsx";
import { useTranslation } from "react-i18next";
import { ThemeToggle } from '@/components/ui/theme-toggle';
export default function TopMenu() {
const { t } = useTranslation();
@ -28,6 +29,8 @@ export default function TopMenu() {
}
return (
<>
<ThemeToggle />
<Menu width={250} position="bottom-end" withArrow shadow={"lg"}>
<Menu.Target>
<UnstyledButton>
@ -108,5 +111,6 @@ export default function TopMenu() {
</Menu.Item>
</Menu.Dropdown>
</Menu>
</>
);
}

View File

@ -0,0 +1,23 @@
import { ActionIcon, useComputedColorScheme, useMantineColorScheme } from '@mantine/core';
import { IconSun, IconMoon } from '@tabler/icons-react';
export function ThemeToggle() {
const { setColorScheme } = useMantineColorScheme();
const computedColorScheme = useComputedColorScheme('light', { getInitialValueInEffect: true });
return (
<ActionIcon
onClick={() => setColorScheme(computedColorScheme === 'light' ? 'dark' : 'light')}
variant="transparent"
size="md"
color="foreground"
aria-label="Toggle color scheme"
>
{computedColorScheme === 'light' ? (
<IconMoon size={18} stroke={1.5} />
) : (
<IconSun size={18} stroke={1.5} />
)}
</ActionIcon>
);
}