345 lines
8.5 KiB
TypeScript
345 lines
8.5 KiB
TypeScript
// Copyright 2022 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import React from 'react';
|
|
import type { LocalizerType, ReplacementValuesType } from '../types/Util';
|
|
import { SECOND } from '../util/durations';
|
|
import { Toast } from './Toast';
|
|
import { missingCaseError } from '../util/missingCaseError';
|
|
import { ToastType } from '../types/Toast';
|
|
|
|
export type PropsType = {
|
|
hideToast: () => unknown;
|
|
i18n: LocalizerType;
|
|
openFileInFolder: (target: string) => unknown;
|
|
OS: string;
|
|
onUndoArchive: (conversaetionId: string) => unknown;
|
|
toast?: {
|
|
toastType: ToastType;
|
|
parameters?: ReplacementValuesType;
|
|
};
|
|
};
|
|
|
|
const SHORT_TIMEOUT = 3 * SECOND;
|
|
|
|
export function ToastManager({
|
|
hideToast,
|
|
i18n,
|
|
openFileInFolder,
|
|
onUndoArchive,
|
|
OS,
|
|
toast,
|
|
}: PropsType): JSX.Element | null {
|
|
if (toast === undefined) {
|
|
return null;
|
|
}
|
|
|
|
const { toastType } = toast;
|
|
|
|
if (toastType === ToastType.AddingUserToGroup) {
|
|
return (
|
|
<Toast onClose={hideToast} timeout={SHORT_TIMEOUT}>
|
|
{i18n(
|
|
'AddUserToAnotherGroupModal__toast--adding-user-to-group',
|
|
toast.parameters
|
|
)}
|
|
</Toast>
|
|
);
|
|
}
|
|
|
|
if (toastType === ToastType.AlreadyGroupMember) {
|
|
return (
|
|
<Toast onClose={hideToast}>
|
|
{i18n('GroupV2--join--already-in-group')}
|
|
</Toast>
|
|
);
|
|
}
|
|
|
|
if (toastType === ToastType.AlreadyRequestedToJoin) {
|
|
return (
|
|
<Toast onClose={hideToast}>
|
|
{i18n('GroupV2--join--already-awaiting-approval')}
|
|
</Toast>
|
|
);
|
|
}
|
|
|
|
if (toastType === ToastType.Blocked) {
|
|
return <Toast onClose={hideToast}>{i18n('unblockToSend')}</Toast>;
|
|
}
|
|
|
|
if (toastType === ToastType.BlockedGroup) {
|
|
return <Toast onClose={hideToast}>{i18n('unblockGroupToSend')}</Toast>;
|
|
}
|
|
|
|
if (toastType === ToastType.CannotMixMultiAndNonMultiAttachments) {
|
|
return (
|
|
<Toast onClose={hideToast}>
|
|
{i18n('cannotSelectPhotosAndVideosAlongWithFiles')}
|
|
</Toast>
|
|
);
|
|
}
|
|
|
|
if (toastType === ToastType.CannotOpenGiftBadgeIncoming) {
|
|
return (
|
|
<Toast onClose={hideToast}>
|
|
{i18n('icu:message--donation--unopened--toast--incoming')}
|
|
</Toast>
|
|
);
|
|
}
|
|
|
|
if (toastType === ToastType.CannotOpenGiftBadgeOutgoing) {
|
|
return (
|
|
<Toast onClose={hideToast}>
|
|
{i18n('icu:message--donation--unopened--toast--outgoing')}
|
|
</Toast>
|
|
);
|
|
}
|
|
|
|
if (toastType === ToastType.CannotStartGroupCall) {
|
|
return (
|
|
<Toast onClose={hideToast}>
|
|
{i18n('GroupV2--cannot-start-group-call', toast.parameters)}
|
|
</Toast>
|
|
);
|
|
}
|
|
|
|
if (toastType === ToastType.ConversationArchived) {
|
|
return (
|
|
<Toast
|
|
onClose={hideToast}
|
|
toastAction={{
|
|
label: i18n('conversationArchivedUndo'),
|
|
onClick: () => {
|
|
if (toast.parameters && 'conversationId' in toast.parameters) {
|
|
onUndoArchive(String(toast.parameters.conversationId));
|
|
}
|
|
},
|
|
}}
|
|
>
|
|
{i18n('conversationArchived')}
|
|
</Toast>
|
|
);
|
|
}
|
|
|
|
if (toastType === ToastType.ConversationMarkedUnread) {
|
|
return (
|
|
<Toast onClose={hideToast}>{i18n('conversationMarkedUnread')}</Toast>
|
|
);
|
|
}
|
|
|
|
if (toastType === ToastType.ConversationUnarchived) {
|
|
return (
|
|
<Toast onClose={hideToast}>{i18n('conversationReturnedToInbox')}</Toast>
|
|
);
|
|
}
|
|
|
|
if (toastType === ToastType.CopiedUsername) {
|
|
return (
|
|
<Toast onClose={hideToast} timeout={3 * SECOND}>
|
|
{i18n('ProfileEditor--username--copied-username')}
|
|
</Toast>
|
|
);
|
|
}
|
|
|
|
if (toastType === ToastType.CopiedUsernameLink) {
|
|
return (
|
|
<Toast onClose={hideToast} timeout={3 * SECOND}>
|
|
{i18n('ProfileEditor--username--copied-username-link')}
|
|
</Toast>
|
|
);
|
|
}
|
|
|
|
if (toastType === ToastType.DangerousFileType) {
|
|
return <Toast onClose={hideToast}>{i18n('dangerousFileType')}</Toast>;
|
|
}
|
|
|
|
if (toastType === ToastType.DeleteForEveryoneFailed) {
|
|
return <Toast onClose={hideToast}>{i18n('deleteForEveryoneFailed')}</Toast>;
|
|
}
|
|
|
|
if (toastType === ToastType.Error) {
|
|
return (
|
|
<Toast
|
|
autoDismissDisabled
|
|
onClose={hideToast}
|
|
toastAction={{
|
|
label: i18n('Toast--error--action'),
|
|
onClick: () => window.IPC.showDebugLog(),
|
|
}}
|
|
>
|
|
{i18n('Toast--error')}
|
|
</Toast>
|
|
);
|
|
}
|
|
|
|
if (toastType === ToastType.Expired) {
|
|
return <Toast onClose={hideToast}>{i18n('expiredWarning')}</Toast>;
|
|
}
|
|
|
|
if (toastType === ToastType.FailedToDeleteUsername) {
|
|
return (
|
|
<Toast onClose={hideToast}>
|
|
{i18n('ProfileEditor--username--delete-general-error')}
|
|
</Toast>
|
|
);
|
|
}
|
|
|
|
if (toastType === ToastType.FileSaved) {
|
|
return (
|
|
<Toast
|
|
onClose={hideToast}
|
|
toastAction={{
|
|
label: i18n('attachmentSavedShow'),
|
|
onClick: () => {
|
|
if (toast.parameters && 'fullPath' in toast.parameters) {
|
|
openFileInFolder(String(toast.parameters.fullPath));
|
|
}
|
|
},
|
|
}}
|
|
>
|
|
{i18n('attachmentSaved')}
|
|
</Toast>
|
|
);
|
|
}
|
|
|
|
if (toastType === ToastType.FileSize) {
|
|
return (
|
|
<Toast onClose={hideToast}>
|
|
{i18n('icu:fileSizeWarning', toast?.parameters)}
|
|
</Toast>
|
|
);
|
|
}
|
|
|
|
if (toastType === ToastType.InvalidConversation) {
|
|
return <Toast onClose={hideToast}>{i18n('invalidConversation')}</Toast>;
|
|
}
|
|
|
|
if (toastType === ToastType.LeftGroup) {
|
|
return <Toast onClose={hideToast}>{i18n('youLeftTheGroup')}</Toast>;
|
|
}
|
|
|
|
if (toastType === ToastType.MaxAttachments) {
|
|
return <Toast onClose={hideToast}>{i18n('maximumAttachments')}</Toast>;
|
|
}
|
|
|
|
if (toastType === ToastType.MessageBodyTooLong) {
|
|
return <Toast onClose={hideToast}>{i18n('messageBodyTooLong')}</Toast>;
|
|
}
|
|
|
|
if (toastType === ToastType.OriginalMessageNotFound) {
|
|
return <Toast onClose={hideToast}>{i18n('originalMessageNotFound')}</Toast>;
|
|
}
|
|
|
|
if (toastType === ToastType.PinnedConversationsFull) {
|
|
return <Toast onClose={hideToast}>{i18n('pinnedConversationsFull')}</Toast>;
|
|
}
|
|
|
|
if (toastType === ToastType.ReactionFailed) {
|
|
return <Toast onClose={hideToast}>{i18n('Reactions--error')}</Toast>;
|
|
}
|
|
|
|
if (toastType === ToastType.ReportedSpamAndBlocked) {
|
|
return (
|
|
<Toast onClose={hideToast}>
|
|
{i18n('MessageRequests--block-and-report-spam-success-toast')}
|
|
</Toast>
|
|
);
|
|
}
|
|
|
|
if (toastType === ToastType.StoryMuted) {
|
|
return (
|
|
<Toast onClose={hideToast} timeout={SHORT_TIMEOUT}>
|
|
{i18n('Stories__toast--hasNoSound')}
|
|
</Toast>
|
|
);
|
|
}
|
|
|
|
if (toastType === ToastType.StoryReact) {
|
|
return (
|
|
<Toast onClose={hideToast} timeout={SHORT_TIMEOUT}>
|
|
{i18n('Stories__toast--sending-reaction')}
|
|
</Toast>
|
|
);
|
|
}
|
|
|
|
if (toastType === ToastType.StoryReply) {
|
|
return (
|
|
<Toast onClose={hideToast} timeout={SHORT_TIMEOUT}>
|
|
{i18n('Stories__toast--sending-reply')}
|
|
</Toast>
|
|
);
|
|
}
|
|
|
|
if (toastType === ToastType.StoryVideoError) {
|
|
return (
|
|
<Toast onClose={hideToast}>
|
|
{i18n('StoryCreator__error--video-error')}
|
|
</Toast>
|
|
);
|
|
}
|
|
|
|
if (toastType === ToastType.StoryVideoTooLong) {
|
|
return (
|
|
<Toast onClose={hideToast}>
|
|
{i18n('StoryCreator__error--video-too-long')}
|
|
</Toast>
|
|
);
|
|
}
|
|
|
|
if (toastType === ToastType.StoryVideoUnsupported) {
|
|
return (
|
|
<Toast onClose={hideToast}>
|
|
{i18n('StoryCreator__error--video-unsupported')}
|
|
</Toast>
|
|
);
|
|
}
|
|
|
|
if (toastType === ToastType.TapToViewExpiredIncoming) {
|
|
return (
|
|
<Toast onClose={hideToast}>
|
|
{i18n('Message--tap-to-view--incoming--expired-toast')}
|
|
</Toast>
|
|
);
|
|
}
|
|
|
|
if (toastType === ToastType.TapToViewExpiredOutgoing) {
|
|
return (
|
|
<Toast onClose={hideToast}>
|
|
{i18n('Message--tap-to-view--outgoing--expired-toast')}
|
|
</Toast>
|
|
);
|
|
}
|
|
|
|
if (toastType === ToastType.UnableToLoadAttachment) {
|
|
return <Toast onClose={hideToast}>{i18n('unableToLoadAttachment')}</Toast>;
|
|
}
|
|
|
|
if (toastType === ToastType.UnsupportedMultiAttachment) {
|
|
return (
|
|
<Toast onClose={hideToast}>
|
|
{i18n('cannotSelectMultipleFileAttachments')}
|
|
</Toast>
|
|
);
|
|
}
|
|
|
|
if (toastType === ToastType.UnsupportedOS) {
|
|
return (
|
|
<Toast onClose={hideToast}>
|
|
{i18n('icu:UnsupportedOSErrorToast', { OS })}
|
|
</Toast>
|
|
);
|
|
}
|
|
|
|
if (toastType === ToastType.UserAddedToGroup) {
|
|
return (
|
|
<Toast onClose={hideToast}>
|
|
{i18n(
|
|
'AddUserToAnotherGroupModal__toast--user-added-to-group',
|
|
toast.parameters
|
|
)}
|
|
</Toast>
|
|
);
|
|
}
|
|
|
|
throw missingCaseError(toastType);
|
|
}
|