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.
session-desktop/ts/components/leftpane/overlay/OverlayMessageRequest.tsx

120 lines
3.8 KiB
TypeScript

import { useDispatch, useSelector } from 'react-redux';
import useKey from 'react-use/lib/useKey';
import styled from 'styled-components';
import { declineConversationWithoutConfirm } from '../../../interactions/conversationInteractions';
import { forceSyncConfigurationNowIfNeeded } from '../../../session/utils/sync/syncUtils';
import { updateConfirmModal } from '../../../state/ducks/modalDialog';
import { resetLeftOverlayMode } from '../../../state/ducks/section';
import { getConversationRequestsIds } from '../../../state/selectors/conversations';
import { useSelectedConversationKey } from '../../../state/selectors/selectedConversation';
import { SessionButton, SessionButtonColor } from '../../basic/SessionButton';
import { SpacerLG } from '../../basic/Text';
import { ConversationListItem } from '../conversation-list-item/ConversationListItem';
import { Localizer } from '../../basic/Localizer';
const MessageRequestListPlaceholder = styled.div`
color: var(--conversation-tab-text-color);
margin-bottom: auto;
`;
const MessageRequestListContainer = styled.div`
width: 100%;
overflow-y: auto;
margin-bottom: auto;
`;
/**
* A request needs to be be unapproved and not blocked to be valid.
* @returns List of message request items
*/
const MessageRequestList = () => {
const conversationRequests = useSelector(getConversationRequestsIds);
return (
<MessageRequestListContainer>
{conversationRequests.map(conversationId => {
return <ConversationListItem key={conversationId} conversationId={conversationId} />;
})}
</MessageRequestListContainer>
);
};
export const OverlayMessageRequest = () => {
useKey('Escape', closeOverlay);
const dispatch = useDispatch();
function closeOverlay() {
dispatch(resetLeftOverlayMode());
}
const currentlySelectedConvo = useSelectedConversationKey();
const messageRequests = useSelector(getConversationRequestsIds);
const hasRequests = messageRequests.length;
const buttonText = window.i18n('clearAll');
/**
* Blocks all message request conversations and synchronizes across linked devices
* @returns void
*/
function handleClearAllRequestsClick() {
const onClose = dispatch(updateConfirmModal(null));
dispatch(
updateConfirmModal({
title: window.i18n('clearAll'),
i18nMessage: { token: 'messageRequestsClearAllExplanation' },
onClose,
onClickOk: async () => {
window?.log?.info('Blocking all message requests');
if (!hasRequests) {
window?.log?.info('No conversation requests to block.');
return;
}
for (let index = 0; index < messageRequests.length; index++) {
const convoId = messageRequests[index];
// eslint-disable-next-line no-await-in-loop
await declineConversationWithoutConfirm({
blockContact: false,
conversationId: convoId,
currentlySelectedConvo,
syncToDevices: false,
});
}
await forceSyncConfigurationNowIfNeeded();
},
onClickClose: () => {
window.inboxStore?.dispatch(updateConfirmModal(null));
},
okTheme: SessionButtonColor.Danger,
closeTheme: SessionButtonColor.Primary,
okText: window.i18n('clear'),
})
);
}
return (
<div className="module-left-pane-overlay">
{hasRequests ? (
<>
<MessageRequestList />
<SpacerLG />
<SessionButton
buttonColor={SessionButtonColor.Danger}
text={buttonText}
onClick={handleClearAllRequestsClick}
/>
</>
) : (
<>
<SpacerLG />
<MessageRequestListPlaceholder>
<Localizer token="messageRequestsNonePending" />
</MessageRequestListPlaceholder>
</>
)}
</div>
);
};