mirror of
https://github.com/langgenius/dify.git
synced 2026-07-21 18:58:35 +08:00
19 lines
555 B
TypeScript
19 lines
555 B
TypeScript
import { useCallback } from 'react'
|
|
import InstallBundle from '@/app/components/plugins/install-plugin/install-bundle'
|
|
import { useStore } from './store'
|
|
|
|
const PluginDependency = () => {
|
|
const dependencies = useStore((s) => s.dependencies)
|
|
|
|
const handleCancelInstallBundle = useCallback(() => {
|
|
const { setDependencies } = useStore.getState()
|
|
setDependencies([])
|
|
}, [])
|
|
|
|
if (!dependencies.length) return null
|
|
|
|
return <InstallBundle fromDSLPayload={dependencies} onClose={handleCancelInstallBundle} />
|
|
}
|
|
|
|
export default PluginDependency
|