2022-05-20 22:32:26 +03:00
|
|
|
import React from 'react';
|
|
|
|
import { ComponentStory, ComponentMeta } from '@storybook/react';
|
2022-09-07 10:00:28 +03:00
|
|
|
import { OfflineBanner } from './OfflineBanner';
|
2022-09-03 21:38:52 +03:00
|
|
|
import OfflineState from '../../../stories/assets/mocks/offline-state.png';
|
2022-05-20 22:32:26 +03:00
|
|
|
|
|
|
|
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 = {
|
2022-05-26 08:52:27 +03:00
|
|
|
name: 'Cool stream 42',
|
2022-05-20 22:32:26 +03:00
|
|
|
text: 'To get notifications when <server name> is back online you can follow or ask for notifications.',
|
|
|
|
};
|
|
|
|
|
|
|
|
export const ExampleCustom = Template.bind({});
|
|
|
|
ExampleCustom.args = {
|
2022-05-26 08:52:27 +03:00
|
|
|
name: 'Dull stream 31337',
|
2022-05-20 22:32:26 +03:00
|
|
|
text: 'This is some example offline text that a streamer can leave for a visitor of the page.',
|
|
|
|
};
|