2022-04-28 09:19:20 +03:00
|
|
|
import React from 'react';
|
|
|
|
import { ComponentStory, ComponentMeta } from '@storybook/react';
|
2022-06-25 01:55:53 +03:00
|
|
|
import FollowModal from '../components/modals/Follow/FollowModal';
|
2022-05-13 06:52:19 +03:00
|
|
|
import FollowModalMock from './assets/mocks/follow-modal.png';
|
2022-04-28 09:19:20 +03:00
|
|
|
|
|
|
|
const Example = () => (
|
|
|
|
<div>
|
2022-06-25 01:55:53 +03:00
|
|
|
<FollowModal handleClose={null} />
|
2022-04-28 09:19:20 +03:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
|
|
|
|
export default {
|
|
|
|
title: 'owncast/Modals/Follow',
|
|
|
|
component: FollowModal,
|
2022-05-13 06:52:19 +03:00
|
|
|
parameters: {
|
|
|
|
design: {
|
|
|
|
type: 'image',
|
|
|
|
url: FollowModalMock,
|
|
|
|
scale: 0.5,
|
|
|
|
},
|
|
|
|
docs: {
|
|
|
|
description: {
|
|
|
|
component: `The Follow modal allows an end user to type in their Fediverse account information to follow this Owncast instance. It must:
|
|
|
|
|
|
|
|
- Validate the input to make sure it's a valid looking account.
|
|
|
|
- Handle errors that come back from the server.
|
|
|
|
- Perform the redirect to the remote server when the backend response is received.
|
|
|
|
`,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2022-04-28 09:19:20 +03:00
|
|
|
} as ComponentMeta<typeof FollowModal>;
|
|
|
|
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
|
|
const Template: ComponentStory<typeof FollowModal> = args => <Example />;
|
|
|
|
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
|
|
export const Basic = Template.bind({});
|