Home

Awesome

react-native-uploader

A React Native module for uploading files and camera roll assets. Supports progress notification.

Install

iOS

  1. npm install react-native-uploader --save

  2. Link the native modules:

If you're using React-Native >= 0.29:

If you're using React-Native < 0.29:

If you have any issues, you can install the library manually:

  1. Run your project (Cmd+R)

Example

See ./examples/UploadFromCameraRoll

Example

Usage

import React, { Component } from 'react';

import {
  StyleSheet,
  Component,
  View,
  DeviceEventEmitter,
} from 'react-native';

var RNUploader = NativeModules.RNUploader;
componentDidMount() {
	// upload progress
	DeviceEventEmitter.addListener('RNUploaderProgress', (data)=>{
	  let bytesWritten = data.totalBytesWritten;
	  let bytesTotal   = data.totalBytesExpectedToWrite;
	  let progress     = data.progress;
	  
	  console.log( "upload progress: " + progress + "%");
	});
}
doUpload() {
	let files = [
		{
			name: 'file[]',
			filename: 'image1.png',
			filepath: 'assets-library://....',  // image from camera roll/assets library
			filetype: 'image/png',
		},
		{
			name: 'file[]',
			filename: 'image2.gif',
			filepath: "data:image/gif;base64,R0lGODlhEAAQAMQAAORHHOVSKudfOulrSOp3WOyDZu6QdvCchPGolfO0o/XBs/fNwfjZ0frl3/zy7////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAkAABAALAAAAAAQABAAAAVVICSOZGlCQAosJ6mu7fiyZeKqNKToQGDsM8hBADgUXoGAiqhSvp5QAnQKGIgUhwFUYLCVDFCrKUE1lBavAViFIDlTImbKC5Gm2hB0SlBCBMQiB0UjIQA7",
			filetype: 'image/gif',
		},
	];

	let opts = {
		url: 'http://my.server/api/upload',
		files: files, 
		method: 'POST',                             // optional: POST or PUT
		headers: { 'Accept': 'application/json' },  // optional
		params: { 'user_id': 1 },                   // optional
	};

	RNUploader.upload( opts, (err, response) => {
		if( err ){
			console.log(err);
			return;
		}
  
		let status = response.status;
		let responseString = response.data;
		let json = JSON.parse( responseString );

		console.log('upload complete with status ' + status);
	});
}

API

RNUploader.upload( options, callback )

options is an object with values:

typerequireddescriptionexample
urlstringrequiredURL to upload tohttp://my.server/api/upload
methodstringoptionalHTTP method, values: [PUT,POST], default: POSTPOST
headersobjectoptionalHTTP headers{ 'Accept': 'application/json' }
paramsobjectoptionalQuery parameters{ 'user_id': 1 }
filesarrayrequiredArray of file objects to upload. See below.[{ name: 'file', filename: 'image1.png', filepath: 'assets-library://...', filetype: 'image/png' } ]

callback is a method with two parameters:

typedescriptionexample
errorstringString detailing the errorA server with the specified hostname could not be found.
responseobject{status:Number, data:String}Object returned with a status code and data.{ status: 200, data: '{ success: true }' }

files

files is an array of objects with values:

typerequireddescriptionexample
namestringoptionalForm parameter key for the specified file. If missing, will use filename.file[]
filenamestringrequiredfilenameimage1.png
filepathstringrequiredFile URI<br>Supports assets-library:, data: and file: URIs and file paths.assets-library://...<br>data:image/gif;base64,R0lGODlhEAAQAMQAAORHHOV...<br>file:/tmp/image1.png<br>/tmp/image1.png
filetypestringoptionalMIME type of file. If missing, will infer based on the extension in filepath.image/png

Progress

To monitor upload progress simply subscribe to the RNUploaderProgress event using DeviceEventEmitter.

DeviceEventEmitter.addListener('RNUploaderProgress', (data)=>{
  let bytesWritten = data.totalBytesWritten;
  let bytesTotal   = data.totalBytesExpectedToWrite;
  let progress     = data.progress;
  
  console.log( "upload progress: " + progress + "%");
});

Cancel

To cancel an upload in progress:

RNUploader.cancel()

Notes

Inspired by similiar projects:

...with noteable enhancements:

License

MIT