mirror of
https://github.com/langgenius/dify.git
synced 2026-09-05 00:31:19 +08:00
38 lines
1.1 KiB
TypeScript
38 lines
1.1 KiB
TypeScript
'use client'
|
|
|
|
import type { RecentAppResponse } from '@dify/contracts/api/console/apps/types.gen'
|
|
import type { RecommendedAppResponse } from '@dify/contracts/api/console/explore/types.gen'
|
|
import { STEP_BY_STEP_TOUR_TARGETS } from '@/app/components/step-by-step-tour/target-registry'
|
|
import dynamic from '@/next/dynamic'
|
|
import { ContinueWork } from '../continue-work/continue-work'
|
|
|
|
const LearnDify = dynamic(() => import('@/app/components/explore/learn-dify'), { ssr: false })
|
|
|
|
export function HomeRecommendations({
|
|
canCreate,
|
|
continueWorkApps,
|
|
forceShowLearnDify,
|
|
onCreate,
|
|
onTry,
|
|
}: {
|
|
canCreate: boolean
|
|
continueWorkApps: RecentAppResponse[]
|
|
forceShowLearnDify?: boolean
|
|
onCreate: (app: RecommendedAppResponse) => void
|
|
onTry: (app: RecommendedAppResponse) => void
|
|
}) {
|
|
return (
|
|
<>
|
|
<ContinueWork apps={continueWorkApps} />
|
|
<LearnDify
|
|
canCreate={canCreate}
|
|
className="pb-0"
|
|
forceVisible={forceShowLearnDify}
|
|
onCreate={onCreate}
|
|
onTry={({ app }) => onTry(app)}
|
|
stepByStepTourTarget={STEP_BY_STEP_TOUR_TARGETS.home}
|
|
/>
|
|
</>
|
|
)
|
|
}
|