smon
My live component is working as expected if I mount the live view using it directly (by accessing the corresponding route).
But when I navigate to the same live view from another one, the component only gets setup (mount/1 and update/2 are triggered), but none of the events fire. This happens also if I navigate away from the live view using the component and then back again.
{:phoenix, "~> 1.7.11"},
{:phoenix_ecto, "~> 4.5.1"},
{:phoenix_html, "~> 4.1.1"},
{:phoenix_live_reload, "~> 1.5", only: :dev},
{:phoenix_live_view, "~> 0.20.14"},
This is what the component looks like (maybe my hacky usage of forms and changeset is an issue?):
defmodule FieldPublicationWeb.PublicationLive.CommentsFormComponent do
alias Phoenix.HTML.Form
alias FieldPublication.Schemas.Translation
use FieldPublicationWeb, :live_component
def render(assigns) do
~H"""
<div>
<table class="w-full">
<thead>
<tr>
<th>Language</th>
<th>Text</th>
</tr>
</thead>
<tbody>
<%= for form <- @forms do %>
<.form
for={form}
id={"comment-#{form[:language].value}"}
phx-change="text_changed"
phx-target={@myself}
>
<tr>
<td>
<.input field={form[:language]} type="text" readonly />
</td>
<td>
<.input field={form[:text]} type="textarea" />
</td>
</tr>
</.form>
<% end %>
</tbody>
</table>
<%= if @changed do %>
<div
class="w-full text-center font-semibold font-mono"
phx-click="update_translations"
phx-target={@myself}
>
Set all
</div>
<% end %>
</div>
"""
end
def update(%{id: id, languages: language_options, translations: translations}, socket) do
forms =
Enum.map(language_options, fn lang_option ->
Enum.find(translations, fn %Translation{language: lang} ->
lang == lang_option
end)
|> case do
nil ->
%Translation{}
|> Translation.changeset(%{"language" => lang_option})
|> to_form()
%Translation{language: lang, text: text} ->
%Translation{}
|> Translation.changeset(%{"language" => lang, "text" => text})
|> to_form()
end
end)
{
:ok,
socket
|> assign(:id, id)
|> assign(:forms, forms)
|> assign(:changed, false)
}
end
def handle_event(
"text_changed",
%{"translation" => %{"language" => lang, "text" => text}},
%{assigns: %{forms: forms}} = socket
) do
forms =
Enum.map(forms, fn %Phoenix.HTML.Form{} = form ->
if Form.input_value(form, :language) == lang do
%Translation{}
|> Translation.changeset(%{"language" => lang, "text" => text})
|> to_form()
else
form
end
end)
{
:noreply,
socket
|> assign(:forms, forms)
|> assign(:changed, true)
}
end
def handle_event("update_translations", _params, socket) do
changesets =
Enum.map(socket.assigns.forms, fn form ->
Translation.changeset(%Translation{}, %{
"language" => Form.input_value(form, :language),
"text" => Form.input_value(form, :text)
})
end)
send(
self(),
{:update_translations, socket.assigns.id, changesets}
)
{:noreply, assign(socket, :changed, false)}
end
end
In my browser console I get the following log when using navigate:
phx-(..) destroyed: the child has been removed from the parent - undefined
Trending in Questions
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
Hello,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
With AI doing more of the implementation work, I’ve been wondering how much coding I should deliberately keep doing myself.
My main conc...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixirconf-us
- #ai
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 1- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
smon
I opted to remove the live component and used
inputs_for/1directly in the parent live view.Still would be nice to understand why this behaviour occurs.