@srph/react-uploadi v0.1.0
React Uploadi

The bare minimum to build file upload user interfaces.
- Provides a terse interface to enable file upload.
- Removes the effort of dealing with FileReader (usually needed to display the preview of uploaded photos).
- Dropping of files is built out of the box.
- Doesn't assume markup, styling, or template.
Unlike Dropzone.js, Uploadi does not handle the actual uploading of the files to a 3rd-party service / API.
How It Works
This library uses the render props pattern. You can read more about it here.
Installation
npm install @srph/react-uploadi --saveScript tags
If you're not using a bundler like Browserify or Webpack, simply add the script tag after your React script tag.
<!-- Script tags for React and other libraries -->
<script src="https://unpkg.com/@srph/react-uploadi/dist/react-uploadi.min.js"></script>This library is exposed as ReactUploadi (e.g., <ReactUploadi />).
Usage
The following lets you build a single-file uploader:
import React from 'react'
import Uploadi from '@srph/react-uploadi'
class App extends React.Component {
state = {
// Here goes the base64 parsed event
image: '',
// Here goes the original File which you may
// need when uploading to an API / any kind of backend.
// In most cases, you will use formdata with it.
file: null
}
render() {
const {image} = this.state
return (
<Uploadi onFiles={this.handleFiles}>
{({onSelect}) => {
return (
<div>
{image ? <img src={image} /> : 'Select a file to upload.'}
<button onClick={onSelect}>
Browse
</button>
</div>
)
}}
</Uploadi>
)
}
handleFiles = (file, image) => {
this.setState({
file,
image
})
}
}
export default App;NOTE: Regarding the
onFilescallback prop — The first parameter contains the originalFileevent may need in order to upload the selected file.The second parameter contains the encoded string (contents of the file): a base64-encoded string if it's an image, otherwise a text string.
Multiple files
You can make your uploader accept multiple files by passing the multiple={true} prop to Uploadi. Take note that the onFiles callback is slightly different: You will receive an array of Files and encoded strings.
class App extends React.Component {
state = {
images: [],
files: []
}
render() {
const {images} = this.state
return (
<Uploadi multiple onFiles={this.handleFiles}>
{({onSelect}) => {
return (
<div>
{images.length
? images.map((image, i) => (
<img src={image} key={i} />
)) : 'Select a file to upload.'
}
<button onClick={onSelect}>
Browse
</button>
</div>
)
}}
</Uploadi>
)
}
handleFiles = (files, images) => {
this.setState({
files,
images
})
}
}
export default App;NOTE: The
onFilescallback prop is slightly different whenmultipleistrue. Instead of aFileand an encoded string, you will receive array ofFilesand array of encoded strings.
View more examples.
Reacting to dropped files
By default, Uploadi reacts to dropped files. In order to display something when something is being dragged over to Uploadi, you may use the over property provided to the render prop like so:
class App extends React.Component {
render() {
return (
<Uploadi multiple onFiles={this.handleFiles}>
{({over, onSelect}) => {
return (
<div>
{over && (
<div className="drop-overlay" />
)}
</div>
)
}}
</Uploadi>
)
}
handleFiles = (files, images) => {
//
}
}
export default App;NOTE: The
onFilescallback prop is slightly different here. Instead of aFileand an encoded string, you will receive array ofFilesand array of encoded strings.
View more examples.
API Documentation
Here's a list of props you may use to customize the component for your use-case:
| Parameter | Type | Description |
|---|---|---|
| multiple | boolean | Enable multiple files to be selected. Defaults to false. |
| accept | string | Files types you'd like to be selected. |
| onFiles | function(File file, string img) (required) | Callback called when a file is selected. |
| onFiles | function(Array<File> files, Array<string> img) (required) | Callback called when multiple is true. |
Setup
You can check the demo, or build it yourself locally:
npm install
npm run startAfterwards, open up localhost:9001 in your browser.
Bundling package
npm run bundlePublish storybook
npm run storybook:publishAttribution
Big thanks to Pavlo Tyshchuk for his Free User pics used in the examples.
Alternatives
8 years ago