RyanS

RyanS

Making HTML disappear on assign change

I’m building a chat application, and would like to have a typing indicator (like a bouncing ...) appear when I’m waiting on a response, and then disappear when the response appears.

Currently I have the following in my template. When @typing is set to true, the typing indicator appears just like it should. But when @typing is set to false (and I’ve confirmed it’s getting set to false with a {typing} in the template), the indicator stays.

Lots of iterations and attempts with ChatGPT have gotten me nowhere, so I come to you experts. How do I make the contents of the if @typing do section disappear once @typing is false?

    <div
    id="messages"
    phx-update="stream"
    class="space-y-4 relative w-full p-6 overflow-y-auto scroll-smooth h-[30rem]"
    phx-hook="ScrollToBottom"
  >
    <%= for {message_id, message} <- @streams.messages do %>
      <div id={message_id} class="flow-root">
        <div class={[
          "relative max-w-md mx-4 px-4 py-2 text-gray-700 rounded shadow bg-gray-100 border-gray-500 justify-start text-left",
          if(message.actor == "user",
            do: "bg-lime-100 justify-end float-right text-right",
            else: "bg-gray-400 float-left"
          )
        ]}>
          <span class="block">{message.content}</span>
        </div>
      </div>
    <% end %>

    <%= if @typing do %>
      <div id="typing-indicator" class="flex clear-both items-center pt-8 justify-left">
        <div class="typing-indicator">
          <span></span>
          <span></span>
          <span></span>
        </div>
      </div>
    <% end %>

    <div class="float-left clear-both" id="messages-end"></div>
  </div>

Marked As Solved

cmo

cmo

I feel like that should work. Is @typing coming through as an atom (i.e. true/false) or a string?

This is more efficient:


      <div id="typing-indicator" class="flex clear-both items-center pt-8 justify-left data-[typing=false]:hidden" data-typing={Atom.to_string(@typing)}>
        <div class="typing-indicator">
          <span></span>
          <span></span>
          <span></span>
        </div>
      </div>
    <% end %>

Also Liked

steffend

steffend

Phoenix Core Team

This is actually a limitation of streams: if you render a non-stream item, that is any element that is not part of the list of items passed to stream/4 with a corresponding DOM ID, inside a stream container, such an item will never be removed. See also Phoenix.LiveView — Phoenix LiveView v1.2.5

Where Next?

Popular in Questions Top

aadeshere1
I have a another noob question about loop. Since elixir is immutable, while loop is not directly possible. total = 10 while total != 0 ...
New
Tee
can someone please explain to me how Enum.reduce works with maps
New
fireproofsocks
I’m working on defining a simple Ecto schema for a table (in PostGres), but I don’t see where I can define a column as NOT NULL. Conside...
New
JulienCorb
I am trying to implement my new.html.eex file to create new posts on my website. new.html.eex: &lt;h1&gt;Create Post&lt;/h1&gt; &lt;%= ...
New
Lily
In templates/appointment/index.html.eex: &lt;%= for appointment &lt;- @appointments do %&gt; &lt;tr&gt; &lt;td&gt;&lt;%= appoi...
New
baxterw3b
Hi guys, i’m new in the Elixir world, and i have to say, that i love it! i’m having some problem to understand anonymous functions with ...
New
vonH
When I run the Plug and I recompile I wind up having to use Ctrl C to quit iex and start again. Witht the help of rlwrap I can use the cu...
New
itssasanka
Hi all, Trying to get some more clarity over utc_datetime and naive_datetime for Ecto: The documentation above suggests that while ...
New
bsollish-terakeet
Credo is smart enough to check for (something like) this: assert length(the_list) == 0 with this response: Checking if an enum is empt...
New
srinivasu
How to handle excepions in elixir? Suppose i have A, B, C ,D, E modules. and each module has get() function. A.get() method will call t...
New

Other popular topics Top

marius95
Hello everyone, I try to use an Javascript Event Handler in my root.html.leex file. Therefore I created a function in the app.js file: ...
New
9mm
I am constructing a JSON object (map) and I need to conditionally set a field. I’m trying to write proper elixir-way code… and I’m at a l...
New
Harrisonl
We have an ECS cluster with 4 services, where each task joins a single cluster, via discovery ECS discovery service. Currently when I de...
New
vonH
When I run the Plug and I recompile I wind up having to use Ctrl C to quit iex and start again. Witht the help of rlwrap I can use the cu...
New
gausby
I asked this very same question on twitter and got some interesting feedback, but I thought it would be a good question to ask here as we...
1207 39297 209
New
bsollish-terakeet
Credo is smart enough to check for (something like) this: assert length(the_list) == 0 with this response: Checking if an enum is empt...
New
axelson
This post is a wiki (feel free to hit the edit button near the bottom right of this post to add your own changes!) This post collects co...
239 47930 226
New
WestKeys
Currently suffering from paralysis by [HTTP client] analysis. This is rather unusual in Elixirland as there tends to be consensus on the ...
New
PeterCarter
There are pre-rolled solutions for other frameworks that do work. However, Phoenix does not seem to have these. Have people had good expe...
New
jononomo
For some reason my phoenix channels are working for me in my local dev environment, but as soon as I deploy via Docker, I get a 403 error...
New

We're in Beta

About us Mission Statement