mirror of
https://github.com/langgenius/dify.git
synced 2026-07-24 13:06:09 -04:00
a84c2d36a3
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
22 lines
650 B
TypeScript
22 lines
650 B
TypeScript
'use client'
|
|
import type { FC } from 'react'
|
|
import type { UpdatePluginModalType } from '../types'
|
|
import * as React from 'react'
|
|
import { PluginSource } from '../types'
|
|
import UpdateFromGitHub from './from-github'
|
|
import UpdateFromMarketplace from './from-market-place'
|
|
|
|
const UpdatePlugin: FC<UpdatePluginModalType> = ({
|
|
type,
|
|
marketPlace,
|
|
github,
|
|
onCancel,
|
|
onSave,
|
|
}) => {
|
|
if (type === PluginSource.github) {
|
|
return <UpdateFromGitHub payload={github!} onSave={onSave} onCancel={onCancel} />
|
|
}
|
|
return <UpdateFromMarketplace payload={marketPlace!} onSave={onSave} onCancel={onCancel} />
|
|
}
|
|
export default React.memo(UpdatePlugin)
|