mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 19:59:50 +08:00
d3d617239f
Co-authored-by: Joel <iamjoel007@gmail.com>
43 lines
1023 B
TypeScript
43 lines
1023 B
TypeScript
'use client'
|
|
|
|
import { SWRConfig } from 'swr'
|
|
import { useEffect, useState } from 'react'
|
|
import type { ReactNode } from 'react'
|
|
import { useRouter, useSearchParams } from 'next/navigation'
|
|
|
|
type SwrInitorProps = {
|
|
children: ReactNode
|
|
}
|
|
const SwrInitor = ({
|
|
children,
|
|
}: SwrInitorProps) => {
|
|
const router = useRouter()
|
|
const searchParams = useSearchParams()
|
|
const consoleToken = searchParams.get('console_token')
|
|
const consoleTokenFromLocalStorage = localStorage?.getItem('console_token')
|
|
const [init, setInit] = useState(false)
|
|
|
|
useEffect(() => {
|
|
if (!(consoleToken || consoleTokenFromLocalStorage))
|
|
router.replace('/signin')
|
|
|
|
if (consoleToken) {
|
|
localStorage?.setItem('console_token', consoleToken!)
|
|
router.replace('/apps', { forceOptimisticNavigation: false } as any)
|
|
}
|
|
setInit(true)
|
|
}, [])
|
|
|
|
return init
|
|
? (
|
|
<SWRConfig value={{
|
|
shouldRetryOnError: false,
|
|
}}>
|
|
{children}
|
|
</SWRConfig>
|
|
)
|
|
: null
|
|
}
|
|
|
|
export default SwrInitor
|