From d794b0a0d46da4c149182be1bf2f5717fa01f616 Mon Sep 17 00:00:00 2001 From: William Grant Date: Wed, 9 Aug 2023 17:26:40 +1000 Subject: [PATCH] fix: comment out user config disappearing messages stuff for now --- .../OverlayDisappearingMessages.tsx | 12 ++--- ts/node/migration/sessionMigrations.ts | 19 ++++---- ts/receiver/configMessage.ts | 46 +++++++++---------- .../libsession/libsession_utils_contacts.ts | 5 +- .../libsession_utils_user_groups.ts | 2 +- .../libsession_utils_user_profile.ts | 13 ++++-- ts/types/sqlSharedTypes.ts | 2 +- .../browser/libsession_worker_interface.ts | 6 +-- 8 files changed, 56 insertions(+), 49 deletions(-) diff --git a/ts/components/conversation/right-panel/overlay/disappearing-messages/OverlayDisappearingMessages.tsx b/ts/components/conversation/right-panel/overlay/disappearing-messages/OverlayDisappearingMessages.tsx index 75454aecc..3a0b6ecca 100644 --- a/ts/components/conversation/right-panel/overlay/disappearing-messages/OverlayDisappearingMessages.tsx +++ b/ts/components/conversation/right-panel/overlay/disappearing-messages/OverlayDisappearingMessages.tsx @@ -110,12 +110,12 @@ export const OverlayDisappearingMessages = ({ unlockNewModes }: { unlockNewModes dispatch(closeRightPanel()); dispatch(resetRightOverlayMode()); } - } else { - if (selectedConversationKey && modeSelected) { - await setDisappearingMessagesByConvoId(selectedConversationKey, modeSelected, timeSelected); - dispatch(closeRightPanel()); - dispatch(resetRightOverlayMode()); - } + return; + } + if (selectedConversationKey && modeSelected) { + await setDisappearingMessagesByConvoId(selectedConversationKey, modeSelected, timeSelected); + dispatch(closeRightPanel()); + dispatch(resetRightOverlayMode()); } }; diff --git a/ts/node/migration/sessionMigrations.ts b/ts/node/migration/sessionMigrations.ts index 1c1148c1a..fb4b70131 100644 --- a/ts/node/migration/sessionMigrations.ts +++ b/ts/node/migration/sessionMigrations.ts @@ -1224,7 +1224,7 @@ function insertContactIntoContactWrapper( const dbApprovedMe = !!contact.didApproveMe || false; const dbBlocked = blockedNumbers.includes(contact.id); const priority = contact.priority || CONVERSATION_PRIORITIES.default; - const expirationTimerSeconds = contact.expireTimer || 0; + // const expirationTimerSeconds = contact.expireTimer || 0; const wrapperContact = getContactInfoFromDBValues({ id: contact.id, @@ -1237,7 +1237,7 @@ function insertContactIntoContactWrapper( dbProfileUrl: contact.avatarPointer || undefined, priority, dbCreatedAtSeconds: Math.floor((contact.active_at || Date.now()) / 1000), - expirationTimerSeconds, // FIXME WILL add expirationMode here + // expirationTimerSeconds, // FIXME WILL add expirationMode here }); try { @@ -1262,7 +1262,7 @@ function insertContactIntoContactWrapper( dbProfileUrl: undefined, priority: CONVERSATION_PRIORITIES.default, dbCreatedAtSeconds: Math.floor(Date.now() / 1000), - expirationTimerSeconds: 0, // FIXME WILL add expirationMode here + // expirationTimerSeconds: 0, // FIXME WILL add expirationMode here }) ); } catch (err2) { @@ -1385,7 +1385,7 @@ function insertLegacyGroupIntoWrapper( const { priority, id, - expireTimer, + // expireTimer, groupAdmins, members, displayNameInProfile, @@ -1400,7 +1400,7 @@ function insertLegacyGroupIntoWrapper( const wrapperLegacyGroup = getLegacyGroupInfoFromDBValues({ id, priority, - expireTimer, // FIXME WILL add expirationMode here + // expireTimer, // FIXME WILL add expirationMode here groupAdmins, members, displayNameInProfile, @@ -1628,7 +1628,8 @@ function updateToSessionSchemaVersion31(currentVersion: number, db: BetterSqlite const ourDbProfileUrl = ourConversation.avatarPointer || ''; const ourDbProfileKey = fromHexToArray(ourConversation.profileKey || ''); const ourConvoPriority = ourConversation.priority; - const ourConvoExpire = ourConversation.expireTimer || 0; + // const ourConvoExpire = ourConversation.expireTimer || 0; + if (ourDbProfileUrl && !isEmpty(ourDbProfileKey)) { userProfileWrapper.setUserInfo( ourDbName, @@ -1636,8 +1637,8 @@ function updateToSessionSchemaVersion31(currentVersion: number, db: BetterSqlite { url: ourDbProfileUrl, key: ourDbProfileKey, - }, - ourConvoExpire + } + // , ourConvoExpire ); } @@ -1861,6 +1862,8 @@ function updateToSessionSchemaVersion33(currentVersion: number, db: BetterSqlite return; } + // TODO we actually want to update the config wrappers that relate to disappearing messages with the type and seconds + console.log(`updateToSessionSchemaVersion${targetVersion}: starting...`); db.transaction(() => { // Conversation changes diff --git a/ts/receiver/configMessage.ts b/ts/receiver/configMessage.ts index c0c4becf6..ffe5710dc 100644 --- a/ts/receiver/configMessage.ts +++ b/ts/receiver/configMessage.ts @@ -331,17 +331,17 @@ async function handleContactsUpdate(result: IncomingConfResult): Promise { const foundConvo = getConversationController().get(id); if (!foundConvo) { @@ -55,7 +54,7 @@ async function insertContactFromDBIntoWrapperAndRefresh(id: string): Promise callLibSessionWorker([ 'UserConfig', @@ -115,7 +115,7 @@ export const UserConfigWrapperActions: UserConfigWrapperActionsCalls = { name, priority, profilePic, - expireSeconds, + // expireSeconds, ]) as Promise>, };