mirror of https://github.com/sunface/rust-course
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
232 lines
8.3 KiB
232 lines
8.3 KiB
import {
|
|
chakra,
|
|
Flex,
|
|
Button,
|
|
HStack,
|
|
Icon,
|
|
IconButton,
|
|
Link,
|
|
useColorMode,
|
|
useColorModeValue,
|
|
useDisclosure,
|
|
useUpdateEffect,
|
|
Menu,
|
|
MenuButton,
|
|
MenuList,
|
|
MenuItem,
|
|
MenuDivider,
|
|
Image,
|
|
Modal,
|
|
ModalOverlay,
|
|
ModalContent,
|
|
ModalBody,
|
|
ModalCloseButton,
|
|
Text,
|
|
Box,
|
|
VStack,
|
|
} from "@chakra-ui/react"
|
|
import siteConfig from "configs/site-config"
|
|
import { useViewportScroll } from "framer-motion"
|
|
import NextLink from "next/link"
|
|
import React from "react"
|
|
import { FaMoon, FaSun, FaUserAlt, FaRegSun, FaSignOutAlt, FaRegBookmark, FaChartBar, FaHome, FaArrowRight, FaGithub, FaFileAlt, FaBookmark, FaEdit } from "react-icons/fa"
|
|
import Logo, { LogoIcon } from "src/components/logo"
|
|
import { MobileNavButton, MobileNavContent } from "../mobile-nav"
|
|
import AlgoliaSearch from "src/components/search/algolia-search"
|
|
import useSession from "hooks/use-session"
|
|
import { requestApi } from "utils/axios/request"
|
|
import { removeToken, saveToken } from "utils/axios/getToken"
|
|
import { Session } from "src/types/session"
|
|
import navLinks from "./nav-links"
|
|
import { useRouter } from "next/router"
|
|
import events from "utils/events"
|
|
import storage from "utils/localStorage"
|
|
import { logout } from "utils/session"
|
|
|
|
|
|
const DiscordIcon = (props) => (
|
|
<svg viewBox="0 0 146 146" {...props}>
|
|
<path
|
|
fill="currentColor"
|
|
d="M107.75 125.001s-4.5-5.375-8.25-10.125c16.375-4.625 22.625-14.875 22.625-14.875-5.125 3.375-10 5.75-14.375 7.375-6.25 2.625-12.25 4.375-18.125 5.375-12 2.25-23 1.625-32.375-.125-7.125-1.375-13.25-3.375-18.375-5.375-2.875-1.125-6-2.5-9.125-4.25-.375-.25-.75-.375-1.125-.625-.25-.125-.375-.25-.5-.375-2.25-1.25-3.5-2.125-3.5-2.125s6 10 21.875 14.75c-3.75 4.75-8.375 10.375-8.375 10.375-27.625-.875-38.125-19-38.125-19 0-40.25 18-72.875 18-72.875 18-13.5 35.125-13.125 35.125-13.125l1.25 1.5c-22.5 6.5-32.875 16.375-32.875 16.375s2.75-1.5 7.375-3.625c13.375-5.875 24-7.5 28.375-7.875.75-.125 1.375-.25 2.125-.25 7.625-1 16.25-1.25 25.25-.25 11.875 1.375 24.625 4.875 37.625 12 0 0-9.875-9.375-31.125-15.875l1.75-2S110 19.626 128 33.126c0 0 18 32.625 18 72.875 0 0-10.625 18.125-38.25 19zM49.625 66.626c-7.125 0-12.75 6.25-12.75 13.875s5.75 13.875 12.75 13.875c7.125 0 12.75-6.25 12.75-13.875.125-7.625-5.625-13.875-12.75-13.875zm45.625 0c-7.125 0-12.75 6.25-12.75 13.875s5.75 13.875 12.75 13.875c7.125 0 12.75-6.25 12.75-13.875s-5.625-13.875-12.75-13.875z"
|
|
fillRule="nonzero"
|
|
/>
|
|
</svg>
|
|
)
|
|
|
|
const GithubIcon = (props) => (
|
|
<svg viewBox="0 0 20 20" {...props}>
|
|
<path
|
|
fill="currentColor"
|
|
d="M10 0a10 10 0 0 0-3.16 19.49c.5.1.68-.22.68-.48l-.01-1.7c-2.78.6-3.37-1.34-3.37-1.34-.46-1.16-1.11-1.47-1.11-1.47-.9-.62.07-.6.07-.6 1 .07 1.53 1.03 1.53 1.03.9 1.52 2.34 1.08 2.91.83.1-.65.35-1.09.63-1.34-2.22-.25-4.55-1.11-4.55-4.94 0-1.1.39-1.99 1.03-2.69a3.6 3.6 0 0 1 .1-2.64s.84-.27 2.75 1.02a9.58 9.58 0 0 1 5 0c1.91-1.3 2.75-1.02 2.75-1.02.55 1.37.2 2.4.1 2.64.64.7 1.03 1.6 1.03 2.69 0 3.84-2.34 4.68-4.57 4.93.36.31.68.92.68 1.85l-.01 2.75c0 .26.18.58.69.48A10 10 0 0 0 10 0"
|
|
/>
|
|
</svg>
|
|
)
|
|
|
|
|
|
function HeaderContent() {
|
|
const router = useRouter()
|
|
const { pathname } = router
|
|
const mobileNav = useDisclosure()
|
|
|
|
const session: Session = useSession()
|
|
|
|
const { toggleColorMode: toggleMode } = useColorMode()
|
|
const text = useColorModeValue("dark", "light")
|
|
const SwitchIcon = useColorModeValue(FaMoon, FaSun)
|
|
const mobileNavBtnRef = React.useRef<HTMLButtonElement>()
|
|
|
|
useUpdateEffect(() => {
|
|
mobileNavBtnRef.current?.focus()
|
|
}, [mobileNav.isOpen])
|
|
|
|
const login = () => {
|
|
storage.set("current-page", pathname)
|
|
router.push('/login')
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<Flex w="100%" h="100%" align="center" justify="space-between" px={{ base: "4", md: "6" }}>
|
|
<Flex align="center">
|
|
<NextLink href="/" passHref>
|
|
<chakra.a display={{ base: "none", md: "block" }} style={{ marginTop: '-5px' }} aria-label="Chakra UI, Back to homepage">
|
|
<Logo width="130" />
|
|
</chakra.a>
|
|
</NextLink>
|
|
<NextLink href="/" passHref>
|
|
<chakra.a display={{ base: "block", md: "none" }} aria-label="Chakra UI, Back to homepage">
|
|
<LogoIcon />
|
|
</chakra.a>
|
|
</NextLink>
|
|
|
|
<HStack display={{ base: "none", md: "flex" }} ml={{ base: 1, md: 4, lg: 12 }} fontSize="1rem" minWidth="250px">
|
|
{navLinks.map(link => <Link px="4" py="0.7rem" rounded="md" href={link.url} key={link.url} color={useColorModeValue("gray.700", "whiteAlpha.900")} aria-current={pathname === link.url ? "page" : undefined} _activeLink={{ bg: useColorModeValue("transparent", "rgba(48, 140, 122, 0.3)"), color: useColorModeValue("teal.500", "teal.200"), fontWeight: "bold", }} _hover={null} _focus={null}>{link.title}</Link>)}
|
|
</HStack>
|
|
</Flex>
|
|
|
|
<Flex
|
|
w="100%"
|
|
maxW="600px"
|
|
align="center"
|
|
color="gray.400"
|
|
>
|
|
<AlgoliaSearch />
|
|
<HStack spacing="5" display={{ base: "none", md: "flex" }}>
|
|
<Link
|
|
isExternal
|
|
aria-label="Go to Chakra UI GitHub page"
|
|
href={siteConfig.repo.url}
|
|
>
|
|
<IconButton
|
|
size="md"
|
|
fontSize="lg"
|
|
aria-label={`Switch to ${text} mode`}
|
|
variant="ghost"
|
|
color="current"
|
|
ml={{ base: "0", md: "3" }}
|
|
_focus={null}
|
|
icon={<FaGithub />}
|
|
/>
|
|
</Link>
|
|
</HStack>
|
|
<IconButton
|
|
size="md"
|
|
fontSize="lg"
|
|
aria-label={`Switch to ${text} mode`}
|
|
variant="ghost"
|
|
color="current"
|
|
ml={{ base: "0", md: "1" }}
|
|
onClick={toggleMode}
|
|
_focus={null}
|
|
icon={<SwitchIcon />}
|
|
/>
|
|
{session ?
|
|
<Menu>
|
|
<MenuButton
|
|
as={IconButton}
|
|
bg="transparent"
|
|
_focus={null}
|
|
icon={session.user.avatar !== '' ? <Image
|
|
boxSize="2.8em"
|
|
borderRadius="full"
|
|
src="https://placekitten.com/100/100"
|
|
alt="Fluffybuns the destroyer"
|
|
/> :
|
|
<FaUserAlt />
|
|
}
|
|
aria-label="Options"
|
|
ml={{ base: "0", md: "2" }}
|
|
/>
|
|
<MenuList>
|
|
<MenuItem icon={<FaUserAlt fontSize="16" />}>
|
|
<span>Sunface</span>
|
|
</MenuItem>
|
|
<MenuDivider />
|
|
{<MenuItem as="a" icon={<FaEdit fontSize="16" />} href="/editor">编辑中心</MenuItem>}
|
|
<MenuItem icon={<FaBookmark fontSize="16" />}>书签收藏</MenuItem>
|
|
<MenuDivider />
|
|
<MenuItem icon={<FaRegSun fontSize="16" />}>偏好设置</MenuItem>
|
|
<MenuItem onClick={() => logout()} icon={<FaSignOutAlt fontSize="16" />}>账号登出</MenuItem>
|
|
</MenuList>
|
|
</Menu> :
|
|
<Button
|
|
as="a"
|
|
ml="2"
|
|
colorScheme="teal"
|
|
fontSize=".8rem"
|
|
onClick={() => login()}
|
|
// leftIcon={<FaUserAlt />}
|
|
>
|
|
SIGN IN
|
|
</Button>
|
|
}
|
|
<MobileNavButton
|
|
ref={mobileNavBtnRef}
|
|
aria-label="Open Menu"
|
|
onClick={mobileNav.onOpen}
|
|
/>
|
|
</Flex>
|
|
</Flex>
|
|
<MobileNavContent isOpen={mobileNav.isOpen} onClose={mobileNav.onClose} />
|
|
</>
|
|
)
|
|
}
|
|
|
|
function Header(props) {
|
|
const bg = useColorModeValue("white", "gray.800")
|
|
const ref = React.useRef<HTMLHeadingElement>()
|
|
const [y, setY] = React.useState(0)
|
|
const { height = 0 } = ref.current?.getBoundingClientRect() ?? {}
|
|
|
|
const { scrollY } = useViewportScroll()
|
|
React.useEffect(() => {
|
|
return scrollY.onChange(() => setY(scrollY.get()))
|
|
}, [scrollY])
|
|
|
|
return (
|
|
<chakra.header
|
|
ref={ref}
|
|
shadow={y > height ? "sm" : undefined}
|
|
transition="box-shadow 0.2s"
|
|
pos="fixed"
|
|
top="0"
|
|
zIndex="3"
|
|
bg={bg}
|
|
left="0"
|
|
right="0"
|
|
borderTop="4px solid"
|
|
borderTopColor="teal.400"
|
|
width="full"
|
|
{...props}
|
|
>
|
|
<chakra.div height="4.5rem" mx="auto" maxW="1200px">
|
|
<HeaderContent />
|
|
</chakra.div>
|
|
</chakra.header>
|
|
)
|
|
}
|
|
|
|
export default Header
|
|
|