feat: plugin no data

This commit is contained in:
Joel
2025-06-23 18:09:32 +08:00
parent 8b290ac7a1
commit 29cac85b12
5 changed files with 23 additions and 9 deletions

View File

@ -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>
)
}