104 lines
4.0 KiB
TypeScript
104 lines
4.0 KiB
TypeScript
import { Button } from 'src/views/components/common/Button/Button';
|
|
import type { Meta, StoryObj } from '@storybook/react';
|
|
import React from 'react';
|
|
import ImagePlaceholderIcon from '~icons/material-symbols/image';
|
|
|
|
// More on how to set up stories at: https://storybook.js.org/docs/writing-stories#default-export
|
|
const meta = {
|
|
title: 'Components/Common/Button',
|
|
component: Button,
|
|
parameters: {
|
|
// Optional parameter to center the component in the Canvas. More info: https://storybook.js.org/docs/configure/story-layout
|
|
layout: 'centered',
|
|
},
|
|
// This component will have an automatically generated Autodocs entry: https://storybook.js.org/docs/writing-docs/autodocs
|
|
tags: ['autodocs'],
|
|
// More on argTypes: https://storybook.js.org/docs/api/argtypes
|
|
args: {
|
|
children: 'Button',
|
|
},
|
|
argTypes: {
|
|
children: { control: 'text' },
|
|
},
|
|
} satisfies Meta<typeof Button>;
|
|
|
|
export default meta;
|
|
type Story = StoryObj<typeof meta>;
|
|
|
|
// More on writing stories with args: https://storybook.js.org/docs/writing-stories/args
|
|
export const Default: Story = {
|
|
args: {},
|
|
};
|
|
|
|
export const Disabled: Story = {
|
|
args: {
|
|
disabled: true,
|
|
},
|
|
};
|
|
|
|
export const Grid: Story = {
|
|
render: props => (
|
|
<div style={{ display: 'flex', flexDirection: 'column' }}>
|
|
<div style={{ display: 'flex' }}>
|
|
<Button {...props} variant='filled' className='bg-ut-black' />
|
|
<Button {...props} variant='outline' className='text-ut-black' />
|
|
<Button {...props} variant='single' className='text-ut-black' />
|
|
</div>
|
|
<div style={{ display: 'flex' }}>
|
|
<Button {...props} variant='filled' className='bg-ut-black' useScss />
|
|
<Button {...props} variant='outline' className='text-ut-black' useScss />
|
|
<Button {...props} variant='single' className='text-ut-black' useScss />
|
|
</div>
|
|
|
|
<hr />
|
|
<div style={{ display: 'flex' }}>
|
|
<Button {...props} variant='filled' className='bg-ut-black' disabled />
|
|
<Button {...props} variant='outline' className='text-ut-black' disabled />
|
|
<Button {...props} variant='single' className='text-ut-black' disabled />
|
|
</div>
|
|
<div style={{ display: 'flex' }}>
|
|
<Button {...props} variant='filled' className='bg-ut-black' disabled useScss />
|
|
<Button {...props} variant='outline' className='text-ut-black' disabled useScss />
|
|
<Button {...props} variant='single' className='text-ut-black' disabled useScss />
|
|
</div>
|
|
</div>
|
|
),
|
|
};
|
|
|
|
export const Icons: Story = {
|
|
render: props => (
|
|
<div style={{ display: 'flex', flexDirection: 'column' }}>
|
|
<Button {...props} variant='filled' icon={ImagePlaceholderIcon} />
|
|
<Button {...props} variant='outline' icon={ImagePlaceholderIcon} />
|
|
<Button {...props} variant='single' icon={ImagePlaceholderIcon} />
|
|
</div>
|
|
),
|
|
};
|
|
|
|
// TODO: Actually show the buttons as they appear in the design
|
|
export const CourseButtons: Story = {
|
|
args: {
|
|
children: 'Add Course',
|
|
},
|
|
render: props => (
|
|
<div style={{ display: 'flex', flexDirection: 'column' }}>
|
|
<div style={{ display: 'flex' }}>
|
|
<Button {...props} variant='filled' />
|
|
<Button {...props} variant='outline' />
|
|
<Button {...props} variant='single' />
|
|
</div>
|
|
<div style={{ display: 'flex' }}>
|
|
<Button {...props} variant='filled' disabled />
|
|
<Button {...props} variant='outline' disabled />
|
|
<Button {...props} variant='single' disabled />
|
|
</div>
|
|
</div>
|
|
),
|
|
parameters: {
|
|
design: {
|
|
type: 'figma',
|
|
url: 'https://www.figma.com/file/8tsCay2FRqctrdcZ3r9Ahw/UTRP?type=design&node-id=324-389&mode=design&t=BoS5xBrpSsjgQXqv-4',
|
|
},
|
|
},
|
|
};
|