2021-09-22 20:59:54 +00:00
|
|
|
// Copyright 2021 Signal Messenger, LLC
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
import React from 'react';
|
2021-10-26 19:15:33 +00:00
|
|
|
import type { LocalizerType } from '../types/Util';
|
2021-09-22 20:59:54 +00:00
|
|
|
import { Toast } from './Toast';
|
|
|
|
|
|
|
|
export type ToastPropsType = {
|
2021-12-07 00:21:30 +00:00
|
|
|
deviceId: number;
|
|
|
|
name: string;
|
2021-09-22 20:59:54 +00:00
|
|
|
onShowDebugLog: () => unknown;
|
|
|
|
};
|
|
|
|
|
|
|
|
type PropsType = {
|
|
|
|
i18n: LocalizerType;
|
|
|
|
onClose: () => unknown;
|
|
|
|
} & ToastPropsType;
|
|
|
|
|
|
|
|
export const ToastDecryptionError = ({
|
2021-12-07 00:21:30 +00:00
|
|
|
deviceId,
|
2021-09-22 20:59:54 +00:00
|
|
|
i18n,
|
2021-12-07 00:21:30 +00:00
|
|
|
name,
|
2021-09-22 20:59:54 +00:00
|
|
|
onClose,
|
|
|
|
onShowDebugLog,
|
|
|
|
}: PropsType): JSX.Element => {
|
|
|
|
return (
|
|
|
|
<Toast
|
|
|
|
autoDismissDisabled
|
|
|
|
className="decryption-error"
|
|
|
|
onClose={onClose}
|
2021-12-07 00:21:30 +00:00
|
|
|
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
|
|
|
>
|
2021-12-07 00:21:30 +00:00
|
|
|
{i18n('decryptionErrorToast', {
|
|
|
|
name,
|
|
|
|
deviceId,
|
|
|
|
})}
|
2021-09-22 20:59:54 +00:00
|
|
|
</Toast>
|
|
|
|
);
|
|
|
|
};
|