Skip to content

How to get a response from the server after each chunk? #510

Discussion options

You must be logged in to vote

Hey @SvistelnykOleksandr,

The progress listener doesnt have information related to chunks. Its only getting the overall progress info.

For the chunk upload response you should use the useChunkFinishListener hook.

It receives an uploadData object with a response property that should contain the server response.

import { useChunkFinishListener } from "@rpldy/chunked-uploady";

const MyComponent = () => {
    useChunkFinishListener(({ uploadData }) => {
        console.log(`response data = `, uploadData.response);
    });
};

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@SvistelnykOleksandr
Comment options

Answer selected by SvistelnykOleksandr
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants