wwf
2025-05-20 938c3e5a587ce950a94964ea509b9e7f8834dfae
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
'use client'
import type { FC } from 'react'
import React from 'react'
import Badge, { BadgeState } from '@/app/components/base/badge/index'
import type { VersionProps } from '../../types'
 
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)