74 lines
2.5 KiB
TypeScript
74 lines
2.5 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 { ConversationPanel } from './ConversationPanel';
|
|
import { ConversationView } from '../../components/conversation/ConversationView';
|
|
import { SmartCompositionArea } from './CompositionArea';
|
|
import { SmartConversationHeader } from './ConversationHeader';
|
|
import { SmartTimeline } from './Timeline';
|
|
import {
|
|
getActivePanel,
|
|
getIsPanelAnimating,
|
|
getSelectedMessageIds,
|
|
} from '../selectors/conversations';
|
|
import { useComposerActions } from '../ducks/composer';
|
|
import { useConversationsActions } from '../ducks/conversations';
|
|
import { isShowingAnyModal } from '../selectors/globalModals';
|
|
|
|
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 type SmartConversationViewProps = Readonly<{
|
|
selectedConversationId: string;
|
|
}>;
|
|
|
|
export const SmartConversationView = memo(function SmartConversationView(
|
|
props: SmartConversationViewProps
|
|
): JSX.Element {
|
|
const { toggleSelectMode } = useConversationsActions();
|
|
const selectedMessageIds = useSelector(getSelectedMessageIds);
|
|
const isSelectMode = selectedMessageIds != null;
|
|
|
|
const { processAttachments } = useComposerActions();
|
|
|
|
const hasOpenModal = useSelector(isShowingAnyModal);
|
|
const activePanel = useSelector(getActivePanel);
|
|
const isPanelAnimating = useSelector(getIsPanelAnimating);
|
|
const shouldHideConversationView = activePanel && !isPanelAnimating;
|
|
|
|
const onExitSelectMode = useCallback(() => {
|
|
toggleSelectMode(false);
|
|
}, [toggleSelectMode]);
|
|
|
|
return (
|
|
<ConversationView
|
|
conversationId={props.selectedConversationId}
|
|
hasOpenModal={hasOpenModal}
|
|
hasOpenPanel={activePanel != null}
|
|
isSelectMode={isSelectMode}
|
|
onExitSelectMode={onExitSelectMode}
|
|
processAttachments={processAttachments}
|
|
renderCompositionArea={renderCompositionArea}
|
|
renderConversationHeader={renderConversationHeader}
|
|
renderTimeline={renderTimeline}
|
|
renderPanel={renderPanel}
|
|
shouldHideConversationView={shouldHideConversationView}
|
|
/>
|
|
);
|
|
});
|