Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@mux/mux-uploader-react

Package Overview
Dependencies
Maintainers
2
Versions
523
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@mux/mux-uploader-react

An uploader element for React that handles Mux Direct Uploads and a visual progress bar for you

  • 0.1.0-canary.10-2d61f80
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3.5K
decreased by-21.76%
Maintainers
2
Weekly downloads
 
Created
Source

<MuxUploader/>

Downloads Version License

Introduction

<MuxUploader> is React component for uploading files to Mux.

<MuxUploaderDrop> is an optional supporting React component for drop-in drag and drop and overlay. You can always configure your own drag and drop with <MuxUploader>.

If you are looking for a direct upload interface and a progress bar, you're in the right place.

Installation

If you're using npm or yarn, install that way:

Package manager

yarn add @mux/mux-uploader-react

or

npm i @mux/mux-uploader-react

Then, import the library into your application with either import or require:

import '@mux/mux-uploader-react';

or

require('@mux/mux-uploader-react');

Usage

const MuxUploaderWithMuxUploaderDropExample = () => {
  return (
    <div>
      <h1>Simple MuxUploader and Mux Uploader Drop Examples</h1>
      {/* Upload button by itself. Displays upload progress in text as percentage. */}
      <MuxUploader url="authenticated-url" type="bar" status></MuxUploader>

      {/* Upload button by itself. Does not display text percentage. */}
      <MuxUploader url="authenticated-url" type="bar"></MuxUploader>

      {/* Upload button with access to optional supplentary drag and drop features. */}
      <MuxUploaderDrop mux-uploader="uploader">
        <MuxUploader url="authenticated-url" id="uploader"></MuxUploader>
      </MuxUploaderDrop>
    </div>
  );
};

Props

<MuxUploader>
PropertyTypeDescriptionDefault
urlstringThe authenticated URL that your file will be uploaded to. Check out the direct uploads docs for how to create one. Required.undefined
idstringAn ID that allows <MuxUploaderDrop> to locate <MuxUploader>. Required if you use <MuxUploaderDrop>.N/A
type"bar"Specifies the visual type of progress bar. A radial type is in-progress."bar"
statusbooleanToggles text status visibility of progress bar. The text that is displayed is a percentage by default. If you prefer just the progress bar with no text upload status, don't include this attribute.false
formatProgressfunctionA function that accepts numeric percent and is expected to return a string. Allows for customizing how the progress should be rendered.A function the yields a percent progress string
<MuxUploaderDrop>
PropertyTypeDescriptionDefault
overlaybooleanToggles fullscreen overlay on dragover.false
overlayTextbooleanOptional text to display on dragover when overlay is on.''
muxUploaderstring Must match the id on <MuxUploader>. Required.N/A

Callbacks

<MuxUploader>

<MuxUploader> has a handful of events to monitor uploading state.

PropDescription
onErrorInvoked when an error occurs in the chunked upload process.
onProgressInvoked whenever a chunk of the file has successfully completed uploading.
onSuccessInvoked when the entire file has successfully completed uploading.

FAQs

Package last updated on 21 Jul 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc