// Copyright 2021 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only import type { ChangeEventHandler } from 'react'; import React, { forwardRef, useState } from 'react'; import type { AttachmentType } from '../types/Attachment'; import { AttachmentToastType } from '../types/AttachmentToastType'; import type { LocalizerType } from '../types/Util'; import { ToastCannotMixImageAndNonImageAttachments } from './ToastCannotMixImageAndNonImageAttachments'; import { ToastDangerousFileType } from './ToastDangerousFileType'; import { ToastFileSize } from './ToastFileSize'; import { ToastMaxAttachments } from './ToastMaxAttachments'; import { ToastOneNonImageAtATime } from './ToastOneNonImageAtATime'; import { ToastUnableToLoadAttachment } from './ToastUnableToLoadAttachment'; import type { HandleAttachmentsProcessingArgsType } from '../util/handleAttachmentsProcessing'; export type PropsType = { addAttachment: ( conversationId: string, attachment: AttachmentType ) => unknown; addPendingAttachment: ( conversationId: string, pendingAttachment: AttachmentType ) => unknown; conversationId: string; draftAttachments: ReadonlyArray; i18n: LocalizerType; processAttachments: (options: HandleAttachmentsProcessingArgsType) => unknown; removeAttachment: (conversationId: string, filePath: string) => unknown; }; export const CompositionUpload = forwardRef( ( { addAttachment, addPendingAttachment, conversationId, draftAttachments, i18n, processAttachments, removeAttachment, }, ref ) => { const [toastType, setToastType] = useState< AttachmentToastType | undefined >(); const onFileInputChange: ChangeEventHandler = async event => { const files = event.target.files || []; await processAttachments({ addAttachment, addPendingAttachment, conversationId, files: Array.from(files), draftAttachments, onShowToast: setToastType, removeAttachment, }); }; function closeToast() { setToastType(undefined); } let toast; if (toastType === AttachmentToastType.ToastFileSize) { toast = ( ); } else if (toastType === AttachmentToastType.ToastDangerousFileType) { toast = ; } else if (toastType === AttachmentToastType.ToastMaxAttachments) { toast = ; } else if (toastType === AttachmentToastType.ToastOneNonImageAtATime) { toast = ; } else if ( toastType === AttachmentToastType.ToastCannotMixImageAndNonImageAttachments ) { toast = ( ); } else if (toastType === AttachmentToastType.ToastUnableToLoadAttachment) { toast = ; } return ( <> {toast} ); } );