0
owncast/web/components/ui/OfflineEmbed/OfflineEmbed.stories.tsx
Gabe Kangas 5ce78fbad4
New offline embed (#3599)
* WIP

* feat(web): add new offline embed view. First step of #2917

* feat(web): support remote fediverse follow flow from embed

* feat(chore): add back offline video embed browser test
2024-02-25 12:52:32 -08:00

40 lines
1012 B
TypeScript

import { StoryFn, Meta } from '@storybook/react';
import { RecoilRoot } from 'recoil';
import { OfflineEmbed } from './OfflineEmbed';
import OfflineState from '../../../stories/assets/mocks/offline-state.png';
const meta = {
title: 'owncast/Layout/Offline Embed',
component: OfflineEmbed,
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.`,
},
},
},
} satisfies Meta<typeof OfflineEmbed>;
export default meta;
const Template: StoryFn<typeof OfflineEmbed> = args => (
<RecoilRoot>
<OfflineEmbed {...args} />
</RecoilRoot>
);
export const ExampleDefaultWithNotifications = {
render: Template,
args: {
streamName: 'Cool stream 42',
subtitle: 'This stream rocks. You should watch it.',
image: 'https://placehold.co/600x400/orange/white',
},
};