forked from yash-deore/react-ipfs-uploader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExampleTabs.js
243 lines (212 loc) · 9.85 KB
/
ExampleTabs.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
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
import React, { useState } from 'react'
import { Container, Tabs, Tab } from 'react-bootstrap'
import {
FileUpload,
MultipleFilesUpload,
FolderUpload,
ImageUpload,
PdfUpload,
TextUpload
} from 'react-ipfs-uploader'
export const ExampleTabs = () => {
const [fileUrl, setFileUrl] = useState('')
const [multipleFilesUrl, setMultipleFilesUrl] = useState('')
const [folderUrl, setFolderUrl] = useState('')
const [imageUrl, setImageUrl] = useState('')
const [pdfUrl, setPdfUrl] = useState('')
const [textUrl, setTextUrl] = useState('')
return (
<Container>
<Tabs defaultActiveKey='FileUpload' className='mb-3'>
<Tab eventKey='FileUpload' title='FileUpload'>
<h5>
FileUpload : Displays the Name and Size of the selected
File and returns the URL after uploading .
</h5>
<FileUpload setUrl={setFileUrl} />
<h5>
FileUrl :{' '}
<a
href={fileUrl}
target='_blank'
rel='noopener noreferrer'
>
{fileUrl}
</a>
</h5>
<hr />
{/* <iframe
src='https://codesandbox.io/embed/fileupload-81g84?fontsize=14&hidenavigation=1&theme=dark'
style={{
width: '100%',
height: '500px',
border: '0',
borderRadius: '4px',
overflow: 'hidden'
}}
title='FileUpload'
allow='accelerometer; ambient-light-sensor; camera; encrypted-media; geolocation; gyroscope; hid; microphone; midi; payment; usb; vr; xr-spatial-tracking'
sandbox='allow-forms allow-modals allow-popups allow-presentation allow-same-origin allow-scripts'
></iframe> */}
</Tab>
<Tab eventKey='MultipleFilesUpload' title='MultipleFilesUpload'>
<h5>
MultipleFilesUpload : Displays a list with Name and Size
of every selected File and returns the URL after
uploading .
</h5>
<MultipleFilesUpload setUrl={setMultipleFilesUrl} />
<h5>
MultipleFilesUpload :{' '}
<a
href={multipleFilesUrl}
target='_blank'
rel='noopener noreferrer'
>
{multipleFilesUrl}
</a>
</h5>
<hr />
{/* <iframe
src='https://codesandbox.io/embed/multiplefilesupload-uf6yw?fontsize=14&hidenavigation=1&theme=dark'
style={{
width: '100%',
height: '500px',
border: '0',
borderRadius: '4px',
overflow: 'hidden'
}}
title='MultipleFilesUpload'
allow='accelerometer; ambient-light-sensor; camera; encrypted-media; geolocation; gyroscope; hid; microphone; midi; payment; usb; vr; xr-spatial-tracking'
sandbox='allow-forms allow-modals allow-popups allow-presentation allow-same-origin allow-scripts'
></iframe> */}
</Tab>
<Tab eventKey='FolderUpload' title='FolderUpload'>
<h5>
FolderUpload : Displays a list with Name and Size of
every File in the selected Folder and returns the URL
after uploading .
</h5>
<FolderUpload setUrl={setFolderUrl} />
<h5>
FolderUrl :{' '}
<a
href={folderUrl}
target='_blank'
rel='noopener noreferrer'
>
{folderUrl}
</a>
</h5>
<hr />
{/* <iframe
src='https://codesandbox.io/embed/folderupload-y6j2b?fontsize=14&hidenavigation=1&theme=dark'
style={{
width: '100%',
height: '500px',
border: '0',
borderRadius: '4px',
overflow: 'hidden'
}}
title='FolderUpload'
allow='accelerometer; ambient-light-sensor; camera; encrypted-media; geolocation; gyroscope; hid; microphone; midi; payment; usb; vr; xr-spatial-tracking'
sandbox='allow-forms allow-modals allow-popups allow-presentation allow-same-origin allow-scripts'
></iframe> */}
</Tab>
<Tab eventKey='ImageUpload' title='ImageUpload'>
<h5>
ImageUpload : Shows the user a preview of the selected
Image and returns the URL after uploading .
</h5>
<ImageUpload setUrl={setImageUrl} />
<h5>
ImageUrl :{' '}
<a
href={imageUrl}
target='_blank'
rel='noopener noreferrer'
>
{imageUrl}
</a>
</h5>
<hr />
{/* <iframe
src='https://codesandbox.io/embed/imageupload-65kpl?fontsize=14&hidenavigation=1&theme=dark'
style={{
width: '100%',
height: '500px',
border: '0',
borderRadius: '4px',
overflow: 'hidden'
}}
title='ImageUpload'
allow='accelerometer; ambient-light-sensor; camera; encrypted-media; geolocation; gyroscope; hid; microphone; midi; payment; usb; vr; xr-spatial-tracking'
sandbox='allow-forms allow-modals allow-popups allow-presentation allow-same-origin allow-scripts'
></iframe> */}
</Tab>
<Tab eventKey='PdfUpload' title='PdfUpload'>
<h5>
PdfUpload : Shows the user a preview of the selected PDF
and returns the URL after uploading .
</h5>
<PdfUpload setUrl={setPdfUrl} />
<h5>
PdfUrl :{' '}
<a
href={pdfUrl}
target='_blank'
rel='noopener noreferrer'
>
{pdfUrl}
</a>
</h5>
<hr />
{/* <iframe
src='https://codesandbox.io/embed/pdfupload-ce4ch?fontsize=14&hidenavigation=1&theme=dark'
style={{
width: '100%',
height: '500px',
border: '0',
borderRadius: '4px',
overflow: 'hidden'
}}
title='PdfUpload'
allow='accelerometer; ambient-light-sensor; camera; encrypted-media; geolocation; gyroscope; hid; microphone; midi; payment; usb; vr; xr-spatial-tracking'
sandbox='allow-forms allow-modals allow-popups allow-presentation allow-same-origin allow-scripts'
></iframe> */}
</Tab>
<Tab eventKey='TextUpload' title='TextUpload'>
<h5>
TextUpload : Returns the URL of the Text after uploading
.
</h5>
<TextUpload setUrl={setTextUrl} />
<h5>
TextUrl :{' '}
<a
href={textUrl}
target='_blank'
rel='noopener noreferrer'
>
{textUrl}
</a>
</h5>
<hr />
{/* <iframe
src='https://codesandbox.io/embed/textupload-vpcst?fontsize=14&hidenavigation=1&theme=dark'
style={{
width: '100%',
height: '500px',
border: '0',
borderRadius: '4px',
overflow: 'hidden'
}}
title='TextUpload'
allow='accelerometer; ambient-light-sensor; camera; encrypted-media; geolocation; gyroscope; hid; microphone; midi; payment; usb; vr; xr-spatial-tracking'
sandbox='allow-forms allow-modals allow-popups allow-presentation allow-same-origin allow-scripts'
></iframe> */}
</Tab>
</Tabs>
</Container>
)
}