mirror of
https://github.com/langgenius/dify.git
synced 2026-06-23 04:11:09 +08:00
Co-authored-by: zhangx1n <zhangxin@dify.ai> Co-authored-by: yyh <yuanyouhuilyz@gmail.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
52 lines
2.2 KiB
TypeScript
52 lines
2.2 KiB
TypeScript
import type { ReactNode } from 'react'
|
|
import * as React from 'react'
|
|
import InSiteMessageNotification from '@/app/components/app/in-site-message/notification'
|
|
import AmplitudeProvider from '@/app/components/base/amplitude'
|
|
import { GoogleAnalyticsScripts } from '@/app/components/base/ga'
|
|
import Zendesk from '@/app/components/base/zendesk'
|
|
import { EducationVerifyActionRecorder } from '@/app/components/education-verify-action-recorder'
|
|
import { GotoAnything } from '@/app/components/goto-anything'
|
|
import MainNavLayout from '@/app/components/main-nav/layout'
|
|
import { OAuthRegistrationAnalytics } from '@/app/components/oauth-registration-analytics'
|
|
import ReadmePanel from '@/app/components/plugins/readme-panel'
|
|
import WorkflowGeneratorMount from '@/app/components/workflow/workflow-generator/mount'
|
|
import { AppContextProvider } from '@/context/app-context-provider'
|
|
import { EventEmitterContextProvider } from '@/context/event-emitter-provider'
|
|
import { ModalContextProvider } from '@/context/modal-context-provider'
|
|
import { ProviderContextProvider } from '@/context/provider-context-provider'
|
|
import PartnerStack from '../components/billing/partner-stack'
|
|
import { CommonLayoutHydrationBoundary } from './hydration-boundary'
|
|
import { RoleRouteGuard } from './role-route-guard'
|
|
|
|
export default async function Layout({ children }: { children: ReactNode }) {
|
|
return (
|
|
<>
|
|
<GoogleAnalyticsScripts />
|
|
<AmplitudeProvider />
|
|
<OAuthRegistrationAnalytics />
|
|
<EducationVerifyActionRecorder />
|
|
<CommonLayoutHydrationBoundary>
|
|
<AppContextProvider>
|
|
<EventEmitterContextProvider>
|
|
<ProviderContextProvider>
|
|
<ModalContextProvider>
|
|
<MainNavLayout>
|
|
<RoleRouteGuard>
|
|
{children}
|
|
</RoleRouteGuard>
|
|
</MainNavLayout>
|
|
<InSiteMessageNotification />
|
|
<PartnerStack />
|
|
<ReadmePanel />
|
|
<GotoAnything />
|
|
<WorkflowGeneratorMount />
|
|
</ModalContextProvider>
|
|
</ProviderContextProvider>
|
|
</EventEmitterContextProvider>
|
|
</AppContextProvider>
|
|
</CommonLayoutHydrationBoundary>
|
|
<Zendesk />
|
|
</>
|
|
)
|
|
}
|