Handle message render errors in timeline

This commit is contained in:
Fedor Indutny 2021-08-02 13:55:47 -07:00 committed by GitHub
parent 1891375c6c
commit 907e1d32ec
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 176 additions and 1 deletions

View file

@ -0,0 +1,26 @@
// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import * as React from 'react';
import { storiesOf } from '@storybook/react';
import { action } from '@storybook/addon-actions';
import { setup as setupI18n } from '../../../js/modules/i18n';
import enMessages from '../../../_locales/en/messages.json';
import { ErrorBoundary } from './ErrorBoundary';
const i18n = setupI18n('en', enMessages);
const story = storiesOf('Components/Conversation/ErrorBoundary', module);
const Fail: React.FC<Record<string, never>> = () => {
throw new Error('Failed');
};
story.add('Error state', () => {
return (
<ErrorBoundary i18n={i18n} showDebugLog={action('showDebugLog')}>
<Fail />
</ErrorBoundary>
);
});