Adds chunked upload capabilities on top of the regular XHR @rpldy/sender Exposes an UploaderEnhancer that replaces the default send method the uploader uses.
For usage with your React app, see @rpldy/chunked-uploady.
Chunked uploading doesn't support grouped uploads (in single XHR request) or URL uploading. These will be handed over to the default @rpldy/sender
The best place to get started is at our: React-Uploady Documentation Website
#Yarn:
$ yarn add @rpldy/chunked-sender
#NPM:
$ npm i @rpldy/chunked-sender
Name (* = mandatory) | Type | Default | Description |
---|---|---|---|
chunked | boolean | true | chunk uploads. setting to false will return to default sending behavior |
chunkSize | number | 5242880 | the chunk size. relevant when uploaded file is larger than the value |
retries | number | 0 | how many times to retry sending a failed chunk |
parallel | number | 0 | how many (chunk) requests to send simultaneously |
Chunked Sender makes it possible to handle chunk life-time events. See uploader events section on more info regarding how to register for events.
Triggered when a chunk is about to be sent to the server
This event is cancellable
The event handler may return an object with the following shape:
type StartEventResponse = {
url: string,
sendOptions: SendOptions
}
Triggered when a chunk has finished uploading
In case of chunk upload error in conjunction of using the ITEM_ERROR or the useItemErrorListener hook, it is possible to access the error information returned from the server like so:
import { useItemErrorListener } from "@rpldy/uploady";
const MyComponent = () => {
useItemErrorListener((item) => {
console.log(`item ${item.id} failed - status code:`, item.uploadResponse.chunkUploadResponse.status); //the status code returned by the server on the failed chunk
console.log(`item ${item.id} failed - msg:`, item.uploadResponse.chunkUploadResponse.response); //the response data (if) sent by the server on the failed chunk
});
//...
};