forked from chanzuckerberg/sci-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.stories.tsx
87 lines (79 loc) · 1.79 KB
/
index.stories.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
import { CheckCircleOutline } from "@mui/icons-material";
import { Snackbar } from "@mui/material";
import { styled } from "@mui/material/styles";
import { Args, Meta } from "@storybook/react";
import React from "react";
import Button from "../Button";
import Alert from "./index";
const DismissButton = styled(Button)(
({ theme }) => `
margin-left: -${theme.spacing(3)}px;
padding-bottom: 0;
font-size: 12px;
line-height: 18px;
letter-spacing: 1px;
font-weight: 600;
&:hover {
background: none;
}`
);
const Demo = (props: Args): JSX.Element => {
const { text } = props;
return (
<Alert icon={<CheckCircleOutline />} onClose={() => {}} {...props}>
{text}
</Alert>
);
};
export default {
argTypes: {
text: {
control: { type: "text" },
required: true,
},
},
component: Demo,
title: "Alert - To Be Depreciated",
} as Meta;
export const Default = {
args: {
text: "This is an alert!",
},
parameters: {
snapshot: {
skip: true,
},
},
};
export const SnackbarAlert = () => {
const [open, setOpen] = React.useState(false);
const handleOpen = () => setOpen(true);
const handleClose = () => setOpen(false);
return (
<div>
<Button sdsType="primary" sdsStyle="square" onClick={handleOpen}>
Open alert
</Button>
<Snackbar
anchorOrigin={{
horizontal: "right",
vertical: "top",
}}
open={open}
autoHideDuration={6000}
>
<div>
<Alert className="elevated" severity="info">
<div>This is a snackbar alert!</div>
<DismissButton onClick={handleClose}>DISMISS</DismissButton>
</Alert>
</div>
</Snackbar>
</div>
);
};
export const Test = {
args: {
text: "Test Alert!",
},
};