Files
owncast/web/components/ui/ComponentError/ComponentError.stories.tsx
T
Gabe KangasandGitHub cc9286416c Update storybook to v9 (#4645)
* chore: Update storybook to v9

* Pin next-export-i18n + remove outdated mock library

* Replace old mocking library with MSW

* Resolve knip unused code warnings
2025-10-20 21:26:32 -07:00

46 lines
1.2 KiB
TypeScript

import { Meta } from '@storybook/nextjs';
import { ComponentError } from './ComponentError';
const meta = {
title: 'owncast/Components/Component Error',
component: ComponentError,
parameters: {
docs: {
description: {
component: `This component is used to display a user-facing fatal error within a component's error boundary. It enables a link to file a bug report. It should have enough detail to help the developers fix the issue, but not be so unapproachable it makes the user scared away.`,
},
},
},
} satisfies Meta<typeof ComponentError>;
export default meta;
export const DefaultMessage = {
args: {
componentName: 'Test Component',
},
};
export const Error1 = {
args: { message: 'This is a test error message.', componentName: 'Test Component' },
};
export const WithDetails = {
args: {
message: 'This is a test error message.',
componentName: 'Test Component',
details: 'Here are some additional details about the error.',
},
};
export const CanRetry = {
args: {
message: 'This is a test error message.',
componentName: 'Test Component',
details: 'Here are some additional details about the error.',
retryFunction: () => {
console.log('retrying');
},
},
};