Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

[Feature Request] Enabling access to the request's promise when using useFetch #300

Open
uripre opened this issue Nov 12, 2020 · 2 comments

Comments

@uripre
Copy link

uripre commented Nov 12, 2020

Hello,

Apologies in advance if I just missed this feature - but essentially I wanted to get a callback for when the request is finished in the hook. It is useful sometimes when you want something to happen in the component when the request completes, but you don't want it to run on every render.

Something in the lines of:
const fetchState = useFetch('http://google.com'); fetchState.promise.then(() => {...});

Happy to hear thoughts and feedback.

@iamthesiz
Copy link
Collaborator

Have you tried const { get } = useFetch('https://google.com'); get().then(() => {...})?

@uripre
Copy link
Author

uripre commented Nov 16, 2020

Admittedly no, thanks for the reply, I might have misunderstood the API. If I use a dependency array, Should I just call get() again?

# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants