-
Notifications
You must be signed in to change notification settings - Fork 806
Expand file tree
/
Copy pathindex.stories.js
More file actions
417 lines (412 loc) · 15.5 KB
/
Copy pathindex.stories.js
File metadata and controls
417 lines (412 loc) · 15.5 KB
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
import React from 'react'
import Component from '@reactions/component'
import { storiesOf } from '@storybook/react'
import starWarsNames from 'starwars-names'
import Box from 'ui-box'
import { Dialog } from '..'
import { Button } from '../../buttons'
import { Combobox } from '../../combobox'
import { Pane } from '../../layers'
import { Popover } from '../../popover'
import { SideSheet } from '../../side-sheet'
import { TextInputField } from '../../text-input'
import { Strong, Paragraph } from '../../typography'
import DialogManager from './DialogManager'
// Generate a big list of items
const comboboxItems = starWarsNames.all.sort((a, b) => {
const nameA = a.toUpperCase()
const nameB = b.toUpperCase()
if (nameA < nameB) {
return -1
}
if (nameA > nameB) {
return 1
}
return 0
})
storiesOf('dialog', module)
.add('Dialog', () => (
<Box padding={40}>
{(() => {
document.body.style.margin = '0'
document.body.style.height = '100vh'
})()}
<DialogManager>
{({ hide, isShown, show }) => (
<Box marginBottom={16}>
<Dialog isShown={isShown} title="Dialog Title" onCloseComplete={hide} confirmLabel="Custom Label">
Passing a string as the content will wrap the string in a “Paragraph”
</Dialog>
<Button onClick={show}>Show Dialog with Custom Button Label</Button>
</Box>
)}
</DialogManager>
<DialogManager>
{({ hide, isShown, show }) => (
<Box marginBottom={16}>
<Dialog
isShown={isShown}
title="Dialog with Danger Intent"
onCloseComplete={hide}
intent="danger"
confirmLabel="Dangerous Action"
>
Passing a string as the content will wrap the string in a “Paragraph”
</Dialog>
<Button onClick={show}>Show Dialog with Danger Intent</Button>
</Box>
)}
</DialogManager>
<DialogManager>
{({ confirmLoading, hide, isLoading, isShown, show }) => (
<Box marginBottom={16}>
<Dialog
isShown={isShown}
title="Dialog with Loading Confirmation"
onConfirm={confirmLoading}
confirmLabel={isLoading ? 'Loading...' : 'Confirm Loading'}
isConfirmLoading={isLoading}
onCloseComplete={hide}
>
This is useful when you need to process something before closing the dialog.
</Dialog>
<Button onClick={show}>Show Dialog with Loading Confirmation</Button>
</Box>
)}
</DialogManager>
<DialogManager>
{({ hide, isShown, show }) => (
<Box marginBottom={16}>
<Dialog
isShown={isShown}
title="Dialog with Confirmation Button Only"
onCloseComplete={hide}
hasCancel={false}
confirmLabel="Got It"
>
This is useful for product updates and onboarding content.
</Dialog>
<Button onClick={show}>Show Dialog with Primary Button Only</Button>
</Box>
)}
</DialogManager>
<DialogManager>
{({ hide, isShown, show }) => (
<Box marginBottom={16}>
<Dialog isShown={isShown} title="Dialog without Buttons" onCloseComplete={hide} hasFooter={false}>
<Box>
<Paragraph>Manage your own buttons and interactions.</Paragraph>
</Box>
</Dialog>
<Button onClick={show}>Show Dialog without Buttons</Button>
</Box>
)}
</DialogManager>
<DialogManager>
{({ hide, isShown, show }) => (
<Box marginBottom={16}>
<Dialog isShown={isShown} title="Dialog with Self Managed Close" onCloseComplete={hide} hasFooter={false}>
{({ close }) => (
<Box>
<Paragraph>Manage Your Own Buttons and Interactions.</Paragraph>
<Button marginTop={16} onClick={close}>
Self Managed Close
</Button>
</Box>
)}
</Dialog>
<Button onClick={show}>Show Dialog with Self Managed Close</Button>
</Box>
)}
</DialogManager>
<DialogManager>
{({ hide, isShown, show }) => (
<Box marginBottom={16}>
<Dialog isShown={isShown} hasHeader={false} hasFooter={false} onCloseComplete={hide}>
{({ close }) => (
<Box>
<Paragraph>Manage your own header, buttons and interactions.</Paragraph>
<Button marginTop={16} onClick={close}>
Self Managed Close
</Button>
</Box>
)}
</Dialog>
<Button onClick={show}>Show Dialog without Header</Button>
</Box>
)}
</DialogManager>
<DialogManager>
{({ hide, isShown, show }) => (
<Box marginBottom={16}>
<Dialog
isShown={isShown}
hasClose={false}
shouldCloseOnOverlayClick={false}
shouldCloseOnEscapePress={false}
onCloseComplete={hide}
>
{({ close }) => (
<Box>
Modal Dialog
<Button marginTop={16} onClick={close}>
Self Managed Close
</Button>
</Box>
)}
</Dialog>
<Button onClick={show}>Show Modal Dialog without Close</Button>
</Box>
)}
</DialogManager>
<DialogManager>
{({ hide, isShown, show }) => (
<Box marginBottom={16}>
<Dialog isShown={isShown} title="Dialog with Internal Scrolling" onCloseComplete={hide}>
<Box height={1200} width="100%" backgroundColor="#ddd" />
</Dialog>
<Button onClick={show}>Show Dialog with Internal Scrolling</Button>
</Box>
)}
</DialogManager>
<DialogManager>
{({ hide, isShown, show }) => (
<Box marginBottom={16}>
<Dialog
isShown={isShown}
shouldCloseOnOverlayClick={false}
shouldCloseOnEscapePress={false}
title="Dialog with overlay and escape key disabled"
onCloseComplete={hide}
onCancel={close => {
// eslint-disable-next-line no-console
console.log('You canceled')
close()
}}
>
<Paragraph>
Resistance is futile, you shall not <Strong>esc</Strong>.
</Paragraph>
</Dialog>
<Button onClick={show}>Show Dialog with overlay and escape key disabled</Button>
</Box>
)}
</DialogManager>
<DialogManager>
{({ hide, isShown, show }) => (
<Box marginBottom={16}>
<Dialog shouldAutoFocus={false} isShown={isShown} title="Dialog Title" onCloseComplete={hide}>
<TextInputField label="First name" />
</Dialog>
<Button onClick={show}>Show Dialog with autofocus disabled</Button>
</Box>
)}
</DialogManager>
</Box>
))
.add('Dialog with scrolling and custom header and footer', () => (
<Box padding={40}>
<DialogManager>
{({ hide, isShown, show }) => (
<Box marginBottom={16}>
<Dialog
isShown={isShown}
header={<Pane>Header</Pane>}
footer={<Pane>Footer</Pane>}
title="Dialog with scrolling and customer header + footer"
onCloseComplete={hide}
contentContainerProps={{
padding: 0,
overflowY: 'auto'
}}
>
<Pane
display="flex"
background="tint2"
height="1800px"
width="100%"
justifyContent="center"
alignItems="center"
>
Why, hello there!
</Pane>
</Dialog>
<Button onClick={show}>Show Dialog with scrolling and custom header and footer</Button>
</Box>
)}
</DialogManager>
</Box>
))
.add('Dialog with nested Combobox', () => (
<Box padding={40}>
<DialogManager>
{({ hide, isShown, show }) => (
<Box marginBottom={16}>
<Dialog isShown={isShown} title="Dialog with Combobox" onCloseComplete={hide}>
<Combobox openOnFocus items={comboboxItems} />
</Dialog>
<Button onClick={show}>Show Dialog with Combobox</Button>
</Box>
)}
</DialogManager>
</Box>
))
.add('Dialog with customized content container', () => (
<Box padding={40}>
<DialogManager>
{({ hide, isShown, show }) => (
<Box marginBottom={16}>
<Dialog
isShown={isShown}
onCloseComplete={hide}
hasHeader={false}
hasFooter={false}
contentContainerProps={{ padding: 0 }}
>
<Pane height={160} background="yellowTint" borderTopLeftRadius="8px" borderTopRightRadius="8px" />
<Paragraph>
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Vitae odio modi enim voluptas quaerat sapiente
eius, veritatis, minus odit molestiae necessitatibus quae fuga excepturi obcaecati, sunt mollitia aut
similique. Consequuntur?
</Paragraph>
<Paragraph>
Lorem ipsum dolor, sit amet consectetur adipisicing elit. Nesciunt sit accusantium unde dolore dolorum
aliquid nihil maxime! Harum error unde quidem dolore! Aperiam tenetur minus ad officia, dignissimos
rerum facere.
</Paragraph>
</Dialog>
<Button onClick={show}>Dialog with no content paddings</Button>
</Box>
)}
</DialogManager>
<DialogManager>
{({ hide, isShown, show }) => (
<Box marginBottom={16}>
<Dialog
isShown={isShown}
onCloseComplete={hide}
hasHeader={false}
hasFooter={false}
contentContainerProps={{
padding: '4px',
flexDirection: 'row',
flexWrap: 'wrap'
}}
>
<Pane width="25%" height={160} backgroundColor="#F9F9FB" />
<Pane width="25%" height={160} backgroundColor="#E4E7EB" />
<Pane width="25%" height={160} backgroundColor="#425A70" />
<Pane width="25%" height={160} backgroundColor="#234361" />
<Pane width="25%" height={160} backgroundColor="#F7F9FD" />
<Pane width="25%" height={160} backgroundColor="#DDEBF7" />
<Pane width="25%" height={160} backgroundColor="#1070CA" />
<Pane width="25%" height={160} backgroundColor="#084B8A" />
</Dialog>
<Button onClick={show}>Dialog with overridden default flexbox configs</Button>
</Box>
)}
</DialogManager>
</Box>
))
.add('Dialog with endless stacking', () => (
<Box padding={40}>
<DialogManager>
{({ hide, isShown, show }) => (
<Box marginBottom={16}>
<Dialog isShown={isShown} title="Dialog with nested Side Sheet" onCloseComplete={hide}>
<Component
initialState={{
isShown: false
}}
>
{({ setState, state }) => (
<React.Fragment>
<Button onClick={() => setState({ isShown: true })}>Show Inner Side Sheet</Button>
<SideSheet isShown={state.isShown} onCloseComplete={() => setState({ isShown: false })}>
<Component
initialState={{
isShown: false
}}
>
{({ setState: innerSetState, state: innerState }) => {
return (
<React.Fragment>
<Popover
isShown={innerState.isShown}
onCloseComplete={() => innerSetState({ isShown: false })}
content={
<Box
height={240}
display="flex"
alignItems="center"
justifyContent="center"
padding={12}
>
<Combobox openOnFocus items={comboboxItems} />
</Box>
}
>
<Button margin={16} onClick={() => innerSetState({ isShown: true })}>
Show Inner Popover
</Button>
</Popover>
</React.Fragment>
)
}}
</Component>
<Component
initialState={{
isShown: false
}}
>
{({ setState: innerSetState, state: innerState }) => {
return (
<React.Fragment>
<Button margin={16} onClick={() => innerSetState({ isShown: true })}>
Show Inner Dialog
</Button>
<Combobox margin={16} openOnFocus items={comboboxItems} />
<Dialog
isShown={innerState.isShown}
onCloseComplete={() => innerSetState({ isShown: false })}
title="Stackity Hackity"
>
<img src="https://media.giphy.com/media/xT0xeJpnrWC4XWblEk/giphy.gif" />
<Combobox openOnFocus items={comboboxItems} />
</Dialog>
</React.Fragment>
)
}}
</Component>
</SideSheet>
</React.Fragment>
)}
</Component>
</Dialog>
<Button margin={16} onClick={show}>
Show Dialog with Side Sheet
</Button>
</Box>
)}
</DialogManager>
</Box>
))
.add('Dialog with onBeforeClose', () => (
<Box padding={40}>
<DialogManager>
{({ hide, isShown, show }) => (
<Box marginBottom={16}>
<Dialog
isShown={isShown}
title="Dialog with onBeforeClose callback"
onBeforeClose={() => confirm('Are you sure you want to close?')}
onCloseComplete={hide}
>
<Paragraph>onBeforeClose: are you sure you want to close?</Paragraph>
</Dialog>
<Button onClick={show}>Show Dialog with onBeforeClose</Button>
</Box>
)}
</DialogManager>
</Box>
))