FileDropzone
This component is the most important in the whole library.
This is what captures files being dragged over it. Both MultiFileUpload and SingleFileUpload are built off this component.
The hope is that others will take this component and make their own components.
Required Props
onFilesAccepted (files: File[]) => void
A function that is called when valid files are dragged and then dropped onto the component.
"Valid files" are determined by
acceptsOnly
prop. If noacceptsOnly
is provided all files are valid.
onFilesRejected (files: File[]) => void
A function that is called when invalid files are dragged and then dropped onto the component.
"Invalid files" are determined by
acceptsOnly
prop. If noacceptsOnly
this is never called.
Optional Props
allowsMultiple boolean
Whether of not the FileDropzone can handle multiple files
Default: true
disabled boolean
Whether the FileDropzone is disabled or not
Default: false
acceptsOnly string
An accepts string indicating that the FileDropzone should only accept specific files
sx SxProps<Theme>
Allows defining system overrides as well as additional CSS styles to the applied to the top level container
dragZoneSx (state: FileDropzoneState) => SxProps<Theme>
Allows defining system overrides as well as additional CSS styles to the applied to container around children this typically contains borders, background color, etc.
dropZoneSx SxProps<Theme>
Allows defining system overrides as well as additional CSS styles to the container which the user is allowed to drop files onto By default has no visible styling