+5
![dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>](/assets/img/avatar_default.png)
![autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>](/assets/img/avatar_default.png)







Jingyi
GitHub
yyh
Joel
hjlarry
fatelei
Asuka Minato
autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Xiyuan Chen
gigglewang
Yunlu Wen
chariri
Evan
yyh
9b74df21d0
Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: yyh <[email protected]> Co-authored-by: Joel <[email protected]> Co-authored-by: hjlarry <[email protected]> Co-authored-by: fatelei <[email protected]> Co-authored-by: Asuka Minato <[email protected]> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Xiyuan Chen <[email protected]> Co-authored-by: gigglewang <[email protected]> Co-authored-by: Yunlu Wen <[email protected]> Co-authored-by: chariri <[email protected]> Co-authored-by: Evan <[email protected]> Co-authored-by: yyh <[email protected]>
35 lines
1004 B
TypeScript
35 lines
1004 B
TypeScript
'use client'
|
|
import type { FC } from 'react'
|
|
import { cn } from '@langgenius/dify-ui/cn'
|
|
import * as React from 'react'
|
|
import Icon from '@/app/components/plugins/card/base/card-icon'
|
|
import { MARKETPLACE_API_PREFIX } from '@/config'
|
|
|
|
const MAX_DISPLAY_COUNT = 14
|
|
type Props = Readonly<{
|
|
className?: string
|
|
plugins: string[]
|
|
}>
|
|
|
|
const PluginsSelected: FC<Props> = ({
|
|
className,
|
|
plugins,
|
|
}) => {
|
|
const displayPlugins = plugins.slice(0, MAX_DISPLAY_COUNT)
|
|
const hiddenPluginsCount = plugins.length - displayPlugins.length
|
|
return (
|
|
<div className={cn('flex min-w-0 items-center overflow-hidden', className)}>
|
|
{displayPlugins.map(plugin => (
|
|
<Icon key={plugin} size="tiny" src={`${MARKETPLACE_API_PREFIX}/plugins/${plugin}/icon`} />
|
|
))}
|
|
{hiddenPluginsCount > 0 && (
|
|
<div className="shrink-0 system-xs-medium text-text-tertiary">
|
|
+
|
|
{hiddenPluginsCount}
|
|
</div>
|
|
)}
|
|
</div>
|
|
)
|
|
}
|
|
export default React.memo(PluginsSelected)
|