From 36cf05db1bf13d2a7506bf476dc68024cbe6d707 Mon Sep 17 00:00:00 2001 From: Warrick Corfe-Tan Date: Wed, 30 Jun 2021 13:09:09 +1000 Subject: [PATCH] Switched conversation pin state. --- ts/components/ConversationListItem.tsx | 15 +++++----- .../session/LeftPaneContactSection.tsx | 3 +- .../session/LeftPaneMessageSection.tsx | 2 -- .../menu/ConversationListItemContextMenu.tsx | 11 ++++--- ts/components/session/menu/Menu.tsx | 17 ++++------- ts/models/conversation.ts | 29 ++++++++++++------- ts/state/reducer.ts | 14 +-------- ts/util/accountManager.ts | 4 --- 8 files changed, 38 insertions(+), 57 deletions(-) diff --git a/ts/components/ConversationListItem.tsx b/ts/components/ConversationListItem.tsx index 8919a6c9d..29e44d3e0 100644 --- a/ts/components/ConversationListItem.tsx +++ b/ts/components/ConversationListItem.tsx @@ -23,11 +23,8 @@ import { DefaultTheme, withTheme } from 'styled-components'; import { PubKey } from '../session/types'; import { ConversationType, openConversationExternal } from '../state/ducks/conversations'; import { SessionIcon, SessionIconSize, SessionIconType } from './session/icon'; - -export enum ConversationListItemType { - Conversation = 'conversation', - Contact = 'contact', -} +import { useSelector } from 'react-redux'; +import { SectionType } from './session/ActionsPanel'; export interface ConversationListItemProps extends ConversationType { index?: number; // used to force a refresh when one conversation is removed on top of the list @@ -37,7 +34,6 @@ export interface ConversationListItemProps extends ConversationType { type PropsHousekeeping = { style?: Object; theme: DefaultTheme; - conversationListItemType: ConversationListItemType; }; type Props = ConversationListItemProps & PropsHousekeeping; @@ -70,7 +66,7 @@ class ConversationListItem extends React.PureComponent { } public renderHeader() { - const { unreadCount, mentionedUs, activeAt, isPinned, conversationListItemType } = this.props; + const { unreadCount, mentionedUs, activeAt, isPinned } = this.props; let atSymbol = null; let unreadCountDiv = null; @@ -79,8 +75,11 @@ class ConversationListItem extends React.PureComponent { unreadCountDiv =

{unreadCount}

; } + const isMessagesSection = + window.inboxStore?.getState().section.focusedSection === SectionType.Message; + const pinIcon = - conversationListItemType === ConversationListItemType.Conversation && isPinned ? ( + isMessagesSection && isPinned ? ( { return ( { return ( ) : null; diff --git a/ts/components/session/menu/Menu.tsx b/ts/components/session/menu/Menu.tsx index 42f94b18b..871f1987b 100644 --- a/ts/components/session/menu/Menu.tsx +++ b/ts/components/session/menu/Menu.tsx @@ -130,18 +130,11 @@ export const MenuItemPinConversation = ( props: PinConversationMenuItemProps ): JSX.Element | null => { const { conversationId } = props; - const conversation = getConversationController() - .get(conversationId) - .getProps(); - const { isPinned } = conversation; - - const togglePinConversation = () => { - window.inboxStore?.dispatch( - conversationActions.conversationChanged(conversationId, { - ...conversation, - isPinned: !isPinned, - }) - ); + const conversation = getConversationController().get(conversationId); + let isPinned = conversation.getIsPinned(); + + const togglePinConversation = async () => { + await conversation.setIsPinned(!isPinned); }; const menuText = isPinned ? window.i18n('unpinConversation') : window.i18n('pinConversation'); return {menuText}; diff --git a/ts/models/conversation.ts b/ts/models/conversation.ts index 55b6544c8..53dd24d77 100644 --- a/ts/models/conversation.ts +++ b/ts/models/conversation.ts @@ -16,7 +16,6 @@ import { getMessagesByConversation, getUnreadByConversation, getUnreadCountByConversation, - removeAllMessagesInConversation, removeMessage as dataRemoveMessage, saveMessages, updateConversation, @@ -40,11 +39,7 @@ import { ConversationInteraction } from '../interactions'; import { OpenGroupVisibleMessage } from '../session/messages/outgoing/visibleMessage/OpenGroupVisibleMessage'; import { OpenGroupRequestCommonType } from '../opengroup/opengroupV2/ApiUtil'; import { getOpenGroupV2FromConversationId } from '../opengroup/utils/OpenGroupUtils'; -import { NotificationForConvoOption } from '../components/conversation/ConversationHeader'; -import { useDispatch } from 'react-redux'; -import { updateConfirmModal } from '../state/ducks/modalDialog'; import { createTaskWithTimeout } from '../session/utils/TaskWithTimeout'; -import { DURATION, SWARM_POLLING_TIMEOUT } from '../session/constants'; export enum ConversationTypeEnum { GROUP = 'group', @@ -96,6 +91,7 @@ export interface ConversationAttributes { accessKey?: any; triggerNotificationsFor: ConversationNotificationSettingType; isTrustedForAttachmentDownload: boolean; + isPinned?: boolean; } export interface ConversationAttributesOptionals { @@ -133,6 +129,7 @@ export interface ConversationAttributesOptionals { accessKey?: any; triggerNotificationsFor?: ConversationNotificationSettingType; isTrustedForAttachmentDownload?: boolean; + isPinned?: boolean; } /** @@ -162,6 +159,7 @@ export const fillConvoAttributesWithDefaults = ( active_at: 0, triggerNotificationsFor: 'all', // if the settings is not set in the db, this is the default isTrustedForAttachmentDownload: false, // we don't trust a contact until we say so + isPinned: false, }); }; @@ -409,7 +407,7 @@ export class ConversationModel extends Backbone.Model { left: !!this.get('left'), groupAdmins, members, - isPinned: this.getIsPinned() || false, + isPinned: this.getIsPinned(), }; } @@ -1095,6 +1093,17 @@ export class ConversationModel extends Backbone.Model { await this.commit(); } } + + public async setIsPinned(value: boolean) { + if (value !== this.get('isPinned')) { + this.set({ + isPinned: value, + }); + await this.commit(); + console.log(this); + } + } + public async setGroupName(name: string) { const profileName = this.get('name'); if (profileName !== name) { @@ -1226,6 +1235,10 @@ export class ConversationModel extends Backbone.Model { return this.get('name') || window.i18n('unknown'); } + public getIsPinned() { + return this.get('isPinned'); + } + public getTitle() { if (this.isPrivate()) { const profileName = this.getProfileName(); @@ -1438,10 +1451,6 @@ export class ConversationModel extends Backbone.Model { return typeof expireTimer === 'number' && expireTimer > 0; } - - private getIsPinned() { - return window.inboxStore?.getState().conversations.conversationLookup[this.id].isPinned; - } } export class ConversationCollection extends Backbone.Collection { diff --git a/ts/state/reducer.ts b/ts/state/reducer.ts index 1c2aaf731..e757789d8 100644 --- a/ts/state/reducer.ts +++ b/ts/state/reducer.ts @@ -14,12 +14,6 @@ import { defaultOnionReducer as onionPaths, OnionState } from './ducks/onion'; import { modalReducer as modals, ModalState } from './ducks/modalDialog'; import { userConfigReducer as userConfig, UserConfigState } from './ducks/userConfig'; -// tslint:disable-next-line: no-submodule-imports match-default-export-name -import storage from 'redux-persist/lib/storage'; - -// tslint:disable-next-line: no-submodule-imports match-default-export-name -import persistReducer from 'redux-persist/lib/persistReducer'; - export type StateType = { search: SearchStateType; user: UserStateType; @@ -33,15 +27,9 @@ export type StateType = { userConfig: UserConfigState; }; -const conversationsPersistConfig = { - key: 'conversations', - storage, - whitelist: ['conversationLookup'], -}; - export const reducers = { search, - conversations: persistReducer(conversationsPersistConfig, conversations), + conversations, user, theme, section, diff --git a/ts/util/accountManager.ts b/ts/util/accountManager.ts index f02dd94f2..7661bda9c 100644 --- a/ts/util/accountManager.ts +++ b/ts/util/accountManager.ts @@ -135,10 +135,6 @@ async function bouncyDeleteAccount(reason?: string) { await window.Signal.Data.removeOtherData(); // 'unlink' => toast will be shown on app restart window.localStorage.setItem('restart-reason', reason || ''); - if (window.inboxStore) { - // warrick: this part might be redundant due to localStorage getting cleared. - await persistStore(window.inboxStore).purge(); - } }; try { window?.log?.info('DeleteAccount => Sending a last SyncConfiguration');