| 
									
										
										
										
											2023-12-03 22:10:16 +08:00
										 |  |  | 'use client' | 
					
						
							|  |  |  | import type { FC } from 'react' | 
					
						
							|  |  |  | import React from 'react' | 
					
						
							| 
									
										
										
										
											2025-03-07 11:56:20 +08:00
										 |  |  | import { | 
					
						
							|  |  |  |   RiHardDrive3Line, | 
					
						
							|  |  |  | } from '@remixicon/react' | 
					
						
							| 
									
										
										
										
											2023-12-03 22:10:16 +08:00
										 |  |  | import { useTranslation } from 'react-i18next' | 
					
						
							|  |  |  | import UsageInfo from '../usage-info' | 
					
						
							|  |  |  | import { useProviderContext } from '@/context/provider-context' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | type Props = { | 
					
						
							|  |  |  |   className?: string | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const VectorSpaceInfo: FC<Props> = ({ | 
					
						
							|  |  |  |   className, | 
					
						
							|  |  |  | }) => { | 
					
						
							|  |  |  |   const { t } = useTranslation() | 
					
						
							|  |  |  |   const { plan } = useProviderContext() | 
					
						
							|  |  |  |   const { | 
					
						
							|  |  |  |     usage, | 
					
						
							|  |  |  |     total, | 
					
						
							|  |  |  |   } = plan | 
					
						
							|  |  |  |   return ( | 
					
						
							|  |  |  |     <UsageInfo | 
					
						
							|  |  |  |       className={className} | 
					
						
							| 
									
										
										
										
											2025-03-07 11:56:20 +08:00
										 |  |  |       Icon={RiHardDrive3Line} | 
					
						
							| 
									
										
										
										
											2025-03-06 10:27:13 +08:00
										 |  |  |       name={t('billing.usagePage.vectorSpace')} | 
					
						
							|  |  |  |       tooltip={t('billing.usagePage.vectorSpaceTooltip') as string} | 
					
						
							| 
									
										
										
										
											2023-12-03 22:10:16 +08:00
										 |  |  |       usage={usage.vectorSpace} | 
					
						
							|  |  |  |       total={total.vectorSpace} | 
					
						
							|  |  |  |       unit='MB' | 
					
						
							|  |  |  |     /> | 
					
						
							|  |  |  |   ) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | export default React.memo(VectorSpaceInfo) |