signal-desktop/ts/components/ToastDecryptionError.tsx

44 lines
881 B
TypeScript
Raw Normal View History

2021-09-22 20:59:54 +00:00
// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import React from 'react';
import type { LocalizerType } from '../types/Util';
2021-09-22 20:59:54 +00:00
import { Toast } from './Toast';
export type ToastPropsType = {
deviceId: number;
name: string;
2021-09-22 20:59:54 +00:00
onShowDebugLog: () => unknown;
};
type PropsType = {
i18n: LocalizerType;
onClose: () => unknown;
} & ToastPropsType;
export const ToastDecryptionError = ({
deviceId,
2021-09-22 20:59:54 +00:00
i18n,
name,
2021-09-22 20:59:54 +00:00
onClose,
onShowDebugLog,
}: PropsType): JSX.Element => {
return (
<Toast
autoDismissDisabled
className="decryption-error"
onClose={onClose}
style={{ maxWidth: '500px' }}
2021-10-06 21:00:51 +00:00
toastAction={{
label: i18n('decryptionErrorToastAction'),
onClick: onShowDebugLog,
}}
2021-09-22 20:59:54 +00:00
>
{i18n('decryptionErrorToast', {
name,
deviceId,
})}
2021-09-22 20:59:54 +00:00
</Toast>
);
};