You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.3 KiB
57 lines
1.3 KiB
2 years ago
|
import { ComponentMeta } from '@storybook/react';
|
||
|
import { Button, Dialog } from '@tih/ui';
|
||
|
import React, { useState } from 'react';
|
||
|
|
||
|
export default {
|
||
|
title: 'Dialog',
|
||
|
component: Dialog,
|
||
|
argTypes: {
|
||
|
title: {
|
||
|
control: 'text',
|
||
|
},
|
||
|
},
|
||
|
} as ComponentMeta<typeof Dialog>;
|
||
|
|
||
|
export function Basic({ children, title }) {
|
||
|
const [isShown, setIsShown] = useState(false);
|
||
|
|
||
|
return (
|
||
|
<div>
|
||
|
<Button label="Open" variant="primary" onClick={() => setIsShown(true)} />
|
||
|
<Dialog
|
||
|
isShown={isShown}
|
||
|
primaryButton={
|
||
|
<Button
|
||
|
display="block"
|
||
|
label="OK"
|
||
|
variant="primary"
|
||
|
onClick={() => setIsShown(false)}
|
||
|
/>
|
||
|
}
|
||
|
secondaryButton={
|
||
|
<Button
|
||
|
display="block"
|
||
|
label="Cancel"
|
||
|
variant="tertiary"
|
||
|
onClick={() => setIsShown(false)}
|
||
|
/>
|
||
|
}
|
||
|
title={title}
|
||
|
onClose={() => setIsShown(false)}>
|
||
|
{children}
|
||
|
</Dialog>
|
||
|
</div>
|
||
|
);
|
||
|
}
|
||
|
|
||
|
Basic.args = {
|
||
|
title: 'Lorem ipsum, dolor sit amet',
|
||
|
children: (
|
||
|
<div>
|
||
|
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Eius aliquam
|
||
|
laudantium explicabo pariatur iste dolorem animi vitae error totam. At
|
||
|
sapiente aliquam accusamus facere veritatis.
|
||
|
</div>
|
||
|
),
|
||
|
};
|