// Copyright 2019 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only import React, { useCallback, useEffect, useRef, useState } from 'react'; import { get } from 'lodash'; import classNames from 'classnames'; import type { DraftBodyRangesType, LocalizerType, ThemeType, } from '../types/Util'; import type { ErrorDialogAudioRecorderType } from '../types/AudioRecorder'; import { RecordingState } from '../types/AudioRecorder'; import type { imageToBlurHash } from '../util/imageToBlurHash'; import { Spinner } from './Spinner'; import type { Props as EmojiButtonProps, EmojiButtonAPI, } from './emoji/EmojiButton'; import { EmojiButton } from './emoji/EmojiButton'; import type { Props as StickerButtonProps } from './stickers/StickerButton'; import { StickerButton } from './stickers/StickerButton'; import type { InputApi, Props as CompositionInputProps, } from './CompositionInput'; import { CompositionInput } from './CompositionInput'; import type { Props as MessageRequestActionsProps } from './conversation/MessageRequestActions'; import { MessageRequestActions } from './conversation/MessageRequestActions'; import type { PropsType as GroupV1DisabledActionsPropsType } from './conversation/GroupV1DisabledActions'; import { GroupV1DisabledActions } from './conversation/GroupV1DisabledActions'; import type { PropsType as GroupV2PendingApprovalActionsPropsType } from './conversation/GroupV2PendingApprovalActions'; import { GroupV2PendingApprovalActions } from './conversation/GroupV2PendingApprovalActions'; import { AnnouncementsOnlyGroupBanner } from './AnnouncementsOnlyGroupBanner'; import { AttachmentList } from './conversation/AttachmentList'; import type { AttachmentDraftType, InMemoryAttachmentDraftType, } from '../types/Attachment'; import { isImageAttachment, isVoiceMessage } from '../types/Attachment'; import { AudioCapture } from './conversation/AudioCapture'; import { CompositionUpload } from './CompositionUpload'; import type { ConversationType, MessageTimestamps, PushPanelForConversationActionType, ShowConversationType, } from '../state/ducks/conversations'; import type { EmojiPickDataType } from './emoji/EmojiPicker'; import type { LinkPreviewType } from '../types/message/LinkPreviews'; import { MandatoryProfileSharingActions } from './conversation/MandatoryProfileSharingActions'; import { MediaQualitySelector } from './MediaQualitySelector'; import type { Props as QuoteProps } from './conversation/Quote'; import { Quote } from './conversation/Quote'; import { countStickers } from './stickers/lib'; import { useAttachFileShortcut, useKeyboardShortcuts, } from '../hooks/useKeyboardShortcuts'; import { MediaEditor } from './MediaEditor'; import { isImageTypeSupported } from '../util/GoogleChrome'; import * as KeyboardLayout from '../services/keyboardLayout'; import { usePrevious } from '../hooks/usePrevious'; import { PanelType } from '../types/Panels'; import type { SmartCompositionRecordingDraftProps } from '../state/smart/CompositionRecordingDraft'; import { useEscapeHandling } from '../hooks/useEscapeHandling'; import type { SmartCompositionRecordingProps } from '../state/smart/CompositionRecording'; import SelectModeActions from './conversation/SelectModeActions'; import type { ShowToastAction } from '../state/ducks/toast'; export type OwnProps = Readonly<{ acceptedMessageRequest?: boolean; addAttachment: ( conversationId: string, attachment: InMemoryAttachmentDraftType ) => unknown; announcementsOnly?: boolean; areWeAdmin?: boolean; areWePending?: boolean; areWePendingApproval?: boolean; cancelRecording: () => unknown; completeRecording: ( conversationId: string, onRecordingComplete: (rec: InMemoryAttachmentDraftType) => unknown ) => unknown; conversationId: string; uuid?: string; draftAttachments: ReadonlyArray; errorDialogAudioRecorderType?: ErrorDialogAudioRecorderType; errorRecording: (e: ErrorDialogAudioRecorderType) => unknown; focusCounter: number; groupAdmins: Array; groupVersion?: 1 | 2; i18n: LocalizerType; imageToBlurHash: typeof imageToBlurHash; isDisabled: boolean; isFetchingUUID?: boolean; isGroupV1AndDisabled?: boolean; isMissingMandatoryProfileSharing?: boolean; isSignalConversation?: boolean; recordingState: RecordingState; messageCompositionId: string; isSMSOnly?: boolean; left?: boolean; linkPreviewLoading: boolean; linkPreviewResult?: LinkPreviewType; messageRequestsEnabled?: boolean; onClearAttachments(conversationId: string): unknown; onCloseLinkPreview(conversationId: string): unknown; showToast: ShowToastAction; processAttachments: (options: { conversationId: string; files: ReadonlyArray; }) => unknown; setMediaQualitySetting(conversationId: string, isHQ: boolean): unknown; sendStickerMessage( id: string, opts: { packId: string; stickerId: number } ): unknown; sendMultiMediaMessage( conversationId: string, options: { draftAttachments?: ReadonlyArray; mentions?: DraftBodyRangesType; message?: string; timestamp?: number; voiceNoteAttachment?: InMemoryAttachmentDraftType; } ): unknown; quotedMessageId?: string; quotedMessageProps?: Omit< QuoteProps, 'i18n' | 'onClick' | 'onClose' | 'withContentAbove' >; removeAttachment: (conversationId: string, filePath: string) => unknown; scrollToMessage: (conversationId: string, messageId: string) => unknown; setComposerFocus: (conversationId: string) => unknown; setQuoteByMessageId( conversationId: string, messageId: string | undefined ): unknown; shouldSendHighQualityAttachments: boolean; showConversation: ShowConversationType; startRecording: (id: string) => unknown; theme: ThemeType; renderSmartCompositionRecording: ( props: SmartCompositionRecordingProps ) => JSX.Element; renderSmartCompositionRecordingDraft: ( props: SmartCompositionRecordingDraftProps ) => JSX.Element | null; selectedMessageIds: ReadonlyArray | undefined; lastSelectedMessage: MessageTimestamps | undefined; toggleSelectMode: (on: boolean) => void; toggleForwardMessagesModal: ( messageIds: ReadonlyArray, onForward: () => void ) => void; }>; export type Props = Pick< CompositionInputProps, | 'sortedGroupMembers' | 'onEditorStateChange' | 'onTextTooLong' | 'draftText' | 'draftBodyRanges' | 'clearQuotedMessage' | 'getPreferredBadge' | 'getQuotedMessage' > & Pick< EmojiButtonProps, 'onPickEmoji' | 'onSetSkinTone' | 'recentEmojis' | 'skinTone' > & Pick< StickerButtonProps, | 'knownPacks' | 'receivedPacks' | 'installedPack' | 'installedPacks' | 'blessedPacks' | 'recentStickers' | 'clearInstalledStickerPack' | 'clearShowIntroduction' | 'showPickerHint' | 'clearShowPickerHint' > & MessageRequestActionsProps & Pick & Pick & { pushPanelForConversation: PushPanelForConversationActionType; } & OwnProps; export function CompositionArea({ // Base props addAttachment, conversationId, focusCounter, i18n, imageToBlurHash, isDisabled, isSignalConversation, messageCompositionId, showToast, pushPanelForConversation, processAttachments, removeAttachment, sendMultiMediaMessage, setComposerFocus, setQuoteByMessageId, theme, // AttachmentList draftAttachments, onClearAttachments, // AudioCapture recordingState, startRecording, // StagedLinkPreview linkPreviewLoading, linkPreviewResult, onCloseLinkPreview, // Quote quotedMessageId, quotedMessageProps, scrollToMessage, // MediaQualitySelector setMediaQualitySetting, shouldSendHighQualityAttachments, // CompositionInput onEditorStateChange, onTextTooLong, draftText, draftBodyRanges, clearQuotedMessage, getPreferredBadge, getQuotedMessage, sortedGroupMembers, // EmojiButton onPickEmoji, onSetSkinTone, recentEmojis, skinTone, // StickerButton knownPacks, receivedPacks, installedPack, installedPacks, blessedPacks, recentStickers, clearInstalledStickerPack, sendStickerMessage, clearShowIntroduction, showPickerHint, clearShowPickerHint, // Message Requests acceptedMessageRequest, areWePending, areWePendingApproval, conversationType, groupVersion, isBlocked, isMissingMandatoryProfileSharing, left, messageRequestsEnabled, acceptConversation, blockConversation, blockAndReportSpam, deleteConversation, title, // GroupV1 Disabled Actions isGroupV1AndDisabled, showGV2MigrationDialog, // GroupV2 announcementsOnly, areWeAdmin, groupAdmins, cancelJoinRequest, showConversation, // SMS-only contacts isSMSOnly, isFetchingUUID, renderSmartCompositionRecording, renderSmartCompositionRecordingDraft, // Selected messages selectedMessageIds, lastSelectedMessage, toggleSelectMode, toggleForwardMessagesModal, }: Props): JSX.Element | null { const [dirty, setDirty] = useState(false); const [large, setLarge] = useState(false); const [attachmentToEdit, setAttachmentToEdit] = useState< AttachmentDraftType | undefined >(); const inputApiRef = useRef(); const emojiButtonRef = useRef(); const fileInputRef = useRef(null); const handleForceSend = useCallback(() => { setLarge(false); if (inputApiRef.current) { inputApiRef.current.submit(); } }, [inputApiRef, setLarge]); const handleSubmit = useCallback( (message: string, mentions: DraftBodyRangesType, timestamp: number) => { emojiButtonRef.current?.close(); sendMultiMediaMessage(conversationId, { draftAttachments, mentions, message, timestamp, }); setLarge(false); }, [conversationId, draftAttachments, sendMultiMediaMessage, setLarge] ); const launchAttachmentPicker = useCallback(() => { const fileInput = fileInputRef.current; if (fileInput) { // Setting the value to empty so that onChange always fires in case // you add multiple photos. fileInput.value = ''; fileInput.click(); } }, []); function maybeEditAttachment(attachment: AttachmentDraftType) { if (!isImageTypeSupported(attachment.contentType)) { return; } setAttachmentToEdit(attachment); } const attachFileShortcut = useAttachFileShortcut(launchAttachmentPicker); useKeyboardShortcuts(attachFileShortcut); // Focus input on first mount const previousFocusCounter = usePrevious( focusCounter, focusCounter ); useEffect(() => { if (inputApiRef.current) { inputApiRef.current.focus(); } }, []); // Focus input whenever explicitly requested useEffect(() => { if (focusCounter !== previousFocusCounter && inputApiRef.current) { inputApiRef.current.focus(); } }, [inputApiRef, focusCounter, previousFocusCounter]); const withStickers = countStickers({ knownPacks, blessedPacks, installedPacks, receivedPacks, }) > 0; const previousMessageCompositionId = usePrevious( messageCompositionId, messageCompositionId ); useEffect(() => { if (!inputApiRef.current) { return; } if (previousMessageCompositionId !== messageCompositionId) { inputApiRef.current.reset(); } }, [messageCompositionId, previousMessageCompositionId]); const insertEmoji = useCallback( (e: EmojiPickDataType) => { if (inputApiRef.current) { inputApiRef.current.insertEmoji(e); onPickEmoji(e); } }, [inputApiRef, onPickEmoji] ); const previousConversationId = usePrevious(conversationId, conversationId); useEffect(() => { if (!draftText) { inputApiRef.current?.setContents(''); return; } if (conversationId === previousConversationId) { return; } inputApiRef.current?.setContents(draftText, draftBodyRanges, true); }, [conversationId, draftBodyRanges, draftText, previousConversationId]); const handleToggleLarge = useCallback(() => { setLarge(l => !l); }, [setLarge]); const shouldShowMicrophone = !large && !draftAttachments.length && !draftText; const showMediaQualitySelector = draftAttachments.some(isImageAttachment); const leftHandSideButtonsFragment = ( <>
setComposerFocus(conversationId)} recentEmojis={recentEmojis} skinTone={skinTone} onSetSkinTone={onSetSkinTone} />
{showMediaQualitySelector ? (
) : null} ); const micButtonFragment = shouldShowMicrophone ? (
) : null; const isRecording = recordingState === RecordingState.Recording; const attButton = linkPreviewResult || isRecording ? undefined : (
); const sendButtonFragment = ( <>
); const stickerButtonPlacement = large ? 'top-start' : 'top-end'; const stickerButtonFragment = withStickers ? (
pushPanelForConversation({ type: PanelType.StickerManager, }) } onPickSticker={(packId, stickerId) => sendStickerMessage(conversationId, { packId, stickerId }) } clearShowIntroduction={clearShowIntroduction} showPickerHint={showPickerHint} clearShowPickerHint={clearShowPickerHint} position={stickerButtonPlacement} />
) : null; // Listen for cmd/ctrl-shift-x to toggle large composition mode useEffect(() => { const handler = (e: KeyboardEvent) => { const { shiftKey, ctrlKey, metaKey } = e; const key = KeyboardLayout.lookup(e); // When using the ctrl key, `key` is `'X'`. When using the cmd key, `key` is `'x'` const xKey = key === 'x' || key === 'X'; const commandKey = get(window, 'platform') === 'darwin' && metaKey; const controlKey = get(window, 'platform') !== 'darwin' && ctrlKey; const commandOrCtrl = commandKey || controlKey; // cmd/ctrl-shift-x if (xKey && shiftKey && commandOrCtrl) { e.preventDefault(); setLarge(x => !x); } }; document.addEventListener('keydown', handler); return () => { document.removeEventListener('keydown', handler); }; }, [setLarge]); const handleRecordingBeforeSend = useCallback(() => { emojiButtonRef.current?.close(); }, [emojiButtonRef]); const clearQuote = useCallback(() => { if (quotedMessageId) { setQuoteByMessageId(conversationId, undefined); } }, [conversationId, quotedMessageId, setQuoteByMessageId]); useEscapeHandling(clearQuote); if (isSignalConversation) { // TODO DESKTOP-4547 return
; } if (selectedMessageIds != null) { return ( { toggleSelectMode(false); }} onDeleteMessages={() => { window.reduxActions.conversations.deleteMessages({ conversationId, lastSelectedMessage, messageIds: selectedMessageIds, }); toggleSelectMode(false); }} onForwardMessages={() => { if (selectedMessageIds.length > 0) { toggleForwardMessagesModal(selectedMessageIds, () => { toggleSelectMode(false); }); } }} showToast={showToast} /> ); } if ( isBlocked || areWePending || (messageRequestsEnabled && !acceptedMessageRequest) ) { return ( ); } if (conversationType === 'direct' && isSMSOnly) { return (
{isFetchingUUID ? ( ) : ( <>

{i18n('CompositionArea--sms-only__title')}

{i18n('CompositionArea--sms-only__body')}

)}
); } // If no message request, but we haven't shared profile yet, we show profile-sharing UI if ( !left && (conversationType === 'direct' || (conversationType === 'group' && groupVersion === 1)) && isMissingMandatoryProfileSharing ) { return ( ); } // If this is a V1 group, now disabled entirely, we show UI to help them upgrade if (!left && isGroupV1AndDisabled) { return ( ); } if (areWePendingApproval) { return ( ); } if (announcementsOnly && !areWeAdmin) { return ( ); } if (isRecording) { return renderSmartCompositionRecording({ onBeforeSend: handleRecordingBeforeSend, }); } if (draftAttachments.length === 1 && isVoiceMessage(draftAttachments[0])) { const voiceNoteAttachment = draftAttachments[0]; if (!voiceNoteAttachment.pending && voiceNoteAttachment.url) { return renderSmartCompositionRecordingDraft({ voiceNoteAttachment }); } } return (
{attachmentToEdit && 'url' in attachmentToEdit && attachmentToEdit.url && ( setAttachmentToEdit(undefined)} onDone={({ data, contentType, blurHash }) => { const newAttachment = { ...attachmentToEdit, contentType, blurHash, data, size: data.byteLength, }; addAttachment(conversationId, newAttachment); setAttachmentToEdit(undefined); }} installedPacks={installedPacks} recentStickers={recentStickers} /> )}
{quotedMessageId && quotedMessageProps && (
scrollToMessage(conversationId, quotedMessageId)} onClose={() => { setQuoteByMessageId(conversationId, undefined); }} />
)} {draftAttachments.length ? (
onClearAttachments(conversationId)} onCloseAttachment={attachment => { if (attachment.path) { removeAttachment(conversationId, attachment.path); } }} />
) : null}
{!large ? leftHandSideButtonsFragment : null}
{!large ? ( <> {stickerButtonFragment} {!dirty ? micButtonFragment : null} {attButton} ) : null}
{large ? (
{leftHandSideButtonsFragment} {stickerButtonFragment} {attButton} {!dirty ? micButtonFragment : null} {dirty || !shouldShowMicrophone ? sendButtonFragment : null}
) : null}
); }