Socket
Socket
Sign inDemoInstall

@uppy/dashboard

Package Overview
Dependencies
Maintainers
5
Versions
137
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@uppy/dashboard

Universal UI plugin for Uppy.


Version published
Weekly downloads
148K
decreased by-2.44%
Maintainers
5
Weekly downloads
 
Created

Package description

What is @uppy/dashboard?

@uppy/dashboard is a versatile file uploader UI plugin for Uppy, a modular file uploader for web applications. It provides a drag-and-drop interface, file previews, and progress indicators, making it easy to integrate file uploading capabilities into your web application.

What are @uppy/dashboard's main functionalities?

Drag-and-Drop File Upload

This feature allows users to drag and drop files into a designated area for uploading. The code sample demonstrates how to set up the Uppy Dashboard with drag-and-drop functionality.

const Uppy = require('@uppy/core');
const Dashboard = require('@uppy/dashboard');

const uppy = Uppy();
uppy.use(Dashboard, {
  target: '#drag-drop-area',
  inline: true
});

File Previews

This feature provides previews of the files that are being uploaded. The code sample shows how to configure the Uppy Dashboard to display file previews and upload progress details.

const Uppy = require('@uppy/core');
const Dashboard = require('@uppy/dashboard');

const uppy = Uppy();
uppy.use(Dashboard, {
  target: '#file-preview-area',
  inline: true,
  showLinkToFileUploadResult: true,
  showProgressDetails: true
});

Progress Indicators

This feature shows progress indicators for file uploads. The code sample demonstrates how to set up the Uppy Dashboard to display detailed progress indicators for each file being uploaded.

const Uppy = require('@uppy/core');
const Dashboard = require('@uppy/dashboard');

const uppy = Uppy();
uppy.use(Dashboard, {
  target: '#progress-indicator-area',
  inline: true,
  showProgressDetails: true
});

Other packages similar to @uppy/dashboard

Changelog

Source

0.27.5

Released: 2018-09-27

| Package | Version | Package | Version | |-|-|-|-| | uppy | 0.27.5 | @uppy/instagram | 0.27.5 | | @uppy/core | 0.27.3 | @uppy/react | 0.27.5 | | @uppy/dashboard | 0.27.5 | @uppy/transloadit | 0.27.5 | | @uppy/dropbox | 0.27.4 | @uppy/tus | 0.27.5 | | @uppy/form | 0.27.4 | @uppy/url | 0.27.5 | | @uppy/informer | 0.27.4 | @uppy/webcam | 0.27.4 |

  • core: Add onMount() and this.parent to Plugin (#1062 / @arturi)
  • core: Call removeFile on each file when doing cancelAll (#1058 / @arturi)
  • dashboard: Fixing “ResizeObserver is not a constructor”, issue #1070, by doing require('resize-observer-polyfill').default || require('resize-observer-polyfill') (#1078 / @yoldar, @arturi, @goto-bus-stop)
  • dashboard: Only show the plus button if props.totalFileCount < props.maxNumberOfFiles (#1063 / @arturi)
  • status-bar: use uppy-Root in Status Bar when it’s mounted in DOM (#1081 / @arturi)
  • docs: added uppy.off() info (#1077 / @dviry)
  • docs: quick start guide, add simple HTML page snippet with Uppy https://community.transloadit.com/t/quick-start-guide-would-be-really-helpful/14605 (#1068 / @arturi)

Readme

Source

@uppy/dashboard

Uppy logo: a superman puppy in a pink suit

Build Status

Dashboard is a universal UI plugin for Uppy:

  • Drag and Drop, paste, select from local disk / my device
  • UI for Webcam and remote sources: Google Drive, Dropbox, Instagram (all optional, added via plugins)
  • File previews and info
  • Metadata editor
  • Progress: total and for individual files
  • Ability to pause/resume or cancel (depending on uploader plugin) individual or all files

Read the docs | Try it

Uppy is being developed by the folks at Transloadit, a versatile file encoding service.

Example

const Uppy = require('@uppy/core')
const Dashboard = require('@uppy/dashboard')

const uppy = Uppy()
uppy.use(Dashboard, {
  target: 'body',
  inline: true
})

Installation

$ npm install @uppy/dashboard --save

We recommend installing from npm and then using a module bundler such as Webpack, Browserify or Rollup.js.

Alternatively, you can also use this plugin in a pre-built bundle from Transloadit's CDN: Edgly. In that case Uppy will attach itself to the global window.Uppy object. See the main Uppy documentation for instructions.

Documentation

Documentation for this plugin can be found on the Uppy website.

License

The MIT License.

Keywords

FAQs

Package last updated on 27 Sep 2018

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc