dify/web/app/components/plugins/install-plugin/base/version.tsx
Stephen Zhou a84c2d36a3
style: format with vp fmt (#38803)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
2026-07-12 15:57:46 +00:00

29 lines
955 B
TypeScript

'use client'
import type { FC } from 'react'
import type { VersionProps } from '../../types'
import * as React from 'react'
import Badge, { BadgeState } from '@/app/components/base/badge/index'
const Version: FC<VersionProps> = ({ hasInstalled, installedVersion, toInstallVersion }) => {
return (
<>
{!hasInstalled ? (
<Badge className="mx-1" size="s" state={BadgeState.Default}>
{toInstallVersion}
</Badge>
) : (
<>
<Badge className="mx-1" size="s" state={BadgeState.Warning}>
{`${installedVersion} -> ${toInstallVersion}`}
</Badge>
{/* <div className='flex px-0.5 justify-center items-center gap-0.5'>
<div className='text-text-warning system-xs-medium'>Used in 3 apps</div>
<RiInformation2Line className='w-4 h-4 text-text-tertiary' />
</div> */}
</>
)}
</>
)
}
export default React.memo(Version)