mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-05-30 18:15:15 +08:00

Co-authored-by: NFish <douxc512@gmail.com> Co-authored-by: zxhlyh <jasonapring2015@outlook.com> Co-authored-by: twwu <twwu@dify.ai> Co-authored-by: jZonG <jzongcode@gmail.com>
100 lines
3.6 KiB
TypeScript
100 lines
3.6 KiB
TypeScript
import Tooltip from '@/app/components/base/tooltip'
|
|
import Link from 'next/link'
|
|
import { SwitchPluginVersion } from '@/app/components/workflow/nodes/_base/components/switch-plugin-version'
|
|
import { useInstalledPluginList } from '@/service/use-plugins'
|
|
import { RiErrorWarningFill } from '@remixicon/react'
|
|
|
|
type StatusIndicatorsProps = {
|
|
needsConfiguration: boolean
|
|
modelProvider: boolean
|
|
inModelList: boolean
|
|
disabled: boolean
|
|
pluginInfo: any
|
|
t: any
|
|
}
|
|
|
|
const StatusIndicators = ({ needsConfiguration, modelProvider, inModelList, disabled, pluginInfo, t }: StatusIndicatorsProps) => {
|
|
const { data: pluginList } = useInstalledPluginList()
|
|
const renderTooltipContent = (title: string, description?: string, linkText?: string, linkHref?: string) => {
|
|
return (
|
|
<div className='flex w-[240px] max-w-[240px] flex-col gap-1 px-1 py-1.5' onClick={e => e.stopPropagation()}>
|
|
<div className='title-xs-semi-bold text-text-primary'>{title}</div>
|
|
{description && (
|
|
<div className='body-xs-regular min-w-[200px] text-text-secondary'>
|
|
{description}
|
|
</div>
|
|
)}
|
|
{linkText && linkHref && (
|
|
<div className='body-xs-regular z-[100] cursor-pointer text-text-accent'>
|
|
<Link
|
|
href={linkHref}
|
|
onClick={(e) => {
|
|
e.stopPropagation()
|
|
}}
|
|
>
|
|
{linkText}
|
|
</Link>
|
|
</div>
|
|
)}
|
|
</div>
|
|
)
|
|
}
|
|
// const installedPluginUniqueIdentifier = pluginList?.plugins.find(plugin => plugin.name === pluginInfo.name)?.plugin_unique_identifier
|
|
return (
|
|
<>
|
|
{/* plugin installed and model is in model list but disabled */}
|
|
{/* plugin installed from github/local and model is not in model list */}
|
|
{!needsConfiguration && modelProvider && disabled && (
|
|
<>
|
|
{inModelList ? (
|
|
<Tooltip
|
|
popupContent={t('workflow.nodes.agent.modelSelectorTooltips.deprecated')}
|
|
asChild={false}
|
|
needsDelay={false}
|
|
>
|
|
<RiErrorWarningFill className='h-4 w-4 text-text-destructive' />
|
|
</Tooltip>
|
|
) : !pluginInfo ? (
|
|
<Tooltip
|
|
popupContent={renderTooltipContent(
|
|
t('workflow.nodes.agent.modelNotSupport.title'),
|
|
t('workflow.nodes.agent.modelNotSupport.desc'),
|
|
t('workflow.nodes.agent.linkToPlugin'),
|
|
'/plugins',
|
|
)}
|
|
asChild={false}
|
|
needsDelay={true}
|
|
>
|
|
<RiErrorWarningFill className='h-4 w-4 text-text-destructive' />
|
|
</Tooltip>
|
|
) : (
|
|
<SwitchPluginVersion
|
|
tooltip={renderTooltipContent(
|
|
t('workflow.nodes.agent.modelNotSupport.title'),
|
|
t('workflow.nodes.agent.modelNotSupport.descForVersionSwitch'),
|
|
)}
|
|
uniqueIdentifier={pluginList?.plugins.find(plugin => plugin.name === pluginInfo.name)?.plugin_unique_identifier ?? ''}
|
|
/>
|
|
)}
|
|
</>
|
|
)}
|
|
{!modelProvider && !pluginInfo && (
|
|
<Tooltip
|
|
popupContent={renderTooltipContent(
|
|
t('workflow.nodes.agent.modelNotInMarketplace.title'),
|
|
t('workflow.nodes.agent.modelNotInMarketplace.desc'),
|
|
t('workflow.nodes.agent.linkToPlugin'),
|
|
'/plugins',
|
|
)}
|
|
asChild={false}
|
|
needsDelay
|
|
>
|
|
<RiErrorWarningFill className='h-4 w-4 text-text-destructive' />
|
|
</Tooltip>
|
|
)}
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default StatusIndicators
|