mirror of
https://github.com/langgenius/dify.git
synced 2025-07-31 13:28:20 +00:00

Co-authored-by: Joel <iamjoel007@gmail.com> Co-authored-by: crazywoola <427733928@qq.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Novice <novice12185727@gmail.com>
30 lines
900 B
TypeScript
30 lines
900 B
TypeScript
'use client'
|
|
import type { FC } from 'react'
|
|
import React from 'react'
|
|
import cn from '@/utils/classnames'
|
|
import { MARKETPLACE_API_PREFIX } from '@/config'
|
|
import Icon from '@/app/components/plugins/card/base/card-icon'
|
|
|
|
const MAX_DISPLAY_COUNT = 14
|
|
type Props = {
|
|
className?: string
|
|
plugins: string[]
|
|
}
|
|
|
|
const PluginsSelected: FC<Props> = ({
|
|
className,
|
|
plugins,
|
|
}) => {
|
|
const isShowAll = plugins.length < MAX_DISPLAY_COUNT
|
|
const displayPlugins = plugins.slice(0, MAX_DISPLAY_COUNT)
|
|
return (
|
|
<div className={cn('flex items-center space-x-1', className)}>
|
|
{displayPlugins.map(plugin => (
|
|
<Icon key={plugin} size='tiny' src={`${MARKETPLACE_API_PREFIX}/plugins/${plugin}/icon`} />
|
|
))}
|
|
{!isShowAll && <div className='system-xs-medium text-text-tertiary'>+{plugins.length - MAX_DISPLAY_COUNT}</div>}
|
|
</div>
|
|
)
|
|
}
|
|
export default React.memo(PluginsSelected)
|