theAntimon
Hey people.
I’m trying to make my way through this article
https://littlelines.com/blog/2020/07/06/building-a-video-chat-app-in-phoenix-liveview
I’m not very experienced with Phoenix and LiveView I have to say. Just finding my way into the web topic. Anyway.. Since this article is already some days old I need to change a lot to make it work with today’s phoenix. But I got stuck pretty early. The form to make a new room was based on ~L and I have to move it into the whole ~H world. This is the render/1 function I came up with:
@impl true
def render(assigns) do
~H"""
<h1>Create a New Room</h1>
<.form :let={f} for={@changeset} phx-change="validate" phx-submit="add_match_result">
<.input field={{f, :title}} name="title" type="text" label="title" value={nil} />
<.input field={{f, :slug}} name="slug" type="text" label="slug" value={nil} />
<.button phx-disable-with="Saving...">Save</.button>
</.form>
"""
end
I thought it is pretty straight forward and I expected a callback to handle_event/3. But this is not happening. Instead I get an error inside my browser telling me
no route found for POST /room/new (LittlechatWeb.Router)
after I clicked the save button. As far as I understood liveView a POST request is the wrong thing to happen. But what is going wrong here?
This is the maybe important part of my router.ex if that helps:
scope "/room" do
live "/new", LittlechatWeb.Room.NewLive, :new
live "/:slug", LittlechatWeb.Room.ShowLive, :show
end
Trending in Questions
Other Trending Topics
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 9- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
caleb-bb
Can we see the event handler for
add_match_result? Are you sure it’s not being called?Generally, if a POST request is being sent, Liveview has failed somehow. Have you checked your js console in-browser as well?
theAntimon
Oh sorry, that code snippet was wrong (there was a leftover from some other try). that is actually my render/1 function. it’s the same as above, but with the right phx-submit string.
my event handler is currently only a function which prints me a hint that it has been called:
well.. and I don’t see that hint in the terminal…
theAntimon
oh yea and the javascript console in my browser also says not very much helpful things:
arcanemachine
I strongly advise you to bail on that tutorial and try to find something a little newer. LiveView changes fast (less so as time goes on) and old content is likely to lead you down blind alleys. Here a couple good resources I found helpful when I was starting:
https://github.com/dwyl/phoenix-liveview-counter-tutorial
Also the GitHub account from the second link has a couple other good repos to learn LiveView concepts. Some of their implementations are a bit off (e.g. their Presence implementation was kinda half-baked IMO) but at least the code will compile.
Now to justify my initial position with some aimless ranting (I’d say I’m in the ‘advanced beginner’ skill level for Phoenix/LiveView). Yes, the code you posted should not result in any POST requests. If you look at the rendered HTML in your DevTools, you will probably find that the form has
method="POST"in it (not sure why or how) because I believe that by default, a basic form should render a GET request. So that’s all weird.If you were to create a POST endpoint in your router, it would look like this:
post "/create", YourController, :createOf course, you didn’t, and since you used
phx-submitin your<.form>component, that should mean that no POST request should be emitted at all. The Phoenix LiveView JS should intercept the form’ssubmitevent and pass the event data to your Elixir code through the websocket instead of doing an HTTP POST request. But it’s not. Maybe try using the<.simple_form>component that’s part of the newer Phoenix function components? That’s the only thing I can think of off the top of my head. Perhaps the older<.form>Phoenix.HTML component may not accept thephx-submitattribute… just a guess. Check the HTML in your browser to see if thephx-submitattribute actually shows up in your<form>element. That would be my suspicion.But yeah, since the browser is doing a POST request, I’m 99% sure that means that it’s not doing the websocket request, which is why you’re not seeing anything in the Elixir terminal.
TLDR; I think the
<form>element in your HTML (in the browser) doesn’t actually have thephx-submitattribute and it may be because<.form>isn’t passing the attribute through. Either way, I strongly recommend finding a newer tutorial to work with.theAntimon
Thanke you for your answer. Your are right, an old article like that is not a good starting point for liveView. In general I’m working with the book from Tate and DeBenedetto. I will definitely check out the repositories you mentioned. But this “Build a Video Chat App”-article is very interesting for me right now since it covers a lot I want to learn about (i.e. WebRTC). You also nailed it with your assumption the html on my browser has the method set to “post”. But it does have the phx-submit attribute…
hm… I will try it with the <.simple_form> next. But for my feeling I’m trying to do a very basic thing, right? having a form and want to handle the event for the button-clicking…
arcanemachine
Here’s a super basic form that should help to do some basic sanity testing. I think it should work:
If you need some more examples to work with, try running a Phoenix generator (do a git commit first or create a new project, it puts a lot of files in a lot of places):
mix phx.gen.live YourContext YourModel your_context name:string some_other_value:string user_id:references:usersThis is a good way to get up-to-date “canonical” implentations of LiveView stuff.
kigila
Any solution guys?
My forms was working just fine until I added some schemaless changeset?
That was enought for me to start seeing this same very issue. phx-validate is not being triggered and phx-submit is calling post http method.
Where do i go from here guys?
kigila
I found the issue. I have soime javascript in my app.js which were messing up with my DOM. So guys, look at your javascript and do some testing. desable some and see what happen. hope this helps
walker
I also encountered this problem, this problem occurs because of the liveview client (app.js) is not returned to the browser. solved it by adding pipe_through. as follows.