mirror of
https://github.com/langgenius/dify.git
synced 2026-09-02 22:36:15 +08:00
chore(web): add dedicated home loading boundary (#40135)
This commit is contained in:
parent
ae8cb996c7
commit
af9d2d00a3
5
web/app/(commonLayout)/(home)/loading.tsx
Normal file
5
web/app/(commonLayout)/(home)/loading.tsx
Normal file
@ -0,0 +1,5 @@
|
||||
import { HomeLoading } from '@/features/home/loading'
|
||||
|
||||
export default function Loading() {
|
||||
return <HomeLoading />
|
||||
}
|
||||
18
web/features/home/loading.tsx
Normal file
18
web/features/home/loading.tsx
Normal file
@ -0,0 +1,18 @@
|
||||
'use client'
|
||||
|
||||
import { useSuspenseQuery } from '@tanstack/react-query'
|
||||
import { systemFeaturesQueryOptions } from '@/features/system-features/client'
|
||||
import { HomeShell } from './home-shell'
|
||||
import { HomeSkeleton } from './home-skeleton'
|
||||
|
||||
export function HomeLoading() {
|
||||
const { data: systemFeatures } = useSuspenseQuery(systemFeaturesQueryOptions())
|
||||
|
||||
return (
|
||||
<HomeShell>
|
||||
<div className="flex flex-1 flex-col overflow-y-auto">
|
||||
<HomeSkeleton showBanner={systemFeatures.enable_explore_banner} />
|
||||
</div>
|
||||
</HomeShell>
|
||||
)
|
||||
}
|
||||
@ -1,5 +1,4 @@
|
||||
import { dehydrate, HydrationBoundary } from '@tanstack/react-query'
|
||||
import { Suspense } from 'react'
|
||||
import { getQueryClient } from '@/app/get-query-client'
|
||||
import {
|
||||
getSystemFeaturesQueryClient,
|
||||
@ -8,8 +7,6 @@ import {
|
||||
import { getLocaleOnServer } from '@/i18n-config/server'
|
||||
import { getServerConsoleClientContext, serverConsoleQuery } from '@/service/server'
|
||||
import { HomeContent } from './home-content/home-content'
|
||||
import { HomeShell } from './home-shell'
|
||||
import { HomeSkeleton } from './home-skeleton'
|
||||
|
||||
export async function HomePage() {
|
||||
const homeQueryClient = getQueryClient()
|
||||
@ -47,17 +44,7 @@ export async function HomePage() {
|
||||
|
||||
return (
|
||||
<HydrationBoundary state={dehydratedState}>
|
||||
<Suspense
|
||||
fallback={
|
||||
<HomeShell>
|
||||
<div className="flex flex-1 flex-col overflow-y-auto">
|
||||
<HomeSkeleton showBanner={enableExploreBanner} />
|
||||
</div>
|
||||
</HomeShell>
|
||||
}
|
||||
>
|
||||
<HomeContent />
|
||||
</Suspense>
|
||||
<HomeContent />
|
||||
</HydrationBoundary>
|
||||
)
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user