why

why

Hello,

on a LiveView page, I have a form whose single text input gets cleared when I click on a separate, unrelated div that uses phx-click.

I would like the input not to be affected by the phx-click, if possible. Is there a way to accomplish this, or is this a limitation in LiveView?

I pasted my code below. Steps to reproduce:

  1. Type some text (one or two sentences) into the input (without submitting)
  2. Click on the “click me” text
  3. Input field is now cleared
  def render(assigns) do
    ~L"""

    Live Text: <%= @live_text%>

    <form phx-change="type_live" phx-submit="submit", placeholder="Type something...">
      <input type="text" name="q" value="<%= @query %>"/>
    </form>

    <div phx-click="test" phx-value-test="successfully clicked"><%= @test%></div>

    """
  end

  def mount(_params, _session, socket) do
    {:ok, assign(socket, query: nil, live_text: "", test: "click me")}
  end

  def handle_event("type_live", %{"q" => query}, socket)  do
    live_text = query
    {:noreply, assign(socket, live_text: live_text)}
  end

  def handle_event("submit", %{"q" => query}, socket) do
    {:noreply, assign(socket, query: query)}
  end

  def handle_event("test", %{"test" => test}, socket) do
    {:noreply, assign(socket, test: test)}
  end

First 8 of 8 Posts Switch mode

benwilson512

benwilson512

Author of Craft GraphQL APIs in Elixir with Absinthe

Hi @why you need to be capturing the form state via phx-change if there will be changes on the page. LiveView’s job is to render something based on the view state, and then make that rendered HTML happen on the client.

You are update the state on the server via phx-click, and so the live view re-renders with what it knows. It doesn’t know about the form state, so it clobbers it. The trick is to inform live view about the form state via phx-change.

why

why OP

Thanks @benwilson512.

I have phx-change="type_live" on the form, would that not be doing the trick to let LiveVIew know about the state of the form?

benwilson512

benwilson512

Author of Craft GraphQL APIs in Elixir with Absinthe

Oh sorry I missed that. Your issue is that the you’re binding type_live’s text to live_text but in the input type you do value="<%= @query %>". The assign used in the input should match the assign you’re storing the text in.

why

why OP

Cool, that fixed it! Thanks :slight_smile:

I now have:

def handle_event("type_live", %{"q" => query}, socket)  do
    live_text = query
    {:noreply, assign(socket, query: query, live_text: live_text)}
end

I think what threw me off is that it worked partially before. With each additional letter entered into the input (i.e. with each phx-change), and thus with each change of live_text in the assigns, LV successfully re-rendered the HTML in the place where @live_text is. So those re-renders worked without clearing the form, but the phx-click didn’t.

Any idea why it worked with phx-change, but not with phx-click?

benwilson512

benwilson512

Author of Craft GraphQL APIs in Elixir with Absinthe

I think this is because as you were typing, the text field had focus, and phoenix won’t overwrite a form field that is actively in focus and being typed in. Otherwise there would be race conditions between the text being entered and the server’s knowledge / re-rendering of the field being actively typed in. When you clicked on the div, the input lost focus and could be overwritten.

why

why OP

Ah, that makes a ton of sense, thanks!

Btw, the reason why I’m using the @live_text assign at all (rather than just @query) is that I wanted to be sure that phx-change isn’t somehow locally (via js) updating the value of @query. The data seemed to come back so incredibly quickly from the remote server that I wanted to be double sure… LV is pretty incredible…

benwilson512

benwilson512

Author of Craft GraphQL APIs in Elixir with Absinthe

Yeah it’s crazy stupid fast.

why

why OP

crazy stupid fast

:grinning:

— All posts loaded —

Where Next? Top

Trending in Questions Top

stjefim
Hello! Suppose you are building workflow (order / task / payment) processing system with the following requirements: Each workflow con...
New
jonnycharles
I’m in search of an Elixir library that offers PDF generation capabilities similar to Ruby’s Prawn. While there have been discussions abo...
New
spammy
I’m looking to build a personal workflow to quickly deploy web applications written in elixir/phoenix, for local consumption (ie not on t...
New
dli
Before I dive in myself, did anyone successfully sprinkle Hologram into their existing LiveView app? Looking for hints regarding: Addi...
New
roeland
Kia ora, We have been using elixir-google-api to connect to Google Drive. However, with the updates to Tesla due to CVEs this is now bro...
New
bottlenecked
Hi all, I wanted to ask how the community is dealing with post-release steps. Today we have Ecto migrations, which make sure that the db...
New
rahultumpala
Hello, I have an Elixir backend that implements a custom protocol over TCP. I want to load test the backend and assess the performance o...
New

Other Trending Topics Top

JesseHerrick
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Damirados
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge &amp; Solve. They are GUI (Emerge) and State management (S...
New
netoum
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
ausimian
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
juhalehtonen
There has been a thread to discuss the Stack Overflow Developer Survey on this forum every year since 2018, so here’s yet another one for...
New

We're in Beta

About us Mission Statement