You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			52 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			TypeScript
		
	
			
		
		
	
	
			52 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			TypeScript
		
	
| import React from 'react';
 | |
| 
 | |
| import { PropsForExpirationTimer } from '../../state/ducks/conversations';
 | |
| import { NotificationBubble } from './message/message-item/notification-bubble/NotificationBubble';
 | |
| import { ReadableMessage } from './message/message-item/ReadableMessage';
 | |
| import { assertUnreachable } from '../../types/sqlSharedTypes';
 | |
| 
 | |
| export const TimerNotification = (props: PropsForExpirationTimer) => {
 | |
|   const { messageId, receivedAt, isUnread, pubkey, profileName, timespan, type, disabled } = props;
 | |
| 
 | |
|   const contact = profileName || pubkey;
 | |
| 
 | |
|   let textToRender: string | undefined;
 | |
|   switch (type) {
 | |
|     case 'fromOther':
 | |
|       textToRender = disabled
 | |
|         ? window.i18n('disabledDisappearingMessages', [contact, timespan])
 | |
|         : window.i18n('theyChangedTheTimer', [contact, timespan]);
 | |
|       break;
 | |
|     case 'fromMe':
 | |
|       textToRender = disabled
 | |
|         ? window.i18n('youDisabledDisappearingMessages')
 | |
|         : window.i18n('youChangedTheTimer', [timespan]);
 | |
|       break;
 | |
|     case 'fromSync':
 | |
|       textToRender = disabled
 | |
|         ? window.i18n('disappearingMessagesDisabled')
 | |
|         : window.i18n('timerSetOnSync', [timespan]);
 | |
|       break;
 | |
|     default:
 | |
|       assertUnreachable(type, `TimerNotification: Missing case error "${type}"`);
 | |
|   }
 | |
| 
 | |
|   if (!textToRender || textToRender.length === 0) {
 | |
|     throw new Error('textToRender invalid key used TimerNotification');
 | |
|   }
 | |
|   return (
 | |
|     <ReadableMessage
 | |
|       messageId={messageId}
 | |
|       receivedAt={receivedAt}
 | |
|       isUnread={isUnread}
 | |
|       key={`readable-message-${messageId}`}
 | |
|     >
 | |
|       <NotificationBubble
 | |
|         iconType="stopwatch"
 | |
|         iconColor="inherit"
 | |
|         notificationText={textToRender}
 | |
|       />
 | |
|     </ReadableMessage>
 | |
|   );
 | |
| };
 |