mirror of
https://github.com/langgenius/dify.git
synced 2026-05-05 18:08:07 +08:00
feat: plugin no data
This commit is contained in:
@ -1,28 +1,31 @@
|
||||
'use client'
|
||||
import type { FC } from 'react'
|
||||
import React from 'react'
|
||||
import NoPluginSelected from './no-plugin-selected'
|
||||
import type { AUTO_UPDATE_MODE } from './types'
|
||||
|
||||
type Props = {
|
||||
updateMode: AUTO_UPDATE_MODE
|
||||
value: string[] // plugin ids
|
||||
onChange: (value: string[]) => void
|
||||
}
|
||||
|
||||
const PluginsPicker: FC<Props> = ({
|
||||
updateMode,
|
||||
value,
|
||||
onChange,
|
||||
}) => {
|
||||
const hasSelected = value.length > 0
|
||||
return (
|
||||
<div className='rounded-xl'>
|
||||
<div className='mt-2 rounded-[10px] bg-background-section-burn p-2.5'>
|
||||
{hasSelected ? (
|
||||
<div className='flex justify-between'>
|
||||
<div>Selected plugins will not auto-update</div>
|
||||
</div>
|
||||
) : (
|
||||
<div className='system-xs-regular text-center text-text-tertiary'>
|
||||
Only selected plugins will auto-update. No plugins are currently selected, so no plugins will auto-update.
|
||||
</div>
|
||||
<NoPluginSelected updateMode={updateMode} />
|
||||
)}
|
||||
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user