File size: 3,138 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 |
"use client"
import { ColorModeButton } from "@/components/docs/color-mode-button"
import { Logo } from "@/components/logo"
import { SocialLinks } from "@/components/social-links"
import { docsConfig } from "@/docs.config"
import {
Button,
Container,
Dialog,
HStack,
IconButton,
Spacer,
Stack,
chakra,
} from "@chakra-ui/react"
import Link from "next/link"
import { AiOutlineClose, AiOutlineMenu } from "react-icons/ai"
const HeaderRoot = chakra(Container, {
base: {
minH: "64px",
display: "flex",
flexDir: "row",
alignItems: "center",
gap: { base: "1", md: "4" },
},
})
const LogoLink = () => (
<HStack asChild focusRing="outside">
<Link href="/" aria-label="Chakra UI, Back to homepage">
<Logo color="fg" />
</Link>
</HStack>
)
const NAV_LINKS = [
{ title: "Docs", url: "/docs/get-started/installation" },
{ title: "Playground", url: "/playground" },
{ title: "Guides", url: "/guides" },
{ title: "Blog", url: "/blog" },
]
const DesktopNav = () => (
<HStack gap="2" as="nav" aria-label="primary navigation">
<HStack gap="4" minH="48px" display={{ base: "none", md: "flex" }}>
{NAV_LINKS.map((item) => (
<HStack
minH="8"
px="3"
rounded="md"
focusRing="outside"
asChild
fontWeight="medium"
textStyle="sm"
key={item.title}
>
<Link href={item.url}>{item.title}</Link>
</HStack>
))}
<SocialLinks items={[{ type: "github", href: docsConfig.repoUrl }]} />
</HStack>
<ColorModeButton />
</HStack>
)
const MobileNavTrigger = () => (
<Dialog.Trigger asChild>
<IconButton
display={{ base: "flex", md: "none" }}
aria-label="Open menu"
fontSize="md"
color="fg"
variant="ghost"
>
<AiOutlineMenu />
</IconButton>
</Dialog.Trigger>
)
const MobileNavCloseTrigger = () => (
<Dialog.CloseTrigger asChild pos="inherit" inset="0">
<IconButton
aria-label="Close menu"
fontSize="md"
color="fg"
variant="ghost"
>
<AiOutlineClose />
</IconButton>
</Dialog.CloseTrigger>
)
const MobileNavContent = () => (
<Container>
<Stack py="4" gap="4" color="white">
{NAV_LINKS.map((item) => (
<Button key={item.title} variant="outline" colorPalette="teal" asChild>
<Link href={item.url}>{item.title}</Link>
</Button>
))}
</Stack>
</Container>
)
const MobileNav = () => {
return (
<Dialog.Root>
<MobileNavTrigger />
<Dialog.Backdrop />
<Dialog.Positioner>
<Dialog.Content m="0" shadow="none" borderRadius="0" bg="bg">
<HeaderRoot>
<LogoLink />
<Spacer />
<MobileNavCloseTrigger />
</HeaderRoot>
<MobileNavContent />
</Dialog.Content>
</Dialog.Positioner>
</Dialog.Root>
)
}
export const HeaderSection = () => {
return (
<Container mt="2">
<HStack>
<LogoLink />
<Spacer />
<DesktopNav />
<MobileNav />
</HStack>
</Container>
)
}
|