Docs
- Getting Started
- Uppy
- Companion
- List of Plugins
- Common Plugin Options
- Custom Stores
- Community Projects
- Locale Packs
- Migration guides
UI Elements
Sources
- Drag & Drop
- Drop Target
- File Input
- Audio
- Webcam
- Screen capture
- Provider Plugins
- ⓒ Box
- ⓒ Dropbox
- ⓒ Google Drive
- ⓒ OneDrive
- ⓒ Zoom
- ⓒ Unsplash
- ⓒ Import From URL
Destinations
File Processing
- Robodog Introduction
- Robodog File Picker
- Image Editor
- Robodog Form
- Robodog Upload
- Robodog Dashboard
- Transloadit
Miscellaneous
React
- Introduction
- Initializing Uppy
- <StatusBar />
- <DragDrop />
- <FileInput />
- <ProgressBar />
- <Dashboard />
- <DashboardModal />
- React Native
Other Integrations
Contributing
Robodog: Dashboard API
Add the Dashboard UI to your page, all wired up and ready to go! This is a wrapper around the Transloadit and Dashboard plugins. Unlike the File Picker API, this Dashboard is embedded directly into the page. Users can upload many files after another.
<div id="dashboard"></div> <script> Robodog.dashboard('#dashboard', { params: { auth: { key: '' }, template_id: '' } }) </script> |
This API can still be used as a modal, too, by specifying inline: false
:
Robodog.dashboard(selector, { inline: false }) |
The Robodog.dashboard()
function returns an Uppy instance, which you can use to listen for any Uppy events.
const uppy = Robodog.dashboard(selector, { ...options }) .on('transloadit:result', (result) => { console.log(result) }) |
Transloadit
Most options to the Transloadit plugin are supported except for id
.
Restrictions
Set rules and conditions to limit the type and/or number of files that can be selected. Restrictions are configured by the restrictions
option.
restrictions.maxFileSize
Maximum file size in bytes for each individual file.
restrictions.minFileSize
Minimum file size in bytes for each individual file.
restrictions.maxTotalFileSize
Maximum file size in bytes for all the files together.
restrictions.maxNumberOfFiles
The total number of files that can be selected. If this is larger than 1, the multiple
attribute will be added to <input type="file">
fields.
restrictions.minNumberOfFiles
The minimum number of files that must be selected before the upload. The upload will fail and the form will not be submitted if fewer files were selected.
restrictions.allowedFileTypes
Array of mime type wildcards image/*
, exact mime types image/jpeg
, or file extensions .jpg
: ['image/*', '.jpg', '.jpeg', '.png', '.gif']
.
If provided, the <input accept>
attribute will be added to <input type="file">
fields, so only acceptable files can be selected in the system file dialog.
Using your own OAuth applications when importing files
When importing files from remote providers, Transloadit’s OAuth applications are used by default. Your users will be asked to provide Transloadit access to their files. Since your users are probably not aware of Transloadit, this may be confusing or decrease trust. You may also hit rate limits, because the OAuth application is shared between everyone using Transloadit.
You can use your own OAuth keys with Transloadit’s hosted Companion servers by using Transloadit Template Credentials. Create a Template Credential on the Transloadit site. Select “Companion OAuth” for the service, and enter the key and secret for the provider you want to use. Then you can pass the name of the new credentials to that provider:
Robodog.dashboard({ providers: ['dropbox'], dropbox: { credentialsName: 'my_companion_dropbox_creds', }, }) |
Users will now be asked to allow your application access, and they’re probably already familiar with that!