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
This commit is contained in:
Gabe Kangas
2024-02-25 12:52:32 -08:00
committed by GitHub
parent 96c769cf6f
commit 5ce78fbad4
5 changed files with 296 additions and 11 deletions

View File

@@ -0,0 +1,39 @@
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',
},
};