Skip to content

Commit

Permalink
Clear cache on non-GET form submit (#495)
Browse files Browse the repository at this point in the history
* rebase main

* rebase cleanup

* fix lint issues

* fix lint issues
  • Loading branch information
tleish committed Jul 19, 2022
1 parent 5a2029a commit 975054b
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 4 deletions.
4 changes: 3 additions & 1 deletion src/core/drive/navigator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,14 +87,16 @@ export class Navigator {
if (formSubmission == this.formSubmission) {
const responseHTML = await fetchResponse.responseHTML
if (responseHTML) {
if (formSubmission.method != FetchMethod.get) {
const shouldCacheSnapshot = formSubmission.method == FetchMethod.get
if (!shouldCacheSnapshot) {
this.view.clearSnapshotCache()
}

const { statusCode, redirected } = fetchResponse
const action = this.getActionForFormSubmission(formSubmission)
const visitOptions = {
action,
shouldCacheSnapshot,
response: { statusCode, responseHTML, redirected },
}
this.proposeVisit(fetchResponse.location, visitOptions)
Expand Down
17 changes: 15 additions & 2 deletions src/core/drive/visit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,15 @@ export type VisitOptions = {
response?: VisitResponse
visitCachedSnapshot(snapshot: Snapshot): void
willRender: boolean
shouldCacheSnapshot: boolean
}

const defaultOptions: VisitOptions = {
action: "advance",
historyChanged: false,
visitCachedSnapshot: () => {},
willRender: true,
shouldCacheSnapshot: true,
}

export type VisitResponse = {
Expand Down Expand Up @@ -85,6 +87,7 @@ export class Visit implements FetchRequestDelegate {
request?: FetchRequest
response?: VisitResponse
scrolled = false
shouldCacheSnapshot = true
snapshotHTML?: string
snapshotCached = false
state = VisitState.initialized
Expand All @@ -99,7 +102,16 @@ export class Visit implements FetchRequestDelegate {
this.location = location
this.restorationIdentifier = restorationIdentifier || uuid()

const { action, historyChanged, referrer, snapshotHTML, response, visitCachedSnapshot, willRender } = {
const {
action,
historyChanged,
referrer,
snapshotHTML,
response,
visitCachedSnapshot,
willRender,
shouldCacheSnapshot,
} = {
...defaultOptions,
...options,
}
Expand All @@ -112,6 +124,7 @@ export class Visit implements FetchRequestDelegate {
this.visitCachedSnapshot = visitCachedSnapshot
this.willRender = willRender
this.scrolled = !willRender
this.shouldCacheSnapshot = shouldCacheSnapshot
}

get adapter() {
Expand Down Expand Up @@ -225,7 +238,7 @@ export class Visit implements FetchRequestDelegate {
if (this.response) {
const { statusCode, responseHTML } = this.response
this.render(async () => {
this.cacheSnapshot()
if (this.shouldCacheSnapshot) this.cacheSnapshot()
if (this.view.renderPromise) await this.view.renderPromise
if (isSuccessful(statusCode) && responseHTML != null) {
await this.view.renderPage(PageSnapshot.fromHTMLString(responseHTML), false, this.willRender, this)
Expand Down
4 changes: 4 additions & 0 deletions src/tests/fixtures/navigation.html
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,10 @@ <h1>Navigation</h1>
<input type="hidden" name="path" value="/src/tests/fixtures/one.html">
<button data-turbo-action="replace">Same-origin form[method="post"] button[data-turbo-action="replace"]</button>
</form>
<form id="form-post" method="post" action="/__turbo/redirect">
<input type="hidden" name="path" value="/src/tests/fixtures/one.html">
<input type="submit" id="form-post-submit" value="Submit"/>
</form>
<p><a id="same-origin-false-link" href="/src/tests/fixtures/one.html" data-turbo="false">Same-origin data-turbo=false link</a></p>
<p data-turbo="false"><a id="same-origin-unannotated-link-inside-false-container" href="/src/tests/fixtures/one.html">Same-origin unannotated link inside data-turbo=false container</a></p>
<p data-turbo="false"><a id="same-origin-true-link-inside-false-container" href="/src/tests/fixtures/one.html" data-turbo="true">Same-origin data-turbo=true link inside data-turbo=false container</a></p>
Expand Down
1 change: 0 additions & 1 deletion src/tests/functional/form_submission_tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,6 @@ test("test standard POST form submission events", async ({ page }) => {

await nextEventNamed(page, "turbo:before-visit")
await nextEventNamed(page, "turbo:visit")
await nextEventNamed(page, "turbo:before-cache")
await nextEventNamed(page, "turbo:before-render")
await nextEventNamed(page, "turbo:render")
await nextEventNamed(page, "turbo:load")
Expand Down
13 changes: 13 additions & 0 deletions src/tests/functional/navigation_tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,19 @@ test("test following a same-origin POST form button[data-turbo-action=replace]",
assert.equal(await visitAction(page), "replace")
})

test("test following a POST form clears cache", async ({ page }) => {
await page.evaluate(() => {
const cachedElement = document.createElement("some-cached-element")
document.body.appendChild(cachedElement)
})

await page.click("#form-post-submit")
await nextBeat() // 301 redirect response
await nextBeat() // 200 response
await page.goBack()
assert.notOk(await hasSelector(page, "some-cached-element"))
})

test("test following a same-origin data-turbo=false link", async ({ page }) => {
page.click("#same-origin-false-link")
await nextBody(page)
Expand Down

0 comments on commit 975054b

Please sign in to comment.