mirror of
https://github.com/langgenius/dify.git
synced 2025-11-08 15:31:02 +00:00
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)
|
|
return
|
|
}
|
|
|
|
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
|