Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

saveStatus showing unsaved when status should be saved #12

Open
sfisher4 opened this issue Jun 27, 2022 · 2 comments
Open

saveStatus showing unsaved when status should be saved #12

sfisher4 opened this issue Jun 27, 2022 · 2 comments

Comments

@sfisher4
Copy link

sfisher4 commented Jun 27, 2022

Thanks for this great resource!

While I was using the useReactQueryAutoSync hook in my project, I noticed the saveStatus conditional returns unsaved when draft is really saved. I also noticed this wasn't working in the demo.

In useReactQueryAutoSync, onMutation in the useMutation hook will set the draft to undefined setDraft(undefined); after it is mutated. This results in the saveStatus value to equal 'unsaved' when it is really saved. Am I using this setStatus states correctly? If so, a suggestion is to add an or statement to saveStatus. ie for the last conditional:

queryResult.data === draft || draft === undefined ? 'saved' : 'unsaved'

@lukesmurray
Copy link
Owner

lukesmurray commented Jun 29, 2022

Oh wow, thank you for the excellent bug report. Off the bat, I completely agree with your logic. Is this blocking your work? If so I'll try to release a tagged version you can use to unblock yourself. If not I may take a couple of days to release a new version since I want to review the logic before publishing a new release so that I can try to identify other similar bugs.

@sfisher4
Copy link
Author

sfisher4 commented Jun 30, 2022

No rush, this is not blocking my work. I will let you know if I run into any similar bugs when I'm playing around as well. Thanks again for the resource and your quick reply!

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

No branches or pull requests

2 participants