-
Notifications
You must be signed in to change notification settings - Fork 932
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
restore focus after patching cloned tree
The simplified morphdom call used to patch cloned trees did not restore focus to the previously focused element. This commit applies the same restoreFocus logic used in the normal morphdom call. Fixes #3448.
- Loading branch information
Showing
4 changed files
with
88 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
defmodule Phoenix.LiveViewTest.E2E.Issue3448Live do | ||
# https://github.com/phoenixframework/phoenix_live_view/issues/3448 | ||
|
||
use Phoenix.LiveView | ||
|
||
alias Phoenix.LiveView.JS | ||
|
||
def mount(_params, _session, socket) do | ||
form = to_form(%{"a" => []}) | ||
|
||
{:ok, assign_new(socket, :form, fn -> form end)} | ||
end | ||
|
||
def render(assigns) do | ||
~H""" | ||
<.form for={@form} id="my_form" phx-change="validate" class="flex flex-col gap-2"> | ||
<.my_component> | ||
<:left_content :for={value <- @form[:a].value || []}> | ||
<div><%= value %></div> | ||
</:left_content> | ||
</.my_component> | ||
<div class="flex gap-2"> | ||
<input | ||
type="checkbox" | ||
name={@form[:a].name <> "[]"} | ||
value="settings" | ||
checked={"settings" in (@form[:a].value || [])} | ||
phx-click={JS.dispatch("input") |> JS.focus(to: "#search")} | ||
/> | ||
<input | ||
type="checkbox" | ||
name={@form[:a].name <> "[]"} | ||
value="content" | ||
checked={"content" in (@form[:a].value || [])} | ||
phx-click={JS.dispatch("input") |> JS.focus(to: "#search")} | ||
/> | ||
</div> | ||
</.form> | ||
""" | ||
end | ||
|
||
def handle_event("validate", params, socket) do | ||
{:noreply, assign(socket, form: to_form(params))} | ||
end | ||
|
||
def handle_event("search", _params, socket) do | ||
{:noreply, socket} | ||
end | ||
|
||
slot :left_content | ||
|
||
defp my_component(assigns) do | ||
~H""" | ||
<div> | ||
<div :for={left_content <- @left_content}> | ||
<%= render_slot(left_content) %> | ||
</div> | ||
<input id="search" type="search" name="value" phx-change="search" /> | ||
</div> | ||
""" | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
const { test, expect } = require("../../test-fixtures"); | ||
const { syncLV } = require("../../utils"); | ||
|
||
// https://github.com/phoenixframework/phoenix_live_view/issues/3448 | ||
test("focus is handled correctly when patching locked form", async ({ page }) => { | ||
await page.goto("/issues/3448"); | ||
await syncLV(page); | ||
|
||
await page.evaluate(() => window.liveSocket.enableLatencySim(500)); | ||
|
||
await page.locator("input[type=checkbox]").first().check(); | ||
await expect(page.locator("input#search")).toBeFocused(); | ||
await syncLV(page); | ||
|
||
// after the patch is applied, the input should still be focused | ||
await expect(page.locator("input#search")).toBeFocused(); | ||
}); |