mirror of
https://github.com/langgenius/dify.git
synced 2026-07-21 18:58:35 +08:00
37 lines
1.1 KiB
TypeScript
37 lines
1.1 KiB
TypeScript
'use client'
|
|
|
|
import type { ToolCategory } from '@/app/components/integrations/routes'
|
|
import type { ToolWithProvider } from '@/app/components/workflow/types'
|
|
import { NewMCPButton } from '@/app/components/tools/mcp/create-card'
|
|
import { NewCustomToolButton } from '@/app/components/tools/provider/custom-create-card'
|
|
|
|
type ToolProviderCreateActionProps = {
|
|
activeTab: ToolCategory
|
|
hasCategoryCollections: boolean
|
|
isCollectionListLoading: boolean
|
|
onCustomToolCreated: () => void
|
|
onMCPProviderCreated: (providerId: string) => void
|
|
}
|
|
|
|
const ToolProviderCreateAction = ({
|
|
activeTab,
|
|
hasCategoryCollections,
|
|
isCollectionListLoading,
|
|
onCustomToolCreated,
|
|
onMCPProviderCreated,
|
|
}: ToolProviderCreateActionProps) => {
|
|
if (activeTab === 'mcp' && hasCategoryCollections)
|
|
return (
|
|
<NewMCPButton
|
|
handleCreate={(provider: ToolWithProvider) => onMCPProviderCreated(provider.id)}
|
|
/>
|
|
)
|
|
|
|
if (activeTab === 'api' && !isCollectionListLoading && hasCategoryCollections)
|
|
return <NewCustomToolButton onRefreshData={onCustomToolCreated} />
|
|
|
|
return null
|
|
}
|
|
|
|
export default ToolProviderCreateAction
|