coen.bakker
When I stream_insert/4 into an existing stream on a live view, it causes the scroll position to change.
For example, in this simply live view the “update” event causes the page to scroll to the top.
defmodule MyAppWeb.TempLive do
use MyAppWeb, :live_view
import ...
alias ...
def mount(_, _, socket) do
{:ok, stream(socket, :posts, get_post_feed())}
end
def render(assigns) do
~H"""
<div
id="stream"
phx-update="stream"
class="flex flex-col gap-10"
>
<%= for {dom_id, post} <- @streams.posts do %>
<div id={dom_id}>
<p><%= post.message %></p>
<button phx-click="update" phx-value-id={post.id}>Click</button>
</div>
<% end %>
</div>
"""
end
def handle_event("update", %{"id" => id}, socket) do
{:noreply, stream_insert(socket, :posts, %Post{id: id, message: "Updated message"})}
end
end
I looked around in the TodoTrek repo (GitHub - chrismccord/todo_trek · GitHub) to see if I’ve missed some client side hook for managing scroll position or something along those lines. But I didn’t find anything to explain why I get the scroll jumping while other seem to don’t.
Trending in Questions
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
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
Hello,
I’m developing a online persistent chat system (what’s app) like using elixir/dynamodb/aws for a mobile app(flutter).
The diffic...
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
I think I’ve found a small improvement I could contribute to <%= web_namespace %>.CoreComponents (installer/templates/phx_web/compo...
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
ICal is a library for interacting with iCalendar data. It parses iCalendars into typed Elixir structs via ICal.from_ics, and can prepare ...
New
Latest Phoenix Threads
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
- #elixir-ls
- #blog-post
- #ai
- #phoenix_html
- #elixirconf-us
- #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)
sodapopcan
Just to rule a few things out:
What version of LiveView are you using? There were some bugs with streams over the past few patch releases that could be causing this.
What does your update function look like? Does a post contain images that are getting written to
priv? When I had this issue it was because I was writing to a directory that was being picked up by Live Reload. I realize that isn’t a scroll position change but just asking in case.coen.bakker
I also upgrade to the latest version of LiveView (0.20.9) just now, to rule out that being the reason.
coen.bakker
I was on 0.20.3. Now on 0.20.9.
For example to one in the live view that I included. So the update is simply a new string value for one of the fields of a post.
sodapopcan
Ah ok, I thought you were omitting a call to a context function to brevity. hmmmmmmm not sure off the top of my head
coen.bakker
It was sort of…
In reality I would do something like:
{:noreply, stream_insert(socket, :posts, get_post_for_feed(id))}But in essence that’s very similar: replacing the whole post, with one field being updated to a new value.
coen.bakker
So it also happens with in this version (removing my own database fetch to make it fully transparent). Also, not using a layout (app.html.heex).
coen.bakker
It doesn’t happen on Firefox mobile for Android… At least not for the example I have tested.
sodapopcan
I tried your code and can’t reproduce it. What browser is it failing in for ? I’m using Chromium (Arc and I even dusted off Chrome to give it a try). I also tried in Safari.
coen.bakker
A whole host of them both on MacOS and Windows. Tried Safari, Chrome, Edge and FireFox.
But the fact that you cannot reproduce it helps. Tomorrow morning I’m going to try to reproduce it on a newly generate LiveView app.
Mysterious.
Maybe some setting/config in my app… Or client side hook…
sodapopcan
Very strange!
Is it actually scroll position changing or is it items getting resorted? It could be the version thing and you just need to clear your cache, though I imagine that has crossed your mind, I’m just grabbing at straws here!