From 12161a1fde812c0a73f7911d50662ce37e0f7231 Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Mon, 17 Oct 2022 10:47:32 +1100 Subject: [PATCH] fix: INVALID_DATE (-Infinity) when merging two conversations inactive --- .../choose-action/OverlayChooseAction.tsx | 26 +++++++++++++++++-- ts/data/data.ts | 8 +++++- ts/receiver/contentMessage.ts | 7 ++++- 3 files changed, 37 insertions(+), 4 deletions(-) diff --git a/ts/components/leftpane/overlay/choose-action/OverlayChooseAction.tsx b/ts/components/leftpane/overlay/choose-action/OverlayChooseAction.tsx index 4b1571e67..e14314b78 100644 --- a/ts/components/leftpane/overlay/choose-action/OverlayChooseAction.tsx +++ b/ts/components/leftpane/overlay/choose-action/OverlayChooseAction.tsx @@ -1,4 +1,4 @@ -import React from 'react'; +import React, { useEffect } from 'react'; // tslint:disable: use-simple-attributes no-submodule-imports import { useDispatch } from 'react-redux'; @@ -7,6 +7,7 @@ import useKey from 'react-use/lib/useKey'; import styled from 'styled-components'; import { SessionIcon, SessionIconType } from '../../../icon'; import { ContactsListWithBreaks } from './ContactsListWithBreaks'; +import { isEmpty, isString } from 'lodash'; const StyledActionRow = styled.button` border: none; @@ -45,7 +46,6 @@ const IconOnActionRow = (props: { iconType: SessionIconType }) => { export const OverlayChooseAction = () => { const dispatch = useDispatch(); - function closeOverlay() { dispatch(resetOverlayMode()); } @@ -64,6 +64,28 @@ export const OverlayChooseAction = () => { useKey('Escape', closeOverlay); + function handlePaste(event: ClipboardEvent) { + event.preventDefault(); + + const pasted = event.clipboardData?.getData('text'); + + if (pasted && isString(pasted) && !isEmpty(pasted)) { + if (pasted.startsWith('http') || pasted.startsWith('https')) { + openJoinCommunity(); + } else if (pasted.startsWith('05')) { + openNewMessage(); + } + } + } + + useEffect(() => { + document?.addEventListener('paste', handlePaste); + + return () => { + document?.removeEventListener('paste', handlePaste); + }; + }, []); + return (
{ const cleaned = _cleanData(data); - + /** + * Merging two conversations in `handleMessageRequestResponse` introduced a bug where we would mark conversation active_at to be -Infinity. + * The root issue has been fixed, but just to make sure those INVALID DATE does not show up, update those -Infinity active_at conversations to be now(), once., + */ + if (cleaned.active_at === -Infinity) { + cleaned.active_at = Date.now(); + } await channels.saveConversation(cleaned); } diff --git a/ts/receiver/contentMessage.ts b/ts/receiver/contentMessage.ts index 24724c350..14280d3c1 100644 --- a/ts/receiver/contentMessage.ts +++ b/ts/receiver/contentMessage.ts @@ -626,9 +626,14 @@ async function handleMessageRequestResponse( unblindedConvoId, ConversationTypeEnum.PRIVATE ); - const mostRecentActiveAt = + let mostRecentActiveAt = Math.max(...compact(convosToMerge.map(m => m.get('active_at')))) || Date.now(); + if (!isFinite(mostRecentActiveAt)) { + mostRecentActiveAt = Date.now(); + } + + conversationToApprove.set({ active_at: mostRecentActiveAt, isApproved: true,