mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 04:40:37 +03:00
37 lines
960 B
TypeScript
37 lines
960 B
TypeScript
import React from 'react';
|
|
import { ComponentStory, ComponentMeta } from '@storybook/react';
|
|
import { RecoilRoot } from 'recoil';
|
|
import OwncastPlayer from '../components/video/OwncastPlayer';
|
|
|
|
const streams = {
|
|
DemoServer: `https://watch.owncast.online/hls/stream.m3u8`,
|
|
RetroStrangeTV: `https://live.retrostrange.com/hls/stream.m3u8`,
|
|
localhost: `http://localhost:8080/hls/stream.m3u8`,
|
|
};
|
|
|
|
export default {
|
|
title: 'owncast/Player/Player',
|
|
component: OwncastPlayer,
|
|
argTypes: {
|
|
source: {
|
|
options: Object.keys(streams),
|
|
mapping: streams,
|
|
control: {
|
|
type: 'select',
|
|
},
|
|
},
|
|
},
|
|
parameters: {},
|
|
} as ComponentMeta<typeof OwncastPlayer>;
|
|
|
|
const Template: ComponentStory<typeof OwncastPlayer> = args => (
|
|
<RecoilRoot>
|
|
<OwncastPlayer {...args} />
|
|
</RecoilRoot>
|
|
);
|
|
|
|
export const LiveDemo = Template.bind({});
|
|
LiveDemo.args = {
|
|
online: true,
|
|
source: 'https://watch.owncast.online/hls/stream.m3u8',
|
|
};
|