Aleksandr Grenishin

Results 50 comments of Aleksandr Grenishin

Hey @NafisRubio, To set unique metadata per each file, you need to upload each file separately and then create a group from the list of UUIDs. ```js import { uploadFile,...

Hey @aquaductape, You need to upload your files using `uploadcare.filesFrom`, get their uuids after upload finished and pass them to the ``. Here is an example: ```jsx import { Widget...

You also could pass `ucFiles` directly to the `value` prop after https://github.com/uploadcare/react-widget/pull/329 merge

Hey @Amatewasu, Unfortunately, we don't support node streams yet.

Technically it's possible but isn't implemented in this library. You could use [Upload API](https://uploadcare.com/api-refs/upload-api/#tag/Upload/operation/multipartFileUploadStart) directly to upload files from the stream.

Hey @rikhav-parsegon! Thanks for report. Unfortunately, I can't reproduce the problem. It seems that you have > 1 react instances in your project. Could you provide `npm ls react` or...

I'm not quite understand why you're doing your own implementation? Until we release a fixed version, you can import needed methods directly and use react-native file-like object (`{ name, type,...

@paulsizer > using that approach the call to getChuck within uploadMultipart doesn't like the file. Yep, I was wrong, uploadMultipart requires a Blob, sorry. I was able to reproduce both...

@paulsizer This is the first time I've encountered with react-native and I can't figure out what's causing these crashes. There is nothing that can highlight the cause - no errors...

Ha, I turned off the queue and retry mechanics and the crashes are gone. I'm close to a clue.