|
|
|
@ -13,12 +13,35 @@ import { forceSyncConfigurationNowIfNeeded } from '../../../session/utils/syncUt
|
|
|
|
|
import { BlockedNumberController } from '../../../util';
|
|
|
|
|
import useKey from 'react-use/lib/useKey';
|
|
|
|
|
import { ReduxConversationType } from '../../../state/ducks/conversations';
|
|
|
|
|
import { updateConfirmModal } from '../../../state/ducks/modalDialog';
|
|
|
|
|
|
|
|
|
|
export const OverlayMessageRequest = () => {
|
|
|
|
|
useKey('Escape', closeOverlay);
|
|
|
|
|
const dispatch = useDispatch();
|
|
|
|
|
function closeOverlay() {
|
|
|
|
|
dispatch(setOverlayMode(undefined));
|
|
|
|
|
}
|
|
|
|
|
const hasRequests = useSelector(getConversationRequests).length > 0;
|
|
|
|
|
const messageRequests = useSelector(getConversationRequests);
|
|
|
|
|
|
|
|
|
|
const buttonText = window.i18n('clearAll');
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Blocks all message request conversations and synchronizes across linked devices
|
|
|
|
|
* @returns void
|
|
|
|
|
*/
|
|
|
|
|
async function handleBlockAllRequestsClick(convoRequests: Array<ReduxConversationType>) {
|
|
|
|
|
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.');
|
|
|
|
@ -44,19 +67,11 @@ async function handleBlockAllRequestsClick(convoRequests: Array<ReduxConversatio
|
|
|
|
|
if (syncRequired) {
|
|
|
|
|
await forceSyncConfigurationNowIfNeeded();
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
})
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export const OverlayMessageRequest = () => {
|
|
|
|
|
useKey('Escape', closeOverlay);
|
|
|
|
|
const dispatch = useDispatch();
|
|
|
|
|
function closeOverlay() {
|
|
|
|
|
dispatch(setOverlayMode(undefined));
|
|
|
|
|
}
|
|
|
|
|
const hasRequests = useSelector(getConversationRequests).length > 0;
|
|
|
|
|
const messageRequests = useSelector(getConversationRequests);
|
|
|
|
|
|
|
|
|
|
const buttonText = window.i18n('clearAll');
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<div className="module-left-pane-overlay">
|
|
|
|
|
{hasRequests ? (
|
|
|
|
|