diff --git a/_locales/en/messages.json b/_locales/en/messages.json index 3eccffb98..0c5f2da59 100644 --- a/_locales/en/messages.json +++ b/_locales/en/messages.json @@ -476,5 +476,7 @@ "noMediaUntilApproved": "You cannot send attachments until the conversation is approved", "mustBeApproved": "This conversation must be accepted to use this feature", "youHaveANewFriendRequest": "You have a new friend request", + "clearAllConfirmationTitle": "Clear All Message Requests", + "clearAllConfirmationBody": "Are you sure you want to clear all message requests?", "openMessageRequestInboxDescription": "View your Message Request inbox" } diff --git a/ts/components/leftpane/overlay/OverlayMessageRequest.tsx b/ts/components/leftpane/overlay/OverlayMessageRequest.tsx index 7a499ca1e..0dfe5cc84 100644 --- a/ts/components/leftpane/overlay/OverlayMessageRequest.tsx +++ b/ts/components/leftpane/overlay/OverlayMessageRequest.tsx @@ -13,38 +13,7 @@ import { forceSyncConfigurationNowIfNeeded } from '../../../session/utils/syncUt import { BlockedNumberController } from '../../../util'; import useKey from 'react-use/lib/useKey'; import { ReduxConversationType } from '../../../state/ducks/conversations'; - -/** - * Blocks all message request conversations and synchronizes across linked devices - * @returns void - */ -async function handleBlockAllRequestsClick(convoRequests: Array) { - window?.log?.info('Blocking all conversations'); - if (!convoRequests) { - window?.log?.info('No conversation requests to block.'); - return; - } - - let syncRequired = false; - const convoController = getConversationController(); - await Promise.all( - convoRequests.map(async convo => { - const { id } = convo; - const convoModel = convoController.get(id); - if (!convoModel.isBlocked()) { - await BlockedNumberController.block(id); - await convoModel.commit(); - } - await convoModel.setIsApproved(false); - - syncRequired = true; - }) - ); - - if (syncRequired) { - await forceSyncConfigurationNowIfNeeded(); - } -} +import { updateConfirmModal } from '../../../state/ducks/modalDialog'; export const OverlayMessageRequest = () => { useKey('Escape', closeOverlay); @@ -57,6 +26,52 @@ export const OverlayMessageRequest = () => { const buttonText = window.i18n('clearAll'); + /** + * Blocks all message request conversations and synchronizes across linked devices + * @returns void + */ + async function handleBlockAllRequestsClick(convoRequests: Array) { + const { i18n } = window; + const title = i18n('clearAllConfirmationTitle'); + const message = i18n('clearAllConfirmationBody'); + const onClose = dispatch(updateConfirmModal(null)); + + dispatch( + updateConfirmModal({ + title, + message, + onClose, + onClickOk: async () => { + window?.log?.info('Blocking all conversations'); + if (!convoRequests) { + window?.log?.info('No conversation requests to block.'); + return; + } + + let syncRequired = false; + const convoController = getConversationController(); + await Promise.all( + convoRequests.map(async convo => { + const { id } = convo; + const convoModel = convoController.get(id); + if (!convoModel.isBlocked()) { + await BlockedNumberController.block(id); + await convoModel.commit(); + } + await convoModel.setIsApproved(false); + + syncRequired = true; + }) + ); + + if (syncRequired) { + await forceSyncConfigurationNowIfNeeded(); + } + }, + }) + ); + } + return (
{hasRequests ? ( diff --git a/ts/types/LocalizerKeys.ts b/ts/types/LocalizerKeys.ts index 615548400..996b6d5b4 100644 --- a/ts/types/LocalizerKeys.ts +++ b/ts/types/LocalizerKeys.ts @@ -479,4 +479,6 @@ export type LocalizerKeys = | 'noMediaUntilApproved' | 'mustBeApproved' | 'youHaveANewFriendRequest' + | 'clearAllConfirmationTitle' + | 'clearAllConfirmationBody' | 'reportIssue';