Questions tagged [uppy]

A full-featured file uploader for webbrowsers that supports tus

Sleek, modular open source JavaScript file uploader.

Uppy fetches files locally and from remote places like Dropbox or Instagram. With its seamless integration, reliability and ease of use, Uppy is truly your best friend in file uploading.

95 questions
4
votes
0 answers

Use Uppy with TypeScript and Vue2. Unexpected token 'export'

I've been trying to get Uppy working in my Vue TypeScript project for a few hours now. I am using Vue2 with the class components and Nuxt. I have already tried to provide Uppy via a getter (since the documentation says so), get uppy() { return…
Florian Falk
  • 214
  • 4
  • 17
4
votes
0 answers

How to upload files to Google Drive from React Using Uppy or Uppload library

I'm a beginner with JavaScript React and learning about file transfer handling. My question is after have read about Uppy and Uppload that both simplifies upload of files but non of them can Upload to Google Drive. I have tried to understand how…
Kid
  • 1,869
  • 3
  • 19
  • 48
3
votes
3 answers

how to search json array for value and then erase the index if value is found

I got this json string that I need to parse and remove data from, but I'm unsure of how to go about it. Say I have the following json:
calyxofheld
  • 1,538
  • 3
  • 24
  • 62
3
votes
0 answers

Aws multipart unable to pause (t.forEach is not a function) Uppy

I am using uppy AWS multipart to upload files on AWS. When I pause the upload I am facing the below error: [Uppy] [12:47:13] Failed to upload Screencast.mp4 t.forEach is not a function [Uppy] [12:47:13] t.forEach is not a function
rahul.m
  • 5,572
  • 3
  • 23
  • 50
3
votes
1 answer

My Uppy suddenly gives me the error this.uppy.addFiles is not a function

I'm new to this and I get this error and can't figure out why please advice: Looks like the Error is inside Uppy something. I follow Uppy Tutorial docs like .use(Dashboard, {... and it was working but suddenly this error I try to back track but no…
Kid
  • 1,869
  • 3
  • 19
  • 48
3
votes
0 answers

Uppy - is sequential uploads possible?

I am currently developing a service where many of the users have bad internet connection, we are using Uppy with the AWS-s3-multipart plugin for uploading files and I really like it so far. One issue we are facing though is that it would be…
Christian.H
  • 126
  • 8
3
votes
1 answer

uppy how to add metaFields from Dashboard to XHRUpload

I use "@uppy/core": "^1.13.2", "@uppy/dashboard": "^1.12.8", "@uppy/xhr-upload": "^1.6.4", and Symfony in server side and I faced with some problem, metaFields not present in meta data file in server I followed to example from doc. And my dashboard…
shuba.ivan
  • 3,824
  • 8
  • 49
  • 121
2
votes
1 answer

how to implement simple uppy fileuploader

this simple example does not work. Uppy File Uploader Example
2
votes
1 answer

Unexpected Jest Errors when Mocking Uppy

I'm attempting to mock the Uppy class from the uppy package in a Jest unit test following guidance from this previously answered question. My failing code is below: import Uppy from '@uppy/core'; describe('MyComponent', () => { it('renders', ()…
Weston Sankey
  • 301
  • 4
  • 18
2
votes
1 answer

How to access "this" from Uppy's callback event

I'm using the Uppy Vue component library, and following the docs, I've initialized Uppy by adding it as a computed property. computed: { uppy: () => new Uppy({ logger: Uppy.debugLogger }).use(AwsS3Multipart, { limit: 4, …
Josh
  • 714
  • 2
  • 8
  • 20
2
votes
2 answers

Configuring Uppy to Use Multipart Uploads with Laravel/Vue

I figured it out This was the missing piece. Once I clean up my code, I'll post an answer so that hopefully the next poor soul that has to deal with this will not have to go through the same hell I went through ;) $command =…
Josh
  • 714
  • 2
  • 8
  • 20
2
votes
1 answer

How to get the Blob image preview in my Uppy Custom setup

I learn React and now I use the Uppy so user can select files for upload. When user have select his file the files are hidden by settting showSelectedFiles={false} I use my own Component to show the selected files and I get the files using this: …
Kid
  • 1,869
  • 3
  • 19
  • 48
2
votes
0 answers

Vimeo Resumable approach using Uppy Tus failed with response code: 412, response text: unsupported version

i am implementing Vimeo video upload using resumable approach using Uppy Tus So first i am making a call to my backend, and using Vimeo laravel package, i am creating the video, $vimeoResponse = Vimeo::request('/me/videos', [ …
Ashraful Islam
  • 895
  • 7
  • 17
2
votes
1 answer

Upload large Video

I am uploading images/pdf to S3Uploads and video to JwPlayer. it is working fine. Now I need to upload large video it can be 10,20... GB. problem is Client do not want to change php.ini or create .user.ini or change .htaccess file to increase upload…
dev
  • 152
  • 1
  • 10
2
votes
1 answer

rails file_field not showing

I would like to make my app upload multiple files with Shrine, but one doc suggests two file_fields whereas the other suggests only one. After posting a question to their discourse forum, it was suggested that I hide the one named files[]. Whether I…
calyxofheld
  • 1,538
  • 3
  • 24
  • 62
1
2 3 4 5 6 7