169 lines
6.5 KiB
TypeScript
169 lines
6.5 KiB
TypeScript
'use client'
|
|
import type { FC } from 'react'
|
|
import React, { useMemo } from 'react'
|
|
import { useContext } from 'use-context-selector'
|
|
import {
|
|
RiArrowRightUpLine,
|
|
RiBugLine,
|
|
RiHardDrive3Line,
|
|
RiLoginCircleLine,
|
|
RiVerifiedBadgeLine,
|
|
} from '@remixicon/react'
|
|
import { useTranslation } from 'react-i18next'
|
|
import { usePluginPageContext } from '../plugin-page/context'
|
|
import { Github } from '../../base/icons/src/public/common'
|
|
import Badge from '../../base/badge'
|
|
import { type PluginDetail, PluginSource } from '../types'
|
|
import CornerMark from '../card/base/corner-mark'
|
|
import Description from '../card/base/description'
|
|
import OrgInfo from '../card/base/org-info'
|
|
import Title from '../card/base/title'
|
|
import Action from './action'
|
|
import cn from '@/utils/classnames'
|
|
import I18n from '@/context/i18n'
|
|
|
|
import { API_PREFIX, MARKETPLACE_URL_PREFIX } from '@/config'
|
|
|
|
type Props = {
|
|
className?: string
|
|
plugin: PluginDetail
|
|
}
|
|
|
|
const PluginItem: FC<Props> = ({
|
|
className,
|
|
plugin,
|
|
}) => {
|
|
const { locale } = useContext(I18n)
|
|
const { t } = useTranslation()
|
|
const currentPluginDetail = usePluginPageContext(v => v.currentPluginDetail)
|
|
const setCurrentPluginDetail = usePluginPageContext(v => v.setCurrentPluginDetail)
|
|
const mutateInstalledPluginList = usePluginPageContext(v => v.mutateInstalledPluginList)
|
|
|
|
const {
|
|
source,
|
|
tenant_id,
|
|
installation_id,
|
|
endpoints_active,
|
|
meta,
|
|
plugin_id,
|
|
version,
|
|
} = plugin
|
|
const { category, author, name, label, description, icon, verified } = plugin.declaration
|
|
|
|
const orgName = useMemo(() => {
|
|
return [PluginSource.github, PluginSource.marketplace].includes(source) ? author : ''
|
|
}, [source, author])
|
|
|
|
const tLocale = useMemo(() => {
|
|
return locale.replace('-', '_')
|
|
}, [locale])
|
|
return (
|
|
<div
|
|
className={cn(
|
|
'p-1 rounded-xl border-[1.5px] border-background-section-burn',
|
|
currentPluginDetail?.plugin_id === plugin_id && 'border-components-option-card-option-selected-border',
|
|
source === PluginSource.debugging
|
|
? 'bg-[repeating-linear-gradient(-45deg,rgba(16,24,40,0.04),rgba(16,24,40,0.04)_5px,rgba(0,0,0,0.02)_5px,rgba(0,0,0,0.02)_10px)]'
|
|
: 'bg-background-section-burn',
|
|
)}
|
|
onClick={() => setCurrentPluginDetail(plugin)}
|
|
>
|
|
<div className={cn('relative p-4 pb-3 border-[0.5px] border-components-panel-border bg-components-panel-on-panel-item-bg hover-bg-components-panel-on-panel-item-bg rounded-xl shadow-xs', className)}>
|
|
<CornerMark text={category} />
|
|
{/* Header */}
|
|
<div className="flex">
|
|
<div className='flex items-center justify-center w-10 h-10 overflow-hidden border-components-panel-border-subtle border-[1px] rounded-xl'>
|
|
<img
|
|
className='w-full h-full'
|
|
src={`${API_PREFIX}/workspaces/current/plugin/icon?tenant_id=${tenant_id}&filename=${icon}`}
|
|
alt={`plugin-${installation_id}-logo`}
|
|
/>
|
|
</div>
|
|
<div className="ml-3 w-0 grow">
|
|
<div className="flex items-center h-5">
|
|
<Title title={label[tLocale]} />
|
|
{verified && <RiVerifiedBadgeLine className="shrink-0 ml-0.5 w-4 h-4 text-text-accent" />}
|
|
<Badge className='ml-1' text={plugin.version} />
|
|
</div>
|
|
<div className='flex items-center justify-between'>
|
|
<Description text={description[tLocale]} descriptionLineRows={1}></Description>
|
|
<div onClick={e => e.stopPropagation()}>
|
|
<Action
|
|
installationId={installation_id}
|
|
author={author}
|
|
pluginName={name}
|
|
version={version}
|
|
usedInApps={5}
|
|
isShowFetchNewVersion={source === PluginSource.github}
|
|
isShowInfo={source === PluginSource.github}
|
|
isShowDelete
|
|
meta={meta}
|
|
onDelete={() => {
|
|
mutateInstalledPluginList()
|
|
}}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className='mt-1.5 mb-1 flex justify-between items-center h-4 px-4'>
|
|
<div className='flex items-center'>
|
|
<OrgInfo
|
|
className="mt-0.5"
|
|
orgName={orgName}
|
|
packageName={name}
|
|
packageNameClassName='w-auto max-w-[150px]'
|
|
/>
|
|
<div className='mx-2 text-text-quaternary system-xs-regular'>·</div>
|
|
<div className='flex text-text-tertiary system-xs-regular space-x-1'>
|
|
<RiLoginCircleLine className='w-4 h-4' />
|
|
<span>{t('plugin.endpointsEnabled', { num: endpoints_active })}</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div className='flex items-center'>
|
|
{source === PluginSource.github
|
|
&& <>
|
|
<a href={meta!.repo} target='_blank' className='flex items-center gap-1'>
|
|
<div className='text-text-tertiary system-2xs-medium-uppercase'>{t('plugin.from')}</div>
|
|
<div className='flex items-center space-x-0.5 text-text-secondary'>
|
|
<Github className='w-3 h-3' />
|
|
<div className='system-2xs-semibold-uppercase'>GitHub</div>
|
|
<RiArrowRightUpLine className='w-3 h-3' />
|
|
</div>
|
|
</a>
|
|
</>
|
|
}
|
|
{source === PluginSource.marketplace
|
|
&& <>
|
|
<a href={`${MARKETPLACE_URL_PREFIX}/plugin/${author}/${name}`} target='_blank' className='flex items-center gap-0.5'>
|
|
<div className='text-text-tertiary system-2xs-medium-uppercase'>{t('plugin.from')} <span className='text-text-secondary'>marketplace</span></div>
|
|
<RiArrowRightUpLine className='w-3 h-3' />
|
|
</a>
|
|
</>
|
|
}
|
|
{source === PluginSource.local
|
|
&& <>
|
|
<div className='flex items-center gap-1'>
|
|
<RiHardDrive3Line className='text-text-tertiary w-3 h-3' />
|
|
<div className='text-text-tertiary system-2xs-medium-uppercase'>Local Plugin</div>
|
|
</div>
|
|
</>
|
|
}
|
|
{source === PluginSource.debugging
|
|
&& <>
|
|
<div className='flex items-center gap-1'>
|
|
<RiBugLine className='w-3 h-3 text-text-warning' />
|
|
<div className='text-text-warning system-2xs-medium-uppercase'>Debugging Plugin</div>
|
|
</div>
|
|
</>
|
|
}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default React.memo(PluginItem)
|