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

Provide fetcher submission to shouldRevalidate if fetcher action redirects #10208

Merged
merged 1 commit into from Mar 16, 2023

Conversation

brophdawg11
Copy link
Contributor

Closes #10176

@changeset-bot
Copy link

changeset-bot bot commented Mar 15, 2023

🦋 Changeset detected

Latest commit: 72d8e07

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 5 packages
Name Type
@remix-run/router Patch
react-router Patch
react-router-dom Patch
react-router-dom-v5-compat Patch
react-router-native Patch

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

@@ -1825,12 +1833,12 @@ describe("a router", () => {
expect(rootLoader.mock.calls.length).toBe(1);
expect(shouldRevalidate.mock.calls[0][0]).toMatchObject({
currentParams: {},
currentUrl: new URL("http://localhost/child"),
currentUrl: expect.URL("http://localhost/child"),
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Found out that new URL inside toMatchObject doesn't actually validate the internal URL 🤦 , so added the custom matcher and changed all existing instances. Thankfully no false positives.

Comment on lines +2280 to +2283
"formAction": "/fetch",
"formData": FormData {},
"formEncType": "application/x-www-form-urlencoded",
"formMethod": "post",
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fetcher submission should be included to shouldRevalidate if the fetcher action redirected

@brophdawg11 brophdawg11 merged commit 73ac17d into dev Mar 16, 2023
2 checks passed
@brophdawg11 brophdawg11 deleted the brophdawg11/fetcher-redirect-should-revalidate branch March 16, 2023 17:51
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[Bug]: shouldRevalidate missing FormData if action called by fetcher.submit returns (or throws) a redirect.
3 participants