venomnert
Context:
I am trying to setup a simple liveview form.
Help:
When I visit the form /client/new and submit an entry, phx_submit event doesn’t get triggered. It instead makes a post request to /client/new which doesn’t exist.
lib/contact_us_web/live/client_live/index.ex
defmodule ContactUsWeb.ClientLive.Index do
use Phoenix.LiveView
alias ContactUsWeb.Router.Helpers, as: Routes
alias ContactUsWeb.ClientView
alias ContactUs.Accounts
alias ContactUs.Accounts.Client
def mount(_session, socket) do
changeset = Accounts.change_client(%Client{})
{:ok, assign(socket, :changeset, changeset)}
end
def render(assigns) do
Phoenix.View.render(ClientView, "form.html", assigns)
end
def handle_event("save", args, socket) do
IO.inspect(args, label: "VALDIATE DATA")
{:noreply, socket}
end
end
lib/contact_us_web/templates/client/form.html.leex
<%= form_for @changeset, "#", [phx_submit: "save"], fn f -> %>
<%= label f, :first_name %>
<%= text_input f, :first_name %>
<%= error_tag f, :first_name %>
<%= label f, :last_name %>
<%= text_input f, :last_name %>
<%= error_tag f, :last_name %>
<%= label f, :email_address %>
<%= text_input f, :email_address %>
<%= error_tag f, :email_address %>
<%= label f, :phone_number %>
<%= text_input f, :phone_number %>
<%= error_tag f, :phone_number %>
<%= label f, :company %>
<%= text_input f, :company %>
<%= error_tag f, :company %>
<%= label f, :service %>
<%= text_input f, :service %>
<%= error_tag f, :service %>
<div>
<%= submit "Save", phx_disable_with: "Saving..." %>
</div>
<% end %>
I made sure everything is setup properly. However, I’m unable to determine what the issue is.
Trending in Questions
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
New
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
I have what I’ve heard referred to as a “lookup table” in my database. This is a way of assigning codes to common values. One common lo...
New
What approach to take when sending live updates to “random” users Hi! I have a question, I have a little chat app, and when I create a DM...
New
Anyone here using Honeybadger?
My Honeybadger account is being overwhelmed with noise from some bots. Seeing a lot of
Bandit.HTTPError...
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
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
Other Trending Topics
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
There are three potential reasons for members of this forum to have a look at https://vutuv.de
You are tired or annoyed of LinkedIn.
Yo...
New
Aludel - LLM Evaluation Workbench
Aludel is an embeddable Phoenix LiveView dashboard for evaluating and comparing LLM prompts across mult...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #blog-post
- #elixir-ls
- #ai
- #elixirconf-us
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
mindok
Hi @venomnert,
Have you verified that your liveview is mounting correctly? Put an
IO.inspectin themount(you should see the message twice - once for the initial render and once when the websocket connection is made) andrenderfunctions. If it itsn’t, then double-check your router setup.Also, do you have any other liveview functionality behaving properly in the application? You may have issues with javascript library versions etc…
venomnert
Hey @mindok,
I have tried adding ‘connect?(socket)’ inside of my mount function and it always returns false
mindok
Just heading out so answer will be brief… try a different browser, and recheck installation and JavaScript wire up instructions…
venomnert
Hey @mindok,
I have tried the following:
deps/phoenix_live_view/guides/introduction/installation.mdsocket "/live", Phoenix.LiveView.Socket, websocket: [connect_info: [session: @session_options]]causes some error, so i have ignored.I’m still getting the same results.
BTW I do want to say thank you for helping me out.
mindok
OK - that bit that is causing you errors is important - it is how the browser and liveview server communicate.
What if you just try
socket "/live", Phoenix.LiveView.Socket, websocket: trueor even just
socket "/live", Phoenix.LiveView.Socketas per https://hexdocs.pm/phoenix_live_view/installation.html#content
If those don’t work, post the error messages
venomnert
Hey @mindok I have tried what you have suggested, but still no luck. BTW here it code I used to check connection status:
mindok
Ok, a few more things:
IO.inspectcall? (i.e. do you get one false, and then one true result?)e.g.
venomnert
Are there any error messages in the console running the application?
A: No error message
What are the results from your
IO.inspectcall? (i.e. do you get one false, and then one true result?)A: Here is the log I get when I do inspect
A: Yep, copied from the installation guide
A: No console log error.
What i’m thinking of doing next is a fresh install of liveview.
mindok
Yep - something isn’t right. You should see your
connected?return true. See if you can find a working liveview sample project on github to clone from - the master liveview sample project is a bit out of date with versions, but this one uses the latest version: GitHub - pthompson/live_component_examples · GitHubmindok
One more thing…
Check that your app.js is getting executed. Put something like
console.log(“hello it’s working”);just before the liveview connection code
Open your page and check the browser console for your message. If you don’t see it you know what you need to fix…