+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]>
88 lines
2.3 KiB
TypeScript
88 lines
2.3 KiB
TypeScript
'use client'
|
|
|
|
import { SWRConfig } from 'swr'
|
|
import { useCallback, useEffect, useState } from 'react'
|
|
import type { ReactNode } from 'react'
|
|
import { usePathname, useRouter, useSearchParams } from 'next/navigation'
|
|
import { fetchSetupStatus } from '@/service/common'
|
|
import {
|
|
EDUCATION_VERIFYING_LOCALSTORAGE_ITEM,
|
|
EDUCATION_VERIFY_URL_SEARCHPARAMS_ACTION,
|
|
} from '@/app/education-apply/constants'
|
|
import { resolvePostLoginRedirect } from '../signin/utils/post-login-redirect'
|
|
|
|
type SwrInitializerProps = {
|
|
children: ReactNode
|
|
}
|
|
const SwrInitializer = ({
|
|
children,
|
|
}: SwrInitializerProps) => {
|
|
const router = useRouter()
|
|
const searchParams = useSearchParams()
|
|
// Tokens are now stored in cookies, no need to check localStorage
|
|
const pathname = usePathname()
|
|
const [init, setInit] = useState(false)
|
|
|
|
const isSetupFinished = useCallback(async () => {
|
|
try {
|
|
if (localStorage.getItem('setup_status') === 'finished')
|
|
return true
|
|
const setUpStatus = await fetchSetupStatus()
|
|
if (setUpStatus.step !== 'finished') {
|
|
localStorage.removeItem('setup_status')
|
|
return false
|
|
}
|
|
localStorage.setItem('setup_status', 'finished')
|
|
return true
|
|
}
|
|
catch (error) {
|
|
console.error(error)
|
|
return false
|
|
}
|
|
}, [])
|
|
|
|
useEffect(() => {
|
|
(async () => {
|
|
const action = searchParams.get('action')
|
|
|
|
if (action === EDUCATION_VERIFY_URL_SEARCHPARAMS_ACTION)
|
|
localStorage.setItem(EDUCATION_VERIFYING_LOCALSTORAGE_ITEM, 'yes')
|
|
|
|
try {
|
|
const isFinished = await isSetupFinished()
|
|
if (!isFinished) {
|
|
router.replace('/install')
|
|
return
|
|
}
|
|
|
|
const redirectUrl = resolvePostLoginRedirect(searchParams)
|
|
if (redirectUrl)
|
|
location.replace(redirectUrl)
|
|
else
|
|
router.replace(pathname)
|
|
|
|
setInit(true)
|
|
}
|
|
catch {
|
|
router.replace('/signin')
|
|
}
|
|
})()
|
|
}, [isSetupFinished, router, pathname, searchParams])
|
|
|
|
return init
|
|
? (
|
|
<SWRConfig value={{
|
|
shouldRetryOnError: false,
|
|
revalidateOnFocus: false,
|
|
dedupingInterval: 60000,
|
|
focusThrottleInterval: 5000,
|
|
provider: () => new Map(),
|
|
}}>
|
|
{children}
|
|
</SWRConfig>
|
|
)
|
|
: null
|
|
}
|
|
|
|
export default SwrInitializer
|