developed with @mui v5
React mui fileuploader is a React component based on @mui v5 that allows you to upload files with an awesome ui component.
npm install react-mui-fileuploader
const handleFileUploadError = (error) => {
// Do something...
}
const handleFilesChange = (files) => {
// Do something...
setUploadedFiles([...files]);
}
return (
<FileUpload
getBase64={false}
multiFile={true}
disabled={false}
title="My awesome file uploader"
header="[Drag to drop]"
leftLabel="or"
rightLabel="to select files"
buttonLabel="click here"
buttonRemoveLabel="Remove all"
maxFileSize={10}
maxUploadFiles={0}
maxFilesContainerHeight={357}
acceptedType={'image/*'}
errorSizeMessage={'fill it or remove it to use the default error message'}
allowedExtensions={['jpg', 'jpeg']}
onFilesChange={handleFilesChange}
onError={handleFileUploadError}
imageSrc={'path/to/custom/image'}
BannerProps={{ elevation: 0, variant: "outlined" }}
showPlaceholderImage={true}
PlaceholderGridProps={{ md: 4 }}
LabelsGridProps={{ md: 8 }}
onContextReady={context => {
// access to component context here
}}
ContainerProps={{
elevation: 0,
variant: "outlined",
sx: { p: 1 }
}}
PlaceholderImageDimension={{
xs: { width: 128, height: 128 },
sm: { width: 128, height: 128 },
md: { width: 164, height: 164 },
lg: { width: 256, height: 256 }
}}
/>
)
import React, { useState } from "react"
import { createRoot } from "react-dom/client"
import FileUpload from "react-mui-fileuploader"
function MuiFileUploader() {
const [filesToUpload, setFilesToUpload] = useState([])
const handleFilesChange = (files) => {
// Update chosen files
setFilesToUpload([ ...files ])
};
const uploadFiles = () => {
// Create a form and post it to server
let formData = new FormData()
filesToUpload.forEach((file) => formData.append("files", file))
fetch("/file/upload", {
method: "POST",
body: formData
})
}
return (
<>
<FileUpload
multiFile={true}
onFilesChange={handleFilesChange}
onContextReady={(context) => {}}
/>
<button onClick={uploadFiles}>Upload</button>
</>
)
}
const root = createRoot(document.getElementById("root"))
root.render(<MuiFileUploader />)
Name | Type | Required | Details |
---|---|---|---|
getBase64 | boolean |
false |
Get the original input files. Default value false |
multiFile | boolean |
false |
Multifile support. Default value true |
title | string |
false |
Component title |
header | string |
false |
Banner component big title |
showPlaceholderImage | boolean |
false |
Show or hide placeholder image |
imageSrc | string |
false |
Banner image placeholder source path |
imageSrcAlt | string |
false |
Banner image placeholder label |
leftLabel | string |
false |
Banner left label |
rightLabel | string |
false |
Banner right label |
buttonLabel | string |
false |
Banner button label |
buttonRemoveLabel | string |
false |
Remove button label |
disabled | boolean |
false |
This property enables or disables the component. Default value false |
maxFileSize | number |
false |
Maximum size (in mb) for files to add. Default value 0 . Value 0 means unlimited size |
maxUploadFiles | number |
false |
Maximum files to add. Default to 0 . Value 0 means unlimited size |
errorSizeMessage | string |
false |
Error returned when a file exceeds maxFileSize limit |
acceptedType | string |
false |
Accepted file type. Default value image/* |
allowedExtensions | array |
false |
Array of allowed extensions. For example, you can specify ['jpg', 'jpeg', 'png'] as allowedExtensions |
filesContainerHeight | number |
false |
Container Height |
maxFilesContainerHeight | number |
false |
Container max height. Default value 300 |
onError | function |
false |
Returned error message when error occurs |
onFilesChange | function |
false |
Event handler returned when files changes |
onContextReady | function |
false |
Returns the component context api |
BannerProps | object |
false |
Banner props. Only MUI props are accepted |
ContainerProps | object |
false |
Container props. Only MUI props are accepted |
PlaceholderImageDimension | object |
false |
Dimensions (width and height) of the placeholder image. You can specify them in the properties xs: {width: 64, height: 64} , sm: {width: 64, height: 64} , md: {width: 64, height: 64} , lg: {width: 64, height: 64} , etc. |
PlaceholderGridProps | object |
false |
Customize the placeholder Grid xs , sm , md , lg , xl sizes |
LabelsGridProps | object |
false |
Customize the labels Grid xs , sm , md , lg , xl sizes |
- Muller Roufaou (rouftom)
-
Where can I find more documentation?
This library is a marriage of @mui and a React setup created with React. Either one would be a great place to start!
Do you like this library ? Buy me a coffee or support me with a star on Github
-
Btc address:
bc1qettgagenn9nc8ks7ghntjfme96yvvkfhntk774
-
Eth address:
0xB0413d8D0336E263e289A915c383e152155881E0
MIT License
Copyright (c) 2023 rouftom
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.