DOKL57
Hello! I stuck with the display flash at my LiveView template. And whatever I do, I don’t see the message on the page. I have two fields and handle_event. The content of the handle event isn’t important, but it’s important to understand that if I write an IO.input in it, I get a message in the console. But if I try to put_flash, nothing will happen
def handle_event("click", %{"content" => params}, socket) do
IO.inspect("test") # I see "test" in console
put_flash(socket, :error, "Error!") # I don't see flash on page
{:noreply, socket}
end
I also tried to write code like this:
def handle_event("click", %{"content" => params}, socket) do
IO.inspect("test") # I see "test" in console
# I don't see flash on page
{:noreply, socket |> put_flash(socket, :error, "Error!") }
end
and nothing happens.
Why don’t see flashes on the page? Could this be because tailwind and alphine.js were installed?
Trending in Questions
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
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
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
Using Phoenix.LiveView.TagEngine as an EEx.Engine is deprecated!
To compile HEEx, use Phoenix.LiveView.TagEngine.compile/2 instead.
Sta...
New
Before I dive in myself, did anyone successfully sprinkle Hologram into their existing LiveView app?
Looking for hints regarding:
Addi...
New
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
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
Other Trending Topics
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
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
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
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
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
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
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
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #phoenix_html
- #iex
- #graphql
- #genstage
- #ai
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #hex
- #performance










First 10 of 12 Posts
moogle19
Hi,
since Elixir variables are immutable the
put_flash/3in your first example doesn’t change your socket, but returns a new socket which you have to use.In the second example you have to remove the
socketfrom theput_flash. The pipe (|>) calls the next function with the return value of the previous one as first parameter automatically.Your
socket |> put_flash(socket, :error, "Error!")is the same asput_flash(socket, socket, :error, "Error!"), but you only want it once inside the call.You could use either:
or
DOKL57
Thanks for your answer! I changed code to
but still got nothing. I’m inclined to believe that the display error is due to the tailwind css setup.
moogle19
Normally the displaying of the flashes is handled by the css.
In a default phoenix project there is something like:
and the flash inside the live template is defined like this:
Did you make changes to either of these?
DOKL57
Nope. My live.html.heex here:
And app.css contains:
moogle19
Hmm, strange.
Do you have
:fetch_live_flashin the pipeline in your router?Sebb
you have to use a layout in your liveview like
see: Live layouts — Phoenix LiveView v1.2.5
scoop
As a follow up to a question I asked earlier on the forum regarding implementing functions to be invoked from the templates.
In this case, one would perhaps use
Phoenix.LiveView.JSto compose several JS commands to extend the generated flashes. I’m thinking of Chris McChord’s demo for the release of LiveView 0.17.Where would such code reside?
chrisdel101
EDIT: SOLVED I tried this and it WORKED, i.e. calling inside
handle_event. Delgating to another functionsendcaused it to fail. I wasn’t sending the socket back tohandle_eventproperly (I guess)I have this problem too. I’ve tried all the suggestions above.
Notes:
default alert html is from
live.html(not app.html.heex) as theclass=XXXXXXXXXXXis on the page. This happens even if I remove the layout definitionuse Phoenix.LiveView, layout...non-live views have the
app.html.heexflash layout as expectedThe flash message does not display, and the message text is not injected
The flash is appended to the socket as expected. So seems problem is that socket data is not making the html changes to the page.
This is a rough example of my code setup.
index.ex
live.html (layout called above)
router
PrincetonPoh
Hi @DOKL57, sorry but I don’t understand the solution at all. It’s too complicated. After pulling my beginner hairs out, I found the solution to be super simple!!!*.
You tried 2 methods in your original code. First:
^for this, the solution is simple. Do not return
{:noreply, socket}. Instead, you should return{:noreply, put_flash(socket, :error, "Error!")}. Here’s a working example:For your second approach here:
^the solution is mentioned above by moogle19. You’re piping the socket into the put_flash() which means you’re actually writing put_flash(socket, socket, :error, “Error!”). Hence the error.
From moogle19’s explanation that “Elixir variables are immutable and the put_flash returns a new socket”, I looked again at what my function was returning and so found the solution to the bug in your first approach.
manicar2093
Hi!. I don’t know if this can help. I did have the same problem but in a LiveComponent Form. I put_flash a message but it wasn’t displayed. I noticed LiveComponent does not use <.flash_group flash={@flash} /> in layout but if you add this in your LiveComponent will work
Its kind of weird. I thougth layout component would be used