Skip to content

Commit

Permalink
fix: GET partial form submit ignoring multiple checkbox values (#2568)
Browse files Browse the repository at this point in the history
Fixes #2567
  • Loading branch information
marvinhagemeister committed Jul 2, 2024
1 parent 045ec80 commit 79a262b
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/runtime/client/partials.ts
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ document.addEventListener("submit", async (e) => {
// TODO: Looks like constructor type for URLSearchParam is wrong
// deno-lint-ignore no-explicit-any
const qs = new URLSearchParams(new FormData(el, e.submitter) as any);
qs.forEach((value, key) => partialUrl.searchParams.set(key, value));
qs.forEach((value, key) => partialUrl.searchParams.append(key, value));
} else {
init = { body: new FormData(el, e.submitter), method: lowerMethod };
}
Expand Down
58 changes: 58 additions & 0 deletions tests/partials_test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1784,6 +1784,64 @@ Deno.test({
},
});

Deno.test({
name: "partials - form submit multiple values",
fn: async () => {
const app = testApp()
.get("/partial", (ctx) => {
const values = ctx.url.searchParams.getAll("name");
return ctx.render(
<Doc>
<Partial name="foo">
<p class={`done-${values.join("-")}`}>done</p>
</Partial>
</Doc>,
);
})
.get("/", (ctx) => {
return ctx.render(
<Doc>
<div f-client-nav>
<form action="/partial" method="get">
<input type="checkbox" name="name" value="a" />
<input type="checkbox" name="name" value="b" />
<input type="checkbox" name="name" value="c" />
<Partial name="foo">
<p class="init">init</p>
</Partial>
<SelfCounter />
<button type="submit" class="update">
submit
</button>
</form>
</div>
</Doc>,
);
});

await withBrowserApp(app, async (page, address) => {
await page.goto(address, { waitUntil: "load" });
await page.locator(".ready").wait();

await page.locator(".increment").click();
await waitForText(page, ".output", "1");

await page.locator<HTMLInputElement>("input[value=a]").evaluate((el) =>
el.checked = true
);
await page.locator<HTMLInputElement>("input[value=b]").evaluate((el) =>
el.checked = true
);
await page.locator<HTMLInputElement>("input[value=c]").evaluate((el) =>
el.checked = true
);

await page.locator(".update").click();
await page.locator(".done-a-b-c").wait();
});
},
});

Deno.test({
name: "partials - fragment nav should not cause infinite loop",
fn: async () => {
Expand Down

0 comments on commit 79a262b

Please sign in to comment.