owncast/web/stories/OfflineBanner.stories.tsx

34 lines
1.1 KiB
TypeScript
Raw Normal View History

2022-05-20 22:32:26 +03:00
import React from 'react';
import { ComponentStory, ComponentMeta } from '@storybook/react';
import OfflineBanner from '../components/ui/OfflineBanner/OfflineBanner';
import OfflineState from './assets/mocks/offline-state.png';
export default {
title: 'owncast/Layout/Offline Banner',
component: OfflineBanner,
parameters: {
design: {
type: 'image',
url: OfflineState,
scale: 0.5,
},
docs: {
description: {
component: `When the stream is offline the player should be replaced by this banner that can support custom text and notify actions.`,
},
},
},
} as ComponentMeta<typeof OfflineBanner>;
const Template: ComponentStory<typeof OfflineBanner> = args => <OfflineBanner {...args} />;
export const ExampleDefault = Template.bind({});
ExampleDefault.args = {
text: 'To get notifications when <server name> is back online you can follow or ask for notifications.',
};
export const ExampleCustom = Template.bind({});
ExampleCustom.args = {
text: 'This is some example offline text that a streamer can leave for a visitor of the page.',
};