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 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-uploader-hook

v1.1.2

Published

React hook for file upload

Downloads

99

Readme

React Uploader Hook

NPM Version Linux Build codecov Github License

React Uploader Hook is a hook simply for file upload It can be used with react-dropzone or a simple <input type="file"/> The key is calling the onDrop(files) with FileList or an array of File

🖥️Live Example

Install

// npm
npm install react-uploader-hook

// or yarn
yarn add react-uploader-hook

Usage

import React, {useCallback} from 'react';
import useFileUploader from 'react-uploader-hook';

const App = () => {
  const getUploadParams = useCallback((file) => {
    // [💡] you can return custom request configurations here
    const form = new FormData();
    form.append('file', file);
    return {
      method: 'post',
      url: 'https://file.io?expires=1w',
      headers: {'Content-Type': 'multipart/form-data'},
      data: form,
      meta: {'any-other-stuff': 'hello'},
    };
  }, []);

  const onUploaded = useCallback((fileBag) => {
    // [💡] do whatever with the uploaded files
  }, []);

  // [⭐]
  const {onDrop, fileBags} = useFileUploader({getUploadParams, onUploaded});

  const handleChange = useCallback(
    (event) => {
      onDrop(event.target.files);
    },
    [onDrop],
  );

  return (
    <div>
      <input type="file" onChange={handleChange} />
      <pre>{JSON.stringify(fileBags, null, 2)}</pre>
    </div>
  );
};

Functions and parameters

useFileUploader() takes in an object of type FileUploaderProps as an argument

export interface FileUploaderProps {
  getUploadParams: (file: File) => Promise<UploadParams> | UploadParams;
  onUploaded?: (fileBag: FileBag) => void;
  onFailed?: (fileBag: FileBag) => void;
}

getUploadParams()

This is a callback function that will be called before a request is sent to the server to upload each file. The function must return an object in the following shape

export interface UploadParams {
  url: string;
  method: 'put' | 'post' | 'patch' | string;
  headers?: {[key: string]: any};
  data?: any; // the file to upload or FormData in the case of multipart form
  meta?: {[key: string]: any}; // any extra data to forward to the FileBag.meta
}

onUploaded()

This function will be called on successful upload of each file. The first argument will be fileBag, a wrapper object for the uploaded file the status field will contain the value 'uploaded' and 'progress' 100. The second argument will be an array of all uploaded fileBags

export interface FileBag {
  id: string;
  file: File;
  uploadUrl: string;
  progress: number; // 0 - 100
  formattedSize: string;
  status: 'uploading' | 'uploaded' | 'failed';
  httpStatus: number; // 200, 404 etc.
  message: string;
  responseData: any; // the response body from the server
  meta?: {[key: string]: any}; // any extra data forwarded from getUploadParams()
}

onFailed()

Similar to onUploaded(), however the status will be 'failed'. Then httpStatus and responseData would contain additional information to know why the upload failed. The second argument will be an array of all failed fileBags

onDrop()

Call this function to trigger an upload. It accepts File[] or FileList as argument

retryUpload()

Call this function to retry a failed upload. It accepts the fileBag id as argument

License

MIT