File Upload

File upload component with drag and drop capability, compatible with mobile devices.

File Upload with initial file list

Either drag and drop more files into the drop area, or click on the drop area to open the file selection dialog.

Note that the already uploaded files have context buttons when hover.

Klikk her for å velge filer. Filformat er alle, maks 99 filer, maks størrelse 10MB.

PAGE 1
cat.jpg
json
<FileUpload files={[
  require('./resources/samplePDF').default, 
  require('./resources/sampleJPG').default,
  require('./resources/sampleOther').default
]}/>

File Upload callback functions

Klikk her for å velge filer. Filformat er alle, maks 99 filer, maks størrelse 10MB.
<FileUpload 
  beforeFileDrop={() => console.log('Before drop')}
  afterFileDrop={() => console.log('After drop')}
  onFilesChanged={(files) => console.log('I have ' + files.length + ' files')}
/>

Component import

import FileUpload from 'filopplasting'

React props

PropertyTypeRequiredDescriptionDefault
acceptedMimetypesstring or listfalseString with accepted mimetype or list of accepted mimetypes. If not defined, all files are accepted.-
afterFileDropfunctionfalseCallback function triggered after file drop.-
beforeFileDropfunctionfalseCallback function triggered before file drop.-
classNamestringfalseAdditional classnames-
fileslistfalseList of initial files in the file upload[]
highContrastbooleanfalseRender in high contrast theme or notfalse
labelsobjectfalseList of optional labels that override the default labels
maxFilesnumberfalseMaximum number of allowed files99
maxFileSizenumberfalseMaximum size of acceptable files, in bytes. Default value is 10 MB.10485760
onFilesChangedfunctionfalseCallback function triggered when the uploaded file list changes-