2021-02-23 20:34:28 +00:00
|
|
|
// Copyright 2019-2021 Signal Messenger, LLC
|
2020-10-30 20:34:04 +00:00
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2021-08-11 16:23:21 +00:00
|
|
|
import React from 'react';
|
2019-01-14 21:49:58 +00:00
|
|
|
import { connect } from 'react-redux';
|
2021-05-19 16:14:35 +00:00
|
|
|
import { get } from 'lodash';
|
2019-01-14 21:49:58 +00:00
|
|
|
import { mapDispatchToProps } from '../actions';
|
2021-10-26 19:15:33 +00:00
|
|
|
import type { PropsType as LeftPanePropsType } from '../../components/LeftPane';
|
|
|
|
import { LeftPane, LeftPaneMode } from '../../components/LeftPane';
|
|
|
|
import type { StateType } from '../reducer';
|
2021-03-03 20:09:58 +00:00
|
|
|
import { missingCaseError } from '../../util/missingCaseError';
|
2019-01-14 21:49:58 +00:00
|
|
|
|
2021-11-01 19:13:35 +00:00
|
|
|
import { ComposerStep, OneTimeModalState } from '../ducks/conversationsEnums';
|
2021-10-12 23:59:08 +00:00
|
|
|
import {
|
|
|
|
getIsSearchingInAConversation,
|
2021-11-01 18:43:02 +00:00
|
|
|
getQuery,
|
|
|
|
getSearchConversation,
|
2021-10-12 23:59:08 +00:00
|
|
|
getSearchResults,
|
|
|
|
getStartSearchCounter,
|
|
|
|
isSearching,
|
|
|
|
} from '../selectors/search';
|
2021-11-02 23:01:13 +00:00
|
|
|
import { getIntl, getRegionCode, getTheme } from '../selectors/user';
|
|
|
|
import { getBadgesById } from '../selectors/badges';
|
2021-11-12 01:17:29 +00:00
|
|
|
import {
|
|
|
|
getPreferredLeftPaneWidth,
|
|
|
|
getUsernamesEnabled,
|
|
|
|
} from '../selectors/items';
|
2019-11-07 21:36:16 +00:00
|
|
|
import {
|
2021-03-03 20:09:58 +00:00
|
|
|
getCantAddContactForModal,
|
2021-08-06 00:17:05 +00:00
|
|
|
getComposeAvatarData,
|
2021-03-03 20:09:58 +00:00
|
|
|
getComposeGroupAvatar,
|
2021-06-25 23:52:56 +00:00
|
|
|
getComposeGroupExpireTimer,
|
2021-08-06 00:17:05 +00:00
|
|
|
getComposeGroupName,
|
2021-04-20 23:16:49 +00:00
|
|
|
getComposerConversationSearchTerm,
|
2021-03-03 20:09:58 +00:00
|
|
|
getComposerStep,
|
2021-11-12 01:17:29 +00:00
|
|
|
getComposeSelectedContacts,
|
2021-08-06 00:17:05 +00:00
|
|
|
getFilteredCandidateContactsForNewGroup,
|
|
|
|
getFilteredComposeContacts,
|
|
|
|
getFilteredComposeGroups,
|
2021-11-12 01:17:29 +00:00
|
|
|
getIsFetchingUsername,
|
2019-11-07 21:36:16 +00:00
|
|
|
getLeftPaneLists,
|
2021-03-03 20:09:58 +00:00
|
|
|
getMaximumGroupSizeModalState,
|
|
|
|
getRecommendedGroupSizeModalState,
|
2021-02-12 21:58:14 +00:00
|
|
|
getSelectedConversationId,
|
2021-02-23 20:34:28 +00:00
|
|
|
getSelectedMessage,
|
2019-11-07 21:36:16 +00:00
|
|
|
getShowArchived,
|
2021-03-03 20:09:58 +00:00
|
|
|
hasGroupCreationError,
|
|
|
|
isCreatingGroup,
|
2021-08-06 00:17:05 +00:00
|
|
|
isEditingAvatar,
|
2019-11-07 21:36:16 +00:00
|
|
|
} from '../selectors/conversations';
|
2021-10-12 23:59:08 +00:00
|
|
|
import type { WidthBreakpoint } from '../../components/_util';
|
2019-01-14 21:49:58 +00:00
|
|
|
|
2020-02-12 21:30:58 +00:00
|
|
|
import { SmartExpiredBuildDialog } from './ExpiredBuildDialog';
|
2019-01-14 21:49:58 +00:00
|
|
|
import { SmartMainHeader } from './MainHeader';
|
2019-08-09 00:46:49 +00:00
|
|
|
import { SmartMessageSearchResult } from './MessageSearchResult';
|
2020-02-12 21:30:58 +00:00
|
|
|
import { SmartNetworkStatus } from './NetworkStatus';
|
2020-04-16 19:20:52 +00:00
|
|
|
import { SmartRelinkDialog } from './RelinkDialog';
|
2020-02-12 21:30:58 +00:00
|
|
|
import { SmartUpdateDialog } from './UpdateDialog';
|
2021-05-06 00:09:29 +00:00
|
|
|
import { SmartCaptchaDialog } from './CaptchaDialog';
|
2019-01-14 21:49:58 +00:00
|
|
|
|
2021-10-12 23:59:08 +00:00
|
|
|
function renderExpiredBuildDialog(
|
|
|
|
props: Readonly<{ containerWidthBreakpoint: WidthBreakpoint }>
|
|
|
|
): JSX.Element {
|
|
|
|
return <SmartExpiredBuildDialog {...props} />;
|
2020-02-12 21:30:58 +00:00
|
|
|
}
|
2019-05-31 22:42:01 +00:00
|
|
|
function renderMainHeader(): JSX.Element {
|
2020-10-26 21:32:46 +00:00
|
|
|
return <SmartMainHeader />;
|
2019-05-31 22:42:01 +00:00
|
|
|
}
|
2021-08-11 16:23:21 +00:00
|
|
|
function renderMessageSearchResult(id: string): JSX.Element {
|
2021-11-01 19:13:35 +00:00
|
|
|
return <SmartMessageSearchResult id={id} />;
|
2019-08-09 00:46:49 +00:00
|
|
|
}
|
2021-10-12 23:59:08 +00:00
|
|
|
function renderNetworkStatus(
|
|
|
|
props: Readonly<{ containerWidthBreakpoint: WidthBreakpoint }>
|
|
|
|
): JSX.Element {
|
|
|
|
return <SmartNetworkStatus {...props} />;
|
2020-02-12 21:30:58 +00:00
|
|
|
}
|
2021-10-12 23:59:08 +00:00
|
|
|
function renderRelinkDialog(
|
|
|
|
props: Readonly<{ containerWidthBreakpoint: WidthBreakpoint }>
|
|
|
|
): JSX.Element {
|
|
|
|
return <SmartRelinkDialog {...props} />;
|
2020-04-16 19:20:52 +00:00
|
|
|
}
|
2021-10-12 23:59:08 +00:00
|
|
|
function renderUpdateDialog(
|
|
|
|
props: Readonly<{ containerWidthBreakpoint: WidthBreakpoint }>
|
|
|
|
): JSX.Element {
|
|
|
|
return <SmartUpdateDialog {...props} />;
|
2020-04-16 19:20:52 +00:00
|
|
|
}
|
2021-05-06 00:09:29 +00:00
|
|
|
function renderCaptchaDialog({ onSkip }: { onSkip(): void }): JSX.Element {
|
|
|
|
return <SmartCaptchaDialog onSkip={onSkip} />;
|
|
|
|
}
|
2019-05-31 22:42:01 +00:00
|
|
|
|
2021-02-23 20:34:28 +00:00
|
|
|
const getModeSpecificProps = (
|
|
|
|
state: StateType
|
|
|
|
): LeftPanePropsType['modeSpecificProps'] => {
|
2021-03-03 20:09:58 +00:00
|
|
|
const composerStep = getComposerStep(state);
|
|
|
|
switch (composerStep) {
|
|
|
|
case undefined:
|
|
|
|
if (getShowArchived(state)) {
|
|
|
|
const { archivedConversations } = getLeftPaneLists(state);
|
2021-11-01 18:43:02 +00:00
|
|
|
const searchConversation = getSearchConversation(state);
|
|
|
|
const searchTerm = getQuery(state);
|
2021-03-03 20:09:58 +00:00
|
|
|
return {
|
|
|
|
mode: LeftPaneMode.Archive,
|
|
|
|
archivedConversations,
|
2021-11-01 18:43:02 +00:00
|
|
|
searchConversation,
|
|
|
|
searchTerm,
|
|
|
|
...(searchConversation && searchTerm ? getSearchResults(state) : {}),
|
2021-03-03 20:09:58 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
if (isSearching(state)) {
|
2021-05-19 16:14:35 +00:00
|
|
|
const primarySendsSms = Boolean(
|
|
|
|
get(state.items, ['primarySendsSms'], false)
|
|
|
|
);
|
|
|
|
|
2021-03-03 20:09:58 +00:00
|
|
|
return {
|
|
|
|
mode: LeftPaneMode.Search,
|
2021-05-19 16:14:35 +00:00
|
|
|
primarySendsSms,
|
2021-03-03 20:09:58 +00:00
|
|
|
...getSearchResults(state),
|
|
|
|
};
|
|
|
|
}
|
|
|
|
return {
|
|
|
|
mode: LeftPaneMode.Inbox,
|
2021-10-12 23:59:08 +00:00
|
|
|
isAboutToSearchInAConversation: getIsSearchingInAConversation(state),
|
|
|
|
startSearchCounter: getStartSearchCounter(state),
|
2021-03-03 20:09:58 +00:00
|
|
|
...getLeftPaneLists(state),
|
|
|
|
};
|
|
|
|
case ComposerStep.StartDirectConversation:
|
|
|
|
return {
|
|
|
|
mode: LeftPaneMode.Compose,
|
2021-05-04 16:17:32 +00:00
|
|
|
composeContacts: getFilteredComposeContacts(state),
|
|
|
|
composeGroups: getFilteredComposeGroups(state),
|
2021-03-03 20:09:58 +00:00
|
|
|
regionCode: getRegionCode(state),
|
2021-04-20 23:16:49 +00:00
|
|
|
searchTerm: getComposerConversationSearchTerm(state),
|
2021-11-12 01:17:29 +00:00
|
|
|
isUsernamesEnabled: getUsernamesEnabled(state),
|
|
|
|
isFetchingUsername: getIsFetchingUsername(state),
|
2021-03-03 20:09:58 +00:00
|
|
|
};
|
|
|
|
case ComposerStep.ChooseGroupMembers:
|
|
|
|
return {
|
|
|
|
mode: LeftPaneMode.ChooseGroupMembers,
|
2021-05-04 16:17:32 +00:00
|
|
|
candidateContacts: getFilteredCandidateContactsForNewGroup(state),
|
2021-03-03 20:09:58 +00:00
|
|
|
cantAddContactForModal: getCantAddContactForModal(state),
|
|
|
|
isShowingRecommendedGroupSizeModal:
|
|
|
|
getRecommendedGroupSizeModalState(state) ===
|
|
|
|
OneTimeModalState.Showing,
|
|
|
|
isShowingMaximumGroupSizeModal:
|
|
|
|
getMaximumGroupSizeModalState(state) === OneTimeModalState.Showing,
|
2021-04-20 23:16:49 +00:00
|
|
|
searchTerm: getComposerConversationSearchTerm(state),
|
2021-03-03 20:09:58 +00:00
|
|
|
selectedContacts: getComposeSelectedContacts(state),
|
|
|
|
};
|
|
|
|
case ComposerStep.SetGroupMetadata:
|
|
|
|
return {
|
|
|
|
mode: LeftPaneMode.SetGroupMetadata,
|
|
|
|
groupAvatar: getComposeGroupAvatar(state),
|
|
|
|
groupName: getComposeGroupName(state),
|
2021-06-25 23:52:56 +00:00
|
|
|
groupExpireTimer: getComposeGroupExpireTimer(state),
|
2021-03-03 20:09:58 +00:00
|
|
|
hasError: hasGroupCreationError(state),
|
|
|
|
isCreating: isCreatingGroup(state),
|
2021-08-06 00:17:05 +00:00
|
|
|
isEditingAvatar: isEditingAvatar(state),
|
2021-03-03 20:09:58 +00:00
|
|
|
selectedContacts: getComposeSelectedContacts(state),
|
2021-08-06 00:17:05 +00:00
|
|
|
userAvatarData: getComposeAvatarData(state),
|
2021-03-03 20:09:58 +00:00
|
|
|
};
|
|
|
|
default:
|
|
|
|
throw missingCaseError(composerStep);
|
2021-02-23 20:34:28 +00:00
|
|
|
}
|
|
|
|
};
|
2019-03-12 00:20:16 +00:00
|
|
|
|
2021-02-23 20:34:28 +00:00
|
|
|
const mapStateToProps = (state: StateType) => {
|
2019-01-14 21:49:58 +00:00
|
|
|
return {
|
2021-02-23 20:34:28 +00:00
|
|
|
modeSpecificProps: getModeSpecificProps(state),
|
2021-11-02 23:01:13 +00:00
|
|
|
badgesById: getBadgesById(state),
|
2021-10-12 23:59:08 +00:00
|
|
|
canResizeLeftPane: window.Signal.RemoteConfig.isEnabled(
|
|
|
|
'desktop.internalUser'
|
|
|
|
),
|
|
|
|
preferredWidthFromStorage: getPreferredLeftPaneWidth(state),
|
2021-02-23 20:34:28 +00:00
|
|
|
selectedConversationId: getSelectedConversationId(state),
|
|
|
|
selectedMessageId: getSelectedMessage(state)?.id,
|
2019-03-12 00:20:16 +00:00
|
|
|
showArchived: getShowArchived(state),
|
2019-01-14 21:49:58 +00:00
|
|
|
i18n: getIntl(state),
|
2021-02-23 20:34:28 +00:00
|
|
|
regionCode: getRegionCode(state),
|
2021-05-06 00:09:29 +00:00
|
|
|
challengeStatus: state.network.challengeStatus,
|
2020-02-12 21:30:58 +00:00
|
|
|
renderExpiredBuildDialog,
|
2019-05-31 22:42:01 +00:00
|
|
|
renderMainHeader,
|
2019-08-09 00:46:49 +00:00
|
|
|
renderMessageSearchResult,
|
2020-02-12 21:30:58 +00:00
|
|
|
renderNetworkStatus,
|
2020-04-16 19:20:52 +00:00
|
|
|
renderRelinkDialog,
|
2020-02-12 21:30:58 +00:00
|
|
|
renderUpdateDialog,
|
2021-05-06 00:09:29 +00:00
|
|
|
renderCaptchaDialog,
|
2021-11-02 23:01:13 +00:00
|
|
|
theme: getTheme(state),
|
2019-01-14 21:49:58 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
const smart = connect(mapStateToProps, mapDispatchToProps);
|
|
|
|
|
|
|
|
export const SmartLeftPane = smart(LeftPane);
|