Sha256: 570db6e30e5f8f4fe50a2f83753c5cf640dc6c19410233fb6f9709b30ef4cefd
Contents?: true
Size: 1.75 KB
Versions: 49
Compression:
Stored size: 1.75 KB
Contents
/* @flow */ import React, { useCallback } from 'react' import { useDropzone } from 'react-dropzone' import classnames from 'classnames' import { buildCss, buildDataProps, noop } from '../utilities/props' import { globalProps } from '../utilities/globalProps' import type { Callback } from '../types' import Body from '../pb_body/_body' import Card from '../pb_card/_card' type FileUploadProps = { accept?: array<string>, className?: string, data?: object, acceptedFilesDescription?: string, onFilesAccepted: Callback, } const FileUpload = (props: FileUploadProps) => { const { accept = null, acceptedFilesDescription = '', className, data = {}, onFilesAccepted = noop, } = props const onDrop = useCallback((files) => { onFilesAccepted(files) }) const { getRootProps, getInputProps, isDragActive } = useDropzone({ accept, onDrop, }) const acceptedFileTypes = () => { return accept.map((fileType) => { if (fileType.startsWith('image/')) { return fileType.replace('image/', ' ') } else { return fileType } }) } const dataProps = buildDataProps(data) return ( <div className={classnames(buildCss('pb_file_upload_kit'), globalProps(props), className)} {...dataProps} {...getRootProps()} > <Card> <input {...getInputProps()} /> <Body color="light"> <If condition={isDragActive}> <p>{'Drop the files here ...'}</p> <Else /> <p>{accept === null ? 'Choose a file or drag it here' : `Choose a file or drag it here. The accepted file types are: ${acceptedFilesDescription || acceptedFileTypes()}`}</p> </If> </Body> </Card> </div> ) } export default FileUpload
Version data entries
49 entries across 49 versions & 1 rubygems