| 
									
										
										
										
											2025-03-07 18:10:40 +08:00
										 |  |  | import { memo, useMemo } from 'react' | 
					
						
							| 
									
										
										
										
											2024-04-08 18:51:46 +08:00
										 |  |  | import { useTranslation } from 'react-i18next' | 
					
						
							| 
									
										
										
										
											2025-04-18 13:59:12 +08:00
										 |  |  | import { useFormatTimeFromNow } from '../hooks' | 
					
						
							| 
									
										
										
										
											2024-04-08 18:51:46 +08:00
										 |  |  | import { useStore } from '../store' | 
					
						
							| 
									
										
										
										
											2025-03-07 18:10:40 +08:00
										 |  |  | import { WorkflowVersion } from '../types' | 
					
						
							|  |  |  | import useTimestamp from '@/hooks/use-timestamp' | 
					
						
							| 
									
										
										
										
											2024-04-08 18:51:46 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | const RestoringTitle = () => { | 
					
						
							|  |  |  |   const { t } = useTranslation() | 
					
						
							| 
									
										
										
										
											2025-04-18 13:59:12 +08:00
										 |  |  |   const { formatTimeFromNow } = useFormatTimeFromNow() | 
					
						
							| 
									
										
										
										
											2025-03-07 18:10:40 +08:00
										 |  |  |   const { formatTime } = useTimestamp() | 
					
						
							|  |  |  |   const currentVersion = useStore(state => state.currentVersion) | 
					
						
							|  |  |  |   const isDraft = currentVersion?.version === WorkflowVersion.Draft | 
					
						
							|  |  |  |   const publishStatus = isDraft ? t('workflow.common.unpublished') : t('workflow.common.published') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   const versionName = useMemo(() => { | 
					
						
							|  |  |  |     if (isDraft) | 
					
						
							|  |  |  |       return t('workflow.versionHistory.currentDraft') | 
					
						
							|  |  |  |     return currentVersion?.marked_name || t('workflow.versionHistory.defaultName') | 
					
						
							|  |  |  |   }, [currentVersion, t, isDraft]) | 
					
						
							| 
									
										
										
										
											2024-04-08 18:51:46 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   return ( | 
					
						
							| 
									
										
										
										
											2025-03-07 18:10:40 +08:00
										 |  |  |     <div className='flex flex-col gap-y-0.5'> | 
					
						
							|  |  |  |       <div className='flex items-center gap-x-1'> | 
					
						
							| 
									
										
										
										
											2025-03-21 17:41:03 +08:00
										 |  |  |         <span className='system-sm-semibold text-text-primary'> | 
					
						
							| 
									
										
										
										
											2025-03-07 18:10:40 +08:00
										 |  |  |           {versionName} | 
					
						
							|  |  |  |         </span> | 
					
						
							| 
									
										
										
										
											2025-03-21 17:41:03 +08:00
										 |  |  |         <span className='system-2xs-medium-uppercase rounded-[5px] border border-text-accent-secondary bg-components-badge-bg-dimm px-1 py-0.5 text-text-accent-secondary'> | 
					
						
							| 
									
										
										
										
											2025-03-07 18:10:40 +08:00
										 |  |  |           {t('workflow.common.viewOnly')} | 
					
						
							|  |  |  |         </span> | 
					
						
							|  |  |  |       </div> | 
					
						
							| 
									
										
										
										
											2025-03-21 17:41:03 +08:00
										 |  |  |       <div className='system-xs-regular flex h-4 items-center gap-x-1 text-text-tertiary'> | 
					
						
							| 
									
										
										
										
											2025-03-07 18:10:40 +08:00
										 |  |  |         { | 
					
						
							|  |  |  |           currentVersion && ( | 
					
						
							|  |  |  |             <> | 
					
						
							|  |  |  |               <span>{publishStatus}</span> | 
					
						
							|  |  |  |               <span>·</span> | 
					
						
							|  |  |  |               <span>{`${formatTimeFromNow((isDraft ? currentVersion.updated_at : currentVersion.created_at) * 1000)} ${formatTime(currentVersion.created_at, 'HH:mm:ss')}`}</span> | 
					
						
							|  |  |  |               <span>·</span> | 
					
						
							|  |  |  |               <span>{currentVersion?.created_by?.name || ''}</span> | 
					
						
							|  |  |  |             </> | 
					
						
							|  |  |  |           ) | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |       </div> | 
					
						
							| 
									
										
										
										
											2024-04-08 18:51:46 +08:00
										 |  |  |     </div> | 
					
						
							|  |  |  |   ) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | export default memo(RestoringTitle) |