tubedude

tubedude OP

Hi everyone,

I’m working on a Phoenix Live View application where I wanted to achieve client-side navigation triggered by a user’s selection in a select element. The user selects an option, and the application navigates to the corresponding path without a full page reload.

Initially, I explored using phx-click on each option, but it did not generate any event. Moving to the select element itself, I had trouble accessing the selected value.

My current approach utilizes phx-change to trigger a custom event named "live_view_navigate". Within the event listener, I access the selected value from the event object’s target.value. And trigger a JS.patch via liveview.execJS.

Here’s the interesting part:

in app.js

window.addEventListener("live_view_navigate", event => {
  const path = event.target.value;
  const encodedJS = '[["patch",{"replace":false,"href":"' + path + '"}]]';
  liveSocket.execJS(event.target, encodedJS)
});

And in the html:

<select id="current-tab" name="current-tab" phx-change={JS.dispatch("live_view_navigate")} >
  <%= for option <- @options do %>
    <option value={option.path} selected={option[:current]}><%= option.label 
  </option>
  <% end %>
</select>

This code constructs a JavaScript array representing a patch operation. It then uses liveSocket.execJS to execute this patch directly on the select element, achieving navigation without a server roundtrip.

My question:

Is this the recommended approach for achieving client-side navigation based on a select element in Phoenix Live View? Is there a cleaner or more efficient way to accomplish this functionality?

Thanks in advance for your insights!

First 2 of 2 Posts Switch mode

benwilson512

benwilson512

Author of Craft GraphQL APIs in Elixir with Absinthe

Did you try a phx-change on the form containing the select?

tubedude

tubedude OP

Well, initially there was no <form> tag as this is a UI element to replace navigation tabs. And after I found the solution above, the form tag wasn’t really necessary. In fact, using phx-change on the form, or directly on the select would lead to the same problem, which was that I could not get the selected value in the phx-change in the JS.patch.

To be clear, Ben, the solution above is working. I’m just not sure I should got to pure JS just to get the value and send it back to JS.patch.

— 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
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
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
michallepicki
I am using Oban and occasionally, shortly after a deployment, a handful of jobs can fail because of dependency on other parts of the syst...
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
type1fool
I just stumbled on a newly redesigned elixir-lang.org. :tada: It looks like @Software_Mansion did the work, and I think it is generally a...
New

We're in Beta

About us Mission Statement