148 lines
4.4 KiB
TypeScript
148 lines
4.4 KiB
TypeScript
import React, { useEffect, useState } from 'react'
|
|
import { getCookie, setCookie } from 'cookies-next'
|
|
import { useRouter } from 'next/router'
|
|
import { useTranslation } from 'next-i18next'
|
|
|
|
import Link from 'next/link'
|
|
import * as Switch from '@radix-ui/react-switch'
|
|
|
|
import AboutModal from '~components/AboutModal'
|
|
import AccountModal from '~components/AccountModal'
|
|
import LoginModal from '~components/LoginModal'
|
|
import SignupModal from '~components/SignupModal'
|
|
|
|
import './index.scss'
|
|
import { accountState } from '~utils/accountState'
|
|
|
|
interface Props {
|
|
authenticated: boolean
|
|
username?: string
|
|
logout?: () => void
|
|
}
|
|
|
|
const HeaderMenu = (props: Props) => {
|
|
const router = useRouter()
|
|
const { t } = useTranslation('common')
|
|
|
|
const accountCookie = getCookie('account')
|
|
const accountData: AccountCookie = accountCookie
|
|
? JSON.parse(accountCookie as string)
|
|
: null
|
|
|
|
const userCookie = getCookie('user')
|
|
const userData: UserCookie = userCookie
|
|
? JSON.parse(userCookie as string)
|
|
: null
|
|
|
|
const localeCookie = getCookie('NEXT_LOCALE')
|
|
|
|
const [checked, setChecked] = useState(false)
|
|
|
|
useEffect(() => {
|
|
const locale = localeCookie
|
|
setChecked(locale === 'ja' ? true : false)
|
|
}, [localeCookie])
|
|
|
|
function handleCheckedChange(value: boolean) {
|
|
const language = value ? 'ja' : 'en'
|
|
setCookie('NEXT_LOCALE', language, { path: '/' })
|
|
router.push(router.asPath, undefined, { locale: language })
|
|
}
|
|
|
|
function authItems() {
|
|
return (
|
|
<nav>
|
|
<ul className="Menu auth">
|
|
<div className="MenuGroup">
|
|
<li className="MenuItem profile">
|
|
<Link href={`/${accountData.username}` || ''} passHref>
|
|
<div>
|
|
<span>{accountData.username}</span>
|
|
<img
|
|
alt={userData.picture}
|
|
className={`profile ${accountState.account.user?.element}`}
|
|
srcSet={`/profile/${accountState.account.user?.picture}.png,
|
|
/profile/${userData.picture}@2x.png 2x`}
|
|
src={`/profile/${userData.picture}.png`}
|
|
/>
|
|
</div>
|
|
</Link>
|
|
</li>
|
|
<li className="MenuItem">
|
|
<Link href={`/saved` || ''}>{t('menu.saved')}</Link>
|
|
</li>
|
|
</div>
|
|
<div className="MenuGroup">
|
|
<li className="MenuItem">
|
|
<Link href="/teams">{t('menu.teams')}</Link>
|
|
</li>
|
|
|
|
<li className="MenuItem disabled">
|
|
<div>
|
|
<span>{t('menu.guides')}</span>
|
|
<i className="tag">{t('coming_soon')}</i>
|
|
</div>
|
|
</li>
|
|
</div>
|
|
<div className="MenuGroup">
|
|
<AboutModal />
|
|
<AccountModal
|
|
username={accountState.account.user?.username}
|
|
picture={accountState.account.user?.picture}
|
|
gender={accountState.account.user?.gender}
|
|
language={accountState.account.user?.language}
|
|
theme={accountState.account.user?.theme}
|
|
/>
|
|
<li className="MenuItem" onClick={props.logout}>
|
|
<span>{t('menu.logout')}</span>
|
|
</li>
|
|
</div>
|
|
</ul>
|
|
</nav>
|
|
)
|
|
}
|
|
|
|
function unauthItems() {
|
|
return (
|
|
<ul className="Menu unauth">
|
|
<div className="MenuGroup">
|
|
<li className="MenuItem language">
|
|
<span>{t('menu.language')}</span>
|
|
<Switch.Root
|
|
className="Switch"
|
|
onCheckedChange={handleCheckedChange}
|
|
checked={checked}
|
|
>
|
|
<Switch.Thumb className="Thumb" />
|
|
<span className="left">JP</span>
|
|
<span className="right">EN</span>
|
|
</Switch.Root>
|
|
</li>
|
|
</div>
|
|
<div className="MenuGroup">
|
|
<li className="MenuItem">
|
|
<Link href="/teams">{t('menu.teams')}</Link>
|
|
</li>
|
|
|
|
<li className="MenuItem disabled">
|
|
<div>
|
|
<span>{t('menu.guides')}</span>
|
|
<i className="tag">{t('coming_soon')}</i>
|
|
</div>
|
|
</li>
|
|
</div>
|
|
<div className="MenuGroup">
|
|
<AboutModal />
|
|
</div>
|
|
<div className="MenuGroup">
|
|
<LoginModal />
|
|
<SignupModal />
|
|
</div>
|
|
</ul>
|
|
)
|
|
}
|
|
|
|
return props.authenticated ? authItems() : unauthItems()
|
|
}
|
|
|
|
export default HeaderMenu
|