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.
		
		
		
		
		
			
		
			
				
	
	
		
			70 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			TypeScript
		
	
			
		
		
	
	
			70 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			TypeScript
		
	
| import { useDispatch, useSelector } from 'react-redux';
 | |
| import {
 | |
|   deleteMessagesById,
 | |
|   deleteMessagesByIdForEveryone,
 | |
| } from '../../../interactions/conversations/unsendingInteractions';
 | |
| import { resetSelectedMessageIds } from '../../../state/ducks/conversations';
 | |
| import { getSelectedMessageIds } from '../../../state/selectors/conversations';
 | |
| import {
 | |
|   useSelectedConversationKey,
 | |
|   useSelectedIsPublic,
 | |
| } from '../../../state/selectors/selectedConversation';
 | |
| import {
 | |
|   SessionButton,
 | |
|   SessionButtonColor,
 | |
|   SessionButtonShape,
 | |
|   SessionButtonType,
 | |
| } from '../../basic/SessionButton';
 | |
| import { SessionIconButton } from '../../icon';
 | |
| 
 | |
| function onDeleteSelectedMessagesForEveryone(
 | |
|   selectedConversationKey: string,
 | |
|   selectedMessageIds: Array<string>
 | |
| ) {
 | |
|   if (selectedConversationKey) {
 | |
|     void deleteMessagesByIdForEveryone(selectedMessageIds, selectedConversationKey);
 | |
|   }
 | |
| }
 | |
| 
 | |
| export const SelectionOverlay = () => {
 | |
|   const selectedMessageIds = useSelector(getSelectedMessageIds);
 | |
|   const selectedConversationKey = useSelectedConversationKey();
 | |
|   const isPublic = useSelectedIsPublic();
 | |
|   const dispatch = useDispatch();
 | |
| 
 | |
|   function onCloseOverlay() {
 | |
|     dispatch(resetSelectedMessageIds());
 | |
|   }
 | |
| 
 | |
|   const isOnlyServerDeletable = isPublic;
 | |
| 
 | |
|   return (
 | |
|     <div className="message-selection-overlay">
 | |
|       <div className="close-button">
 | |
|         <SessionIconButton iconType="exit" iconSize="medium" onClick={onCloseOverlay} />
 | |
|       </div>
 | |
| 
 | |
|       <div className="button-group">
 | |
|         <SessionButton
 | |
|           buttonColor={SessionButtonColor.Danger}
 | |
|           buttonShape={SessionButtonShape.Square}
 | |
|           buttonType={SessionButtonType.Solid}
 | |
|           text={window.i18n('delete')}
 | |
|           onClick={() => {
 | |
|             if (selectedConversationKey) {
 | |
|               if (isOnlyServerDeletable) {
 | |
|                 void onDeleteSelectedMessagesForEveryone(
 | |
|                   selectedConversationKey,
 | |
|                   selectedMessageIds
 | |
|                 );
 | |
|               } else {
 | |
|                 void deleteMessagesById(selectedMessageIds, selectedConversationKey);
 | |
|               }
 | |
|             }
 | |
|           }}
 | |
|         />
 | |
|       </div>
 | |
|     </div>
 | |
|   );
 | |
| };
 |