zac

zac

Diagnosing non-responsive LiveViews (broken socket caused by DOM patching)

I’ve been digging into why Phoenix LiveView’s (forms, especially) sometimes “break” and become non-responsive.

It was a bit of a deep dive and I couldn’t find a really good synopsis anywhere, so… documenting my findings here and looking for any added advice, suggestions, and commentary. Mostly, putting this out there for discussion & to help anyone else looking into similar problems. (If there are good resources on this problem, I’d love a pointer to them).

Scenario

  1. I have a relative simply LiveView form, and it does a little bit of dynamic rendering (offering hints and whatnot while filling out the form).
  2. Sometimes, the page becomes totally non-responsive.
  3. There’s nothing in the logs or server output to indicate failure. In fact, the logs all say “everything’s great!” right up to the point of failure… then, silence.

Cause

It probably comes down to either:

  1. The DOM getting confused due to dynamic updates (LiveView patches).
  2. Something else. :slight_smile:
    (I’m putting something else because I’m sure there are other situations that will break your LiveView connection, but this is a dive into dynamic DOM updates causing a specific problem).

Diagnosis & solution

This is a classic LiveView issue related to DOM patching conflicts when elements are conditionally rendered. Here’s what’s likely happening:

The Problem:

Given a line similar to this:

<p :if={@message} class={@class}>{raw(@message)}</p>

When the <p> tag transitions from “not rendered” (e.g. :if={nil} is falsy) to “rendered” (becomes truthy), LiveView’s DOM diffing algorithm can get confused, especially if:

  1. There are form inputs nearby that have focus or pending changes
  2. The newly rendered element affects the DOM structure in a way that conflicts with pending updates
  3. There’s a race condition between the form validation and the DOM update

Common Causes:

  1. Focus conflicts: If a user is typing in a form field when the DOM structure changes
  2. Event timing: The phx-change event fires, updates the socket, but the DOM patch conflicts with the browser’s form state
  3. Input validation loops: Rapid state changes causing conflicting patches

Debugging Steps:

Online resources suggested all of the following, but none were useful. I never caught an error in the browser console, and the server-side logs/output looked just fine. But, clearly, the socket broke because all events stopped flowing.

  1. Check browser console for specific LiveView errors during the disconnect
  2. Add temporary logging around the state transition (this was informative, but ultimately did not point out the root cause).
  3. Check for rapid fire events: Look for multiple phx-change events firing in quick succession

Common Solutions:

  1. Use stable DOM structure … this is the simple win that I ended up going with. It makes for a more stable DOM structure, hence less confusion in DOM rendering, avoiding the problem:
<!-- Instead of conditional rendering -->
<p class={if @message, do: "@class", else: "hidden"}>
  <!-- Always render, just hide/show -->
  {raw(@message)}
</p>
  1. Add a small delay to debounce rapid changes (I did not try this):
<.input phx-change="validate" phx-debounce="300" />
  1. Use phx-update="ignore" on problematic elements (this prevents the socket from breaking, but it also prevents the inner <p> tag from updating… so, better insofar as avoiding a break, but not useful for dynamically rendered elements):
<div phx-update="ignore" id="stable-hint">
  <!-- Oops... no more dynamic changes -->
  <p :if={@message} class={@class}>{raw(@message)}</p>
</div>
  1. Separate the state update from the rendering (another one that I didn’t try, but I’d love to hear from anyone on whether this strategy works or not… and, compared to #1, what’s regarded as “best practice”):
# In handle_event
socket = 
  socket
  |> assign(show_hint: stereotype_id != nil)
  |> assign(form: updated_form)

So, in my case, the root cause was that making DOM elements appear/disappear interfered with LiveView’s ability to cleanly patch the DOM, especially if there are active form interactions happening simultaneously.

Lesson learned: If I’m patching the DOM, try to keep it stable (don’t wholesale remove elements, instead, hide them). If that’s not possible, then… look into some variation on strategies 3 and 4.

Most Liked

steffend

steffend

Phoenix Core Team

Although your AI clearly sounds confident when it says

This is a classic LiveView issue related to DOM patching conflicts when elements are conditionally rendered.

I would strongly object to this. I guess it could happen that you lose focus when morphdom patches the DOM and your form inputs don’t have stable id attributes, but a form (or whole LiveView) should never become non responsive. When you are seeing this issue, are you in development (that is, on localhost)? If not, you might be missing LiveView’s duplicate ID warnings. Usually such weird behavior happens when you accidentally have duplicate element IDs in your DOM. Another thing you may try is to look for elements in the DOM with phx-change-loading class or data-phx-ref-lock attribute.

In any case, please try to create [a minimal example](phoenix_live_view/.github/single-file-samples/main.exs at main · phoenixframework/phoenix_live_view · GitHub) that reproduces the unresponsive behavior you’re seeing and open up an issue in the repo. It is definitely not supposed to happen under normal circumstances!

zachdaniel

zachdaniel

Creator of Ash

https://github.com/wojtekmach/mix_install_examples/blob/main/ash.exs

You can combine this single file Ash app with that single file Phoenix app.

zac

zac

Thanks @steffend & @zachdaniel … will try to get you something this weekend, or (if my repro reveals the root cause) at least post my mistakes! :smiley:

Where Next?

Popular in Questions Top

rms.mrcs
Hi, I need to transform a list of numbers into a map where the keys are the indexes and the values are the original values of the list. ...
New
vegabook
I’m brand new to Phoenix and I have stripped one of the demo applications to the bone. I just want to get an svg up on the screen. Here i...
New
vonH
In asking this question I am more interested about the expressiveness of the language itself and less concerned about the availability of...
New
Emily
I have VueJS GUIs with the project generated using Webpack. I have Elixir modules that will need to be used by the VueJS GUIs. I forese...
New
shijith.k
I am trying to start a new phoenix project with elixir 1.9, but mix phx.new does not work. It says that ** (Mix) The task "phx.new" could...
New
siddhant3030
Hi, I have to write a raw query for one of my project. But till now I have used ecto queries and don’t have much experience writing raw ...
New
svb
Hi! Currently I want to submit a form by pressing the Enter key. However, since my input field is of type “textarea” this is just adds a...
New

Other popular topics Top

vertexbuffer
Hello, can anybody help here..? I have a list of players and I what to delete an element, but every for loop the list is reverting to ori...
New
grych
Hi folks, Few months ago I have announced the proof-of-concept of the library to manipulate the browsers DOM objects directly from Elixi...
639 54006 488
New
Qqwy
Original source of discussion: This topic on the Pragmatic Programmers’ Functional Web Development with Elixir, OTP, and Phoenix forum. ...
New
JakeBecker
TL;DR: I’ve just released an implementation of Microsoft’s IDE-independent Language Server Protocol for Elixir. It adds language support ...
1144 54921 245
New
gshaw
What is the idiomatic way of matching for not nil in Elixir? E.g., First way: defp halt_if_not_signed_in(conn, signed_in_account) when...
New
SoCreat
i’m a new one to elixir which editor can i use vs code? or atom? Thanks! :smiley:
New

We're in Beta

About us Mission Statement