mirror of
https://github.com/owncast/owncast.git
synced 2024-11-24 21:59:43 +03:00
4f078e1ee4
* Migrate web action-buttons directory to CSF3 notation * Migrate web chat directory to CSF3 notation * Migrate web common directory to CSF3 notation * Migrate web layout directory to CSF3 notation * Migrate web modals directory to CSF3 notation * Migrate web ui directory to CSF3 notation * Migrate web video directory to CSF3 notation * Migrate web stories directory to CSF3 notation
43 lines
943 B
TypeScript
43 lines
943 B
TypeScript
import { Meta } from '@storybook/react';
|
|
import { ChatJoinMessage } from './ChatJoinMessage';
|
|
import Mock from '../../../stories/assets/mocks/chatmessage-action.png';
|
|
|
|
const meta = {
|
|
title: 'owncast/Chat/Messages/Chat Join',
|
|
component: ChatJoinMessage,
|
|
argTypes: {
|
|
userColor: {
|
|
options: ['0', '1', '2', '3', '4', '5', '6', '7'],
|
|
control: { type: 'select' },
|
|
},
|
|
},
|
|
parameters: {
|
|
design: {
|
|
type: 'image',
|
|
url: Mock,
|
|
},
|
|
docs: {
|
|
description: {
|
|
component: `This is the message design an action takes place, such as a join or a name change.`,
|
|
},
|
|
},
|
|
},
|
|
} satisfies Meta<typeof ChatJoinMessage>;
|
|
|
|
export default meta;
|
|
|
|
export const Regular = {
|
|
args: {
|
|
displayName: 'RandomChatter',
|
|
isAuthorModerator: false,
|
|
userColor: 3,
|
|
},
|
|
};
|
|
|
|
export const Moderator = {
|
|
args: {
|
|
displayName: 'RandomChatter',
|
|
isAuthorModerator: true,
|
|
userColor: 2,
|
|
},
|
|
};
|