detail-header.tsx 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311
  1. import React, { useCallback, useMemo, useState } from 'react'
  2. import { useTranslation } from 'react-i18next'
  3. import { useBoolean } from 'ahooks'
  4. import {
  5. RiArrowLeftRightLine,
  6. RiBugLine,
  7. RiCloseLine,
  8. RiHardDrive3Line,
  9. RiVerifiedBadgeLine,
  10. } from '@remixicon/react'
  11. import type { PluginDetail } from '../types'
  12. import { PluginSource, PluginType } from '../types'
  13. import Description from '../card/base/description'
  14. import Icon from '../card/base/card-icon'
  15. import Title from '../card/base/title'
  16. import OrgInfo from '../card/base/org-info'
  17. import { useGitHubReleases } from '../install-plugin/hooks'
  18. import PluginVersionPicker from '@/app/components/plugins/update-plugin/plugin-version-picker'
  19. import UpdateFromMarketplace from '@/app/components/plugins/update-plugin/from-market-place'
  20. import OperationDropdown from '@/app/components/plugins/plugin-detail-panel/operation-dropdown'
  21. import PluginInfo from '@/app/components/plugins/plugin-page/plugin-info'
  22. import ActionButton from '@/app/components/base/action-button'
  23. import Button from '@/app/components/base/button'
  24. import Badge from '@/app/components/base/badge'
  25. import Confirm from '@/app/components/base/confirm'
  26. import Tooltip from '@/app/components/base/tooltip'
  27. import Toast from '@/app/components/base/toast'
  28. import { BoxSparkleFill } from '@/app/components/base/icons/src/vender/plugin'
  29. import { Github } from '@/app/components/base/icons/src/public/common'
  30. import { uninstallPlugin } from '@/service/plugins'
  31. import { useGetLanguage } from '@/context/i18n'
  32. import { useModalContext } from '@/context/modal-context'
  33. import { useProviderContext } from '@/context/provider-context'
  34. import { useInvalidateAllToolProviders } from '@/service/use-tools'
  35. import { API_PREFIX, MARKETPLACE_URL_PREFIX } from '@/config'
  36. import cn from '@/utils/classnames'
  37. const i18nPrefix = 'plugin.action'
  38. type Props = {
  39. detail: PluginDetail
  40. onHide: () => void
  41. onUpdate: (isDelete?: boolean) => void
  42. }
  43. const DetailHeader = ({
  44. detail,
  45. onHide,
  46. onUpdate,
  47. }: Props) => {
  48. const { t } = useTranslation()
  49. const locale = useGetLanguage()
  50. const { checkForUpdates, fetchReleases } = useGitHubReleases()
  51. const { setShowUpdatePluginModal } = useModalContext()
  52. const { refreshModelProviders } = useProviderContext()
  53. const invalidateAllToolProviders = useInvalidateAllToolProviders()
  54. const {
  55. installation_id,
  56. source,
  57. tenant_id,
  58. version,
  59. latest_unique_identifier,
  60. latest_version,
  61. meta,
  62. plugin_id,
  63. } = detail
  64. const { author, category, name, label, description, icon, verified } = detail.declaration
  65. const isFromGitHub = source === PluginSource.github
  66. const isFromMarketplace = source === PluginSource.marketplace
  67. const [isShow, setIsShow] = useState(false)
  68. const [targetVersion, setTargetVersion] = useState({
  69. version: latest_version,
  70. unique_identifier: latest_unique_identifier,
  71. })
  72. const hasNewVersion = useMemo(() => {
  73. if (isFromMarketplace)
  74. return !!latest_version && latest_version !== version
  75. return false
  76. }, [isFromMarketplace, latest_version, version])
  77. const detailUrl = useMemo(() => {
  78. if (isFromGitHub)
  79. return `https://github.com/${meta!.repo}`
  80. if (isFromMarketplace)
  81. return `${MARKETPLACE_URL_PREFIX}/plugins/${author}/${name}`
  82. return ''
  83. }, [author, isFromGitHub, isFromMarketplace, meta, name])
  84. const [isShowUpdateModal, {
  85. setTrue: showUpdateModal,
  86. setFalse: hideUpdateModal,
  87. }] = useBoolean(false)
  88. const handleUpdate = async () => {
  89. if (isFromMarketplace) {
  90. showUpdateModal()
  91. return
  92. }
  93. const owner = meta!.repo.split('/')[0] || author
  94. const repo = meta!.repo.split('/')[1] || name
  95. const fetchedReleases = await fetchReleases(owner, repo)
  96. if (fetchedReleases.length === 0) return
  97. const { needUpdate, toastProps } = checkForUpdates(fetchedReleases, meta!.version)
  98. Toast.notify(toastProps)
  99. if (needUpdate) {
  100. setShowUpdatePluginModal({
  101. onSaveCallback: () => {
  102. onUpdate()
  103. },
  104. payload: {
  105. type: PluginSource.github,
  106. category: detail.declaration.category,
  107. github: {
  108. originalPackageInfo: {
  109. id: detail.plugin_unique_identifier,
  110. repo: meta!.repo,
  111. version: meta!.version,
  112. package: meta!.package,
  113. releases: fetchedReleases,
  114. },
  115. },
  116. },
  117. })
  118. }
  119. }
  120. const handleUpdatedFromMarketplace = () => {
  121. onUpdate()
  122. hideUpdateModal()
  123. }
  124. const [isShowPluginInfo, {
  125. setTrue: showPluginInfo,
  126. setFalse: hidePluginInfo,
  127. }] = useBoolean(false)
  128. const [isShowDeleteConfirm, {
  129. setTrue: showDeleteConfirm,
  130. setFalse: hideDeleteConfirm,
  131. }] = useBoolean(false)
  132. const [deleting, {
  133. setTrue: showDeleting,
  134. setFalse: hideDeleting,
  135. }] = useBoolean(false)
  136. const handleDelete = useCallback(async () => {
  137. showDeleting()
  138. const res = await uninstallPlugin(installation_id)
  139. hideDeleting()
  140. if (res.success) {
  141. hideDeleteConfirm()
  142. onUpdate(true)
  143. if (PluginType.model.includes(category))
  144. refreshModelProviders()
  145. if (PluginType.tool.includes(category))
  146. invalidateAllToolProviders()
  147. }
  148. }, [showDeleting, installation_id, hideDeleting, hideDeleteConfirm, onUpdate, category, refreshModelProviders, invalidateAllToolProviders])
  149. // #plugin TODO# used in apps
  150. // const usedInApps = 3
  151. return (
  152. <div className={cn('shrink-0 p-4 pb-3 border-b border-divider-subtle bg-components-panel-bg')}>
  153. <div className="flex">
  154. <div className='overflow-hidden border-components-panel-border-subtle border rounded-xl'>
  155. <Icon src={`${API_PREFIX}/workspaces/current/plugin/icon?tenant_id=${tenant_id}&filename=${icon}`} />
  156. </div>
  157. <div className="ml-3 w-0 grow">
  158. <div className="flex items-center h-5">
  159. <Title title={label[locale]} />
  160. {verified && <RiVerifiedBadgeLine className="shrink-0 ml-0.5 w-4 h-4 text-text-accent" />}
  161. <PluginVersionPicker
  162. disabled={!isFromMarketplace}
  163. isShow={isShow}
  164. onShowChange={setIsShow}
  165. pluginID={plugin_id}
  166. currentVersion={version}
  167. onSelect={(state) => {
  168. setTargetVersion(state)
  169. handleUpdate()
  170. }}
  171. trigger={
  172. <Badge
  173. className={cn(
  174. 'mx-1',
  175. isShow && 'bg-state-base-hover',
  176. (isShow || isFromMarketplace) && 'hover:bg-state-base-hover',
  177. )}
  178. uppercase={false}
  179. text={
  180. <>
  181. <div>{isFromGitHub ? meta!.version : version}</div>
  182. {isFromMarketplace && <RiArrowLeftRightLine className='ml-1 w-3 h-3 text-text-tertiary' />}
  183. </>
  184. }
  185. hasRedCornerMark={hasNewVersion}
  186. />
  187. }
  188. />
  189. {(hasNewVersion || isFromGitHub) && (
  190. <Button variant='secondary-accent' size='small' className='!h-5' onClick={() => {
  191. if (isFromMarketplace) {
  192. setTargetVersion({
  193. version: latest_version,
  194. unique_identifier: latest_unique_identifier,
  195. })
  196. }
  197. handleUpdate()
  198. }}>{t('plugin.detailPanel.operation.update')}</Button>
  199. )}
  200. </div>
  201. <div className='mb-1 flex justify-between items-center h-4'>
  202. <div className='mt-0.5 flex items-center'>
  203. <OrgInfo
  204. packageNameClassName='w-auto'
  205. orgName={author}
  206. packageName={name}
  207. />
  208. <div className='ml-1 mr-0.5 text-text-quaternary system-xs-regular'>·</div>
  209. {detail.source === PluginSource.marketplace && (
  210. <Tooltip popupContent={t('plugin.detailPanel.categoryTip.marketplace')} >
  211. <div><BoxSparkleFill className='w-3.5 h-3.5 text-text-tertiary hover:text-text-accent' /></div>
  212. </Tooltip>
  213. )}
  214. {detail.source === PluginSource.github && (
  215. <Tooltip popupContent={t('plugin.detailPanel.categoryTip.github')} >
  216. <div><Github className='w-3.5 h-3.5 text-text-secondary hover:text-text-primary' /></div>
  217. </Tooltip>
  218. )}
  219. {detail.source === PluginSource.local && (
  220. <Tooltip popupContent={t('plugin.detailPanel.categoryTip.local')} >
  221. <div><RiHardDrive3Line className='w-3.5 h-3.5 text-text-tertiary' /></div>
  222. </Tooltip>
  223. )}
  224. {detail.source === PluginSource.debugging && (
  225. <Tooltip popupContent={t('plugin.detailPanel.categoryTip.debugging')} >
  226. <div><RiBugLine className='w-3.5 h-3.5 text-text-tertiary hover:text-text-warning' /></div>
  227. </Tooltip>
  228. )}
  229. </div>
  230. </div>
  231. </div>
  232. <div className='flex gap-1'>
  233. <OperationDropdown
  234. source={detail.source}
  235. onInfo={showPluginInfo}
  236. onCheckVersion={handleUpdate}
  237. onRemove={showDeleteConfirm}
  238. detailUrl={detailUrl}
  239. />
  240. <ActionButton onClick={onHide}>
  241. <RiCloseLine className='w-4 h-4' />
  242. </ActionButton>
  243. </div>
  244. </div>
  245. <Description className='mt-3' text={description[locale]} descriptionLineRows={2}></Description>
  246. {isShowPluginInfo && (
  247. <PluginInfo
  248. repository={isFromGitHub ? meta?.repo : ''}
  249. release={version}
  250. packageName={meta?.package || ''}
  251. onHide={hidePluginInfo}
  252. />
  253. )}
  254. {isShowDeleteConfirm && (
  255. <Confirm
  256. isShow
  257. title={t(`${i18nPrefix}.delete`)}
  258. content={
  259. <div>
  260. {t(`${i18nPrefix}.deleteContentLeft`)}<span className='system-md-semibold'>{label[locale]}</span>{t(`${i18nPrefix}.deleteContentRight`)}<br />
  261. {/* {usedInApps > 0 && t(`${i18nPrefix}.usedInApps`, { num: usedInApps })} */}
  262. </div>
  263. }
  264. onCancel={hideDeleteConfirm}
  265. onConfirm={handleDelete}
  266. isLoading={deleting}
  267. isDisabled={deleting}
  268. />
  269. )}
  270. {
  271. isShowUpdateModal && (
  272. <UpdateFromMarketplace
  273. payload={{
  274. category: detail.declaration.category,
  275. originalPackageInfo: {
  276. id: detail.plugin_unique_identifier,
  277. payload: detail.declaration,
  278. },
  279. targetPackageInfo: {
  280. id: targetVersion.unique_identifier,
  281. version: targetVersion.version,
  282. },
  283. }}
  284. onCancel={hideUpdateModal}
  285. onSave={handleUpdatedFromMarketplace}
  286. />
  287. )
  288. }
  289. </div>
  290. )
  291. }
  292. export default DetailHeader