mirror of
https://github.com/owncast/owncast.git
synced 2024-11-26 14:56:14 +03:00
74 lines
2.3 KiB
TypeScript
74 lines
2.3 KiB
TypeScript
import React from 'react';
|
|
import { ComponentStory, ComponentMeta } from '@storybook/react';
|
|
import { RecoilRoot } from 'recoil';
|
|
import { OfflineBanner } from './OfflineBanner';
|
|
import OfflineState from '../../../stories/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 => (
|
|
<RecoilRoot>
|
|
<OfflineBanner {...args} />
|
|
</RecoilRoot>
|
|
);
|
|
|
|
export const ExampleDefaultWithNotifications = Template.bind({});
|
|
ExampleDefaultWithNotifications.args = {
|
|
streamName: 'Cool stream 42',
|
|
notificationsEnabled: true,
|
|
lastLive: new Date(),
|
|
};
|
|
|
|
export const ExampleDefaultWithDateAndFediverse = Template.bind({});
|
|
ExampleDefaultWithDateAndFediverse.args = {
|
|
streamName: 'Dull stream 31337',
|
|
lastLive: new Date(),
|
|
notificationsEnabled: false,
|
|
fediverseAccount: 'streamer@coolstream.biz',
|
|
};
|
|
|
|
export const ExampleCustomWithDateAndNotifications = Template.bind({});
|
|
ExampleCustomWithDateAndNotifications.args = {
|
|
streamName: 'Dull stream 31337',
|
|
customText:
|
|
'This is some example offline text that a streamer can leave for a visitor of the page.',
|
|
lastLive: new Date(),
|
|
notificationsEnabled: true,
|
|
};
|
|
|
|
export const ExampleDefaultWithNotificationsAndFediverse = Template.bind({});
|
|
ExampleDefaultWithNotificationsAndFediverse.args = {
|
|
streamName: 'Cool stream 42',
|
|
notificationsEnabled: true,
|
|
fediverseAccount: 'streamer@coolstream.biz',
|
|
lastLive: new Date(),
|
|
};
|
|
|
|
export const ExampleDefaultWithoutNotifications = Template.bind({});
|
|
ExampleDefaultWithoutNotifications.args = {
|
|
streamName: 'Cool stream 42',
|
|
notificationsEnabled: false,
|
|
lastLive: new Date(),
|
|
};
|
|
|
|
export const ExampleCustomTextWithoutNotifications = Template.bind({});
|
|
ExampleCustomTextWithoutNotifications.args = {
|
|
streamName: 'Dull stream 31337',
|
|
customText:
|
|
'This is some example offline text that a streamer can leave for a visitor of the page.',
|
|
};
|