npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

itsa-react-fileuploadarea

v17.1.0

Published

File upload drop-area for react, drag-and-drop files or click to browse. Fully interchangeable with itsa-react-fileuploadbutton.

Downloads

391

Readme

File upload drop-area for react, fully interchangeable with itsa-react-fileuploadbutton.

Instead of a button, it renders a drop zone where users can drag-and-drop files (with a click fallback to open a file picker).

It has the following features:

  • Drag-and-drop file selection
  • Click to browse fallback
  • Abortable
  • CORS support
  • IE8+ support
  • Progress-status (IE10+)
  • Ultrafast upload by splitting the file(s) in chunks
  • Focussable
  • Aria-support (automaticly)
  • Fully interchangeable with itsa-react-fileuploadbutton (same props & API)

Different modes

The upload-area uses XHR2 by default and falls back into using a form-submit mode (multipart/form-data). You can force the form-submit mode, by setting the prop formSubmitMode true. This is NOT recomended:

Advantages formSubmitMode:

  • Easy setup serverside (no file-chunks)

Disadvantages formSubmitMode:

  • No file-chunks, therefore no highspeed upload
  • No onProgress
  • When CORS, the uploader is unable to detect reponse-errors, leading into the callback of onSuccess in case of a network-error.

Best usage is same-origin with formSubmitMode=false (which is the default).

How to use:

"use strict";

const React = require("react"),
    ReactDOM = require("react-dom"),
    FileUploadArea = require("./lib/component-styled.jsx");

const props = {
    url: "http://yourdomain.com/procesimage",
    areaText: "Drop your files here or click to browse",
    errorMsg: "you can only select a png-file",
    helpText: "png-files only",
    maxFileSize: 15*1024*1024, // 15mb
    onFileChange: function(e) {
        props.validated = (e.target.getFiles()[0].type==="image/png");
        render();
        // reset the error-message next to the fileupload-area:
        propsMsg.msg = "";
        renderMsg();
    },
    onError: function(err) {
        propsMsg.msg = "Error: "+err.message;
        renderMsg();
    }
};

const propsMsg = {
    msg: ""
};

const Msg = React.createClass({
    render() {
        return (
            <div>{this.props.msg}</div>
        );
    }
});

var render = function() {
    ReactDOM.render(
        <FileUploadArea {...props} />,
        document.getElementById("component-container1")
    );
};

var renderMsg = function() {
    ReactDOM.render(
        <Msg {...propsMsg} />,
        document.getElementById("message-container")
    );
};

render();
renderMsg();

Interchangeability with itsa-react-fileuploadbutton

This component accepts all the same props as itsa-react-fileuploadbutton and exposes the same public API:

Methods:

  • send() - Send the selected files
  • abort(reset) - Abort the transfer
  • reset() - Reset the selected files
  • count() - Number of currently selected files
  • getFiles() - Get the currently selected files
  • getLastSent() - Get the last sent files
  • getTotalFileSize() - Total size of selected files
  • hasFiles() - Whether files are selected
  • reactivate() - Reactivate after uploadOnlyOnce
  • focus() - Focus the component

Additional props (area-specific):

  • areaText - Text shown in the drop zone (default: "Drop files here or click to browse")
  • areaHTML - HTML content in the drop zone
  • activeText - Text shown while dragging over (default: "Drop files here")
  • activeHTML - HTML content while dragging over

About the css

You need the right css in order to make use of itsa-react-fileuploadarea. There are 2 options:

  1. You can use the css-files inside the css-folder
  2. You can use: Component = require("itsa-react-fileuploadarea/lib/component-styled.jsx"); and build your project with webpack. This is needed, because you need the right plugin to handle a requirement of the scss-file.

Setting up the server

Server setup is identical to itsa-react-fileuploadbutton. See that module's README for details, or use itsa-fileuploadhandler.

If you want to express your appreciation

Feel free to donate to one of these addresses; my thanks will be great :)

  • Ether: 0xE096EBC2D19eaE7dA8745AA5D71d4830Ef3DF963
  • Bitcoin: 37GgB6MrvuxyqkQnGjwxcn7vkcdont1Vmg