+24





![autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>](/assets/img/avatar_default.png)
![Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>](/assets/img/avatar_default.png)


-LAN-
GitHub
Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
Yunlu Wen
Joel
GareArc
NFish
Davide Delbianco
minglu7
Ponder
crazywoola
gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
heyszt
Asuka Minato
Guangdong Liu
Eric Guo
NeatGuyCoding
XlKsyt
Dhruv Gorasiya
crazywoola
github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
lyzno1
hj24
GuanMu
非法操作
Copilot
Tonlo
Yusuke Yamada
Novice
kenwoodjw
Ademílson Tonato
znn
yangzheli
9a5f214623
Signed-off-by: NeatGuyCoding <[email protected]> Signed-off-by: lyzno1 <[email protected]> Signed-off-by: kenwoodjw <[email protected]> Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: Yunlu Wen <[email protected]> Co-authored-by: Joel <[email protected]> Co-authored-by: GareArc <[email protected]> Co-authored-by: NFish <[email protected]> Co-authored-by: Davide Delbianco <[email protected]> Co-authored-by: minglu7 <[email protected]> Co-authored-by: Ponder <[email protected]> Co-authored-by: crazywoola <[email protected]> Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Co-authored-by: heyszt <[email protected]> Co-authored-by: Asuka Minato <[email protected]> Co-authored-by: Guangdong Liu <[email protected]> Co-authored-by: Eric Guo <[email protected]> Co-authored-by: NeatGuyCoding <[email protected]> Co-authored-by: XlKsyt <[email protected]> Co-authored-by: Dhruv Gorasiya <[email protected]> Co-authored-by: crazywoola <[email protected]> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: lyzno1 <[email protected]> Co-authored-by: hj24 <[email protected]> Co-authored-by: GuanMu <[email protected]> Co-authored-by: 非法操作 <[email protected]> Co-authored-by: Copilot <[email protected]> Co-authored-by: Tonlo <[email protected]> Co-authored-by: Yusuke Yamada <[email protected]> Co-authored-by: Novice <[email protected]> Co-authored-by: kenwoodjw <[email protected]> Co-authored-by: Ademílson Tonato <[email protected]> Co-authored-by: znn <[email protected]> Co-authored-by: yangzheli <[email protected]>
59 lines
2.0 KiB
TypeScript
59 lines
2.0 KiB
TypeScript
import { useTranslation } from 'react-i18next'
|
|
import { useRouter } from 'next/navigation'
|
|
import Button from '@/app/components/base/button'
|
|
import { useAppContext } from '@/context/app-context'
|
|
import Avatar from '@/app/components/base/avatar'
|
|
import { Triangle } from '@/app/components/base/icons/src/public/education'
|
|
import { useLogout } from '@/service/use-common'
|
|
|
|
const UserInfo = () => {
|
|
const router = useRouter()
|
|
const { t } = useTranslation()
|
|
const { userProfile } = useAppContext()
|
|
|
|
const { mutateAsync: logout } = useLogout()
|
|
const handleLogout = async () => {
|
|
await logout()
|
|
|
|
localStorage.removeItem('setup_status')
|
|
// Tokens are now stored in cookies and cleared by backend
|
|
|
|
router.push('/signin')
|
|
}
|
|
|
|
return (
|
|
<div className='relative flex items-center justify-between rounded-xl border-[4px] border-components-panel-on-panel-item-bg bg-gradient-to-r from-background-gradient-bg-fill-chat-bg-2 to-background-gradient-bg-fill-chat-bg-1 pb-6 pl-6 pr-8 pt-9 shadow-shadow-shadow-5'>
|
|
<div className='absolute left-0 top-0 flex items-center'>
|
|
<div className='system-2xs-semibold-uppercase flex h-[22px] items-center bg-components-panel-on-panel-item-bg pl-2 pt-1 text-text-accent-light-mode-only'>
|
|
{t('education.currentSigned')}
|
|
</div>
|
|
<Triangle className='h-[22px] w-4 text-components-panel-on-panel-item-bg' />
|
|
</div>
|
|
<div className='flex items-center'>
|
|
<Avatar
|
|
className='mr-4'
|
|
avatar={userProfile.avatar_url}
|
|
name={userProfile.name}
|
|
size={48}
|
|
/>
|
|
<div className='pt-1.5'>
|
|
<div className='system-md-semibold text-text-primary'>
|
|
{userProfile.name}
|
|
</div>
|
|
<div className='system-sm-regular text-text-secondary'>
|
|
{userProfile.email}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<Button
|
|
variant='secondary'
|
|
onClick={handleLogout}
|
|
>
|
|
{t('common.userProfile.logout')}
|
|
</Button>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default UserInfo
|