-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
62 lines (60 loc) · 2.22 KB
/
index.js
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
import React from 'react'
import { storiesOf } from '@storybook/react'
import { action } from '@storybook/addon-actions'
import Typography from '@material-ui/core/Typography'
import UploadIcon from '@material-ui/icons/CloudUpload'
import ImageIcon from '@material-ui/icons/Image'
import { InvisibleDropArea, FileSelectArea } from '../src'
storiesOf('InvisibleDropArea', module)
.add('default', () => (
<InvisibleDropArea
style={{ width: '100%', height: 'calc(100vh - 20px)' }}
activeIcon={<UploadIcon />}
activeText='Drop files to upload'
onSelectFiles={action('onSelectFiles')}
>
<Typography>Try dragging some files to this area.</Typography>
</InvisibleDropArea>
))
.add('multiple images', () => (
<InvisibleDropArea
style={{ width: '100%', height: 'calc(100vh - 20px)' }}
accept='image/*'
multiple
activeIcon={<ImageIcon />}
activeText='Drop image to upload'
onSelectFiles={action('onSelectFiles')}
>
<Typography>Try dragging some images to this area.</Typography>
</InvisibleDropArea>
))
.add('disabled', () => (
<InvisibleDropArea
style={{ width: '100%', height: 'calc(100vh - 20px)' }}
onSelectFiles={action('onSelectFiles')}
disabled
>
<Typography>Try dragging a file to this area.</Typography>
</InvisibleDropArea>
))
storiesOf('FileSelectArea', module)
.add('with icon and text', () => (
<FileSelectArea
style={{ width: 300, height: 300, display: 'flex', flexDirection: 'column', justifyContent: 'center', alignItems: 'center' }}
onSelectFiles={action('onSelectFiles')}
multiple
>
<UploadIcon style={{ opacity: 0.3, width: 96, height: 96 }} />
<Typography align='center'>Click or drag file to this area to upload</Typography>
</FileSelectArea>
))
.add('disabled', () => (
<FileSelectArea
style={{ width: 300, height: 300, display: 'flex', flexDirection: 'column', justifyContent: 'center', alignItems: 'center' }}
onSelectFiles={action('onSelectFiles')}
disabled
>
<UploadIcon style={{ opacity: 0.3, width: 96, height: 96 }} />
<Typography align='center'>Click or drag file to this area to upload</Typography>
</FileSelectArea>
))