2023-11-07 06:35:05 +03:00
|
|
|
import { Meta } from '@storybook/react';
|
2022-09-07 10:00:28 +03:00
|
|
|
import { VideoPoster } from './VideoPoster';
|
2022-05-11 01:36:09 +03:00
|
|
|
|
2023-11-07 06:35:05 +03:00
|
|
|
const meta = {
|
2022-05-13 03:59:40 +03:00
|
|
|
title: 'owncast/Player/Video poster',
|
2022-05-11 01:36:09 +03:00
|
|
|
component: VideoPoster,
|
2022-05-13 03:59:40 +03:00
|
|
|
parameters: {
|
|
|
|
docs: {
|
|
|
|
description: {
|
|
|
|
component: `
|
|
|
|
- Sits on top of the video player when playback is not taking place.
|
|
|
|
- Shows the instance logo when the video is offline.
|
|
|
|
- Initial image is the logo when online.
|
|
|
|
- When the stream is online, will transition, via cross-fades, through the thumbnail.
|
|
|
|
- Will be removed when playback starts.`,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2023-11-07 06:35:05 +03:00
|
|
|
} satisfies Meta<typeof VideoPoster>;
|
2022-05-11 01:36:09 +03:00
|
|
|
|
2023-11-07 06:35:05 +03:00
|
|
|
export default meta;
|
2022-05-11 01:36:09 +03:00
|
|
|
|
2023-11-07 06:35:05 +03:00
|
|
|
export const Example1 = {
|
|
|
|
args: {
|
|
|
|
initialSrc: 'https://watch.owncast.online/logo',
|
|
|
|
src: 'https://watch.owncast.online/thumbnail.jpg',
|
|
|
|
online: true,
|
|
|
|
},
|
2022-05-11 01:36:09 +03:00
|
|
|
};
|
|
|
|
|
2023-11-07 06:35:05 +03:00
|
|
|
export const Example2 = {
|
|
|
|
args: {
|
|
|
|
initialSrc: 'https://listen.batstationrad.io/logo',
|
|
|
|
src: 'https://listen.batstationrad.io//thumbnail.jpg',
|
|
|
|
online: true,
|
|
|
|
},
|
2022-05-11 01:36:09 +03:00
|
|
|
};
|
|
|
|
|
2023-11-07 06:35:05 +03:00
|
|
|
export const Offline = {
|
|
|
|
args: {
|
|
|
|
initialSrc: 'https://watch.owncast.online/logo',
|
|
|
|
src: 'https://watch.owncast.online/thumbnail.jpg',
|
|
|
|
online: false,
|
|
|
|
},
|
2022-05-11 01:36:09 +03:00
|
|
|
};
|