27b55e472d
Co-authored-by: Fedor Indutny <79877362+indutny-signal@users.noreply.github.com>
84 lines
2.8 KiB
TypeScript
84 lines
2.8 KiB
TypeScript
// Copyright 2021 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import React, { memo, useCallback } from 'react';
|
|
import { useSelector } from 'react-redux';
|
|
import type { StateType } from '../reducer';
|
|
import { ConversationPanel } from './ConversationPanel';
|
|
import { ConversationView } from '../../components/conversation/ConversationView';
|
|
import { SmartCompositionArea } from './CompositionArea';
|
|
import { SmartConversationHeader } from './ConversationHeader';
|
|
import { SmartTimeline } from './Timeline';
|
|
import {
|
|
getActivePanel,
|
|
getIsPanelAnimating,
|
|
getSelectedConversationId,
|
|
getSelectedMessageIds,
|
|
} from '../selectors/conversations';
|
|
import { useComposerActions } from '../ducks/composer';
|
|
import { useConversationsActions } from '../ducks/conversations';
|
|
|
|
function renderCompositionArea(conversationId: string) {
|
|
return <SmartCompositionArea id={conversationId} />;
|
|
}
|
|
|
|
function renderConversationHeader(conversationId: string) {
|
|
return <SmartConversationHeader id={conversationId} />;
|
|
}
|
|
|
|
function renderTimeline(conversationId: string) {
|
|
return <SmartTimeline key={conversationId} id={conversationId} />;
|
|
}
|
|
|
|
function renderPanel(conversationId: string) {
|
|
return <ConversationPanel conversationId={conversationId} />;
|
|
}
|
|
|
|
export const SmartConversationView = memo(
|
|
function SmartConversationView(): JSX.Element {
|
|
const conversationId = useSelector(getSelectedConversationId);
|
|
|
|
if (!conversationId) {
|
|
throw new Error('SmartConversationView: No selected conversation');
|
|
}
|
|
|
|
const { toggleSelectMode } = useConversationsActions();
|
|
const selectedMessageIds = useSelector(getSelectedMessageIds);
|
|
const isSelectMode = selectedMessageIds != null;
|
|
|
|
const { processAttachments } = useComposerActions();
|
|
|
|
const hasOpenModal = useSelector((state: StateType) => {
|
|
return (
|
|
state.globalModals.forwardMessagesProps != null ||
|
|
state.globalModals.deleteMessagesProps != null ||
|
|
state.globalModals.hasConfirmationModal
|
|
);
|
|
});
|
|
|
|
const shouldHideConversationView = useSelector((state: StateType) => {
|
|
const activePanel = getActivePanel(state);
|
|
const isAnimating = getIsPanelAnimating(state);
|
|
return activePanel && !isAnimating;
|
|
});
|
|
|
|
const onExitSelectMode = useCallback(() => {
|
|
toggleSelectMode(false);
|
|
}, [toggleSelectMode]);
|
|
|
|
return (
|
|
<ConversationView
|
|
conversationId={conversationId}
|
|
hasOpenModal={hasOpenModal}
|
|
isSelectMode={isSelectMode}
|
|
onExitSelectMode={onExitSelectMode}
|
|
processAttachments={processAttachments}
|
|
renderCompositionArea={renderCompositionArea}
|
|
renderConversationHeader={renderConversationHeader}
|
|
renderTimeline={renderTimeline}
|
|
renderPanel={renderPanel}
|
|
shouldHideConversationView={shouldHideConversationView}
|
|
/>
|
|
);
|
|
}
|
|
);
|