Multi files selection and upload from Browser (#5711)

This commit is contained in:
Vladimir Cores
2018-04-04 01:44:37 +02:00
committed by Dee Koder
parent 1e50951a4a
commit 1a71004c91
2 changed files with 20 additions and 6 deletions

View File

@@ -33,7 +33,11 @@ export const MainActions = ({
)
const onFileUpload = e => {
e.preventDefault()
uploadFile(e.target.files[0])
let files = e.target.files
let filesToUploadCount = files.length
for (let i = 0; i < filesToUploadCount; i++) {
uploadFile(files.item(i))
}
e.target.value = null
}
@@ -55,6 +59,7 @@ export const MainActions = ({
onChange={onFileUpload}
style={{ display: "none" }}
id="file-input"
multiple={true}
/>
<label htmlFor="file-input">
{" "}