+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]>
86 lines
3.6 KiB
TypeScript
86 lines
3.6 KiB
TypeScript
'use client'
|
|
|
|
import AppUnavailable from '@/app/components/base/app-unavailable'
|
|
import Loading from '@/app/components/base/loading'
|
|
import { useWebAppStore } from '@/context/web-app-context'
|
|
import { useGetUserCanAccessApp } from '@/service/access-control'
|
|
import { useGetWebAppInfo, useGetWebAppMeta, useGetWebAppParams } from '@/service/use-share'
|
|
import { webAppLogout } from '@/service/webapp-auth'
|
|
import { usePathname, useRouter, useSearchParams } from 'next/navigation'
|
|
import React, { useCallback, useEffect } from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
|
|
const AuthenticatedLayout = ({ children }: { children: React.ReactNode }) => {
|
|
const { t } = useTranslation()
|
|
const shareCode = useWebAppStore(s => s.shareCode)
|
|
const updateAppInfo = useWebAppStore(s => s.updateAppInfo)
|
|
const updateAppParams = useWebAppStore(s => s.updateAppParams)
|
|
const updateWebAppMeta = useWebAppStore(s => s.updateWebAppMeta)
|
|
const updateUserCanAccessApp = useWebAppStore(s => s.updateUserCanAccessApp)
|
|
const { isFetching: isFetchingAppParams, data: appParams, error: appParamsError } = useGetWebAppParams()
|
|
const { isFetching: isFetchingAppInfo, data: appInfo, error: appInfoError } = useGetWebAppInfo()
|
|
const { isFetching: isFetchingAppMeta, data: appMeta, error: appMetaError } = useGetWebAppMeta()
|
|
const { data: userCanAccessApp, error: useCanAccessAppError } = useGetUserCanAccessApp({ appId: appInfo?.app_id, isInstalledApp: false })
|
|
|
|
useEffect(() => {
|
|
if (appInfo)
|
|
updateAppInfo(appInfo)
|
|
if (appParams)
|
|
updateAppParams(appParams)
|
|
if (appMeta)
|
|
updateWebAppMeta(appMeta)
|
|
updateUserCanAccessApp(Boolean(userCanAccessApp && userCanAccessApp?.result))
|
|
}, [appInfo, appMeta, appParams, updateAppInfo, updateAppParams, updateUserCanAccessApp, updateWebAppMeta, userCanAccessApp])
|
|
|
|
const router = useRouter()
|
|
const pathname = usePathname()
|
|
const searchParams = useSearchParams()
|
|
const getSigninUrl = useCallback(() => {
|
|
const params = new URLSearchParams(searchParams)
|
|
params.delete('message')
|
|
params.set('redirect_url', pathname)
|
|
return `/webapp-signin?${params.toString()}`
|
|
}, [searchParams, pathname])
|
|
|
|
const backToHome = useCallback(async () => {
|
|
await webAppLogout(shareCode!)
|
|
const url = getSigninUrl()
|
|
router.replace(url)
|
|
}, [getSigninUrl, router, webAppLogout, shareCode])
|
|
|
|
if (appInfoError) {
|
|
return <div className='flex h-full items-center justify-center'>
|
|
<AppUnavailable unknownReason={appInfoError.message} />
|
|
</div>
|
|
}
|
|
if (appParamsError) {
|
|
return <div className='flex h-full items-center justify-center'>
|
|
<AppUnavailable unknownReason={appParamsError.message} />
|
|
</div>
|
|
}
|
|
if (appMetaError) {
|
|
return <div className='flex h-full items-center justify-center'>
|
|
<AppUnavailable unknownReason={appMetaError.message} />
|
|
</div>
|
|
}
|
|
if (useCanAccessAppError) {
|
|
return <div className='flex h-full items-center justify-center'>
|
|
<AppUnavailable unknownReason={useCanAccessAppError.message} />
|
|
</div>
|
|
}
|
|
if (userCanAccessApp && !userCanAccessApp.result) {
|
|
return <div className='flex h-full flex-col items-center justify-center gap-y-2'>
|
|
<AppUnavailable className='h-auto w-auto' code={403} unknownReason='no permission.' />
|
|
<span className='system-sm-regular cursor-pointer text-text-tertiary' onClick={backToHome}>{t('common.userProfile.logout')}</span>
|
|
</div>
|
|
}
|
|
if (isFetchingAppInfo || isFetchingAppParams || isFetchingAppMeta) {
|
|
return <div className='flex h-full items-center justify-center'>
|
|
<Loading />
|
|
</div>
|
|
}
|
|
return <>{children}</>
|
|
}
|
|
|
|
export default React.memo(AuthenticatedLayout)
|