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
I having some trouble figuring out if I have set myself too strict of standards for my production server. Currently I can handle 75% of r...
New
Hello,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
Hi everyone,
I am toying with the idea of building a “match maker” for giving personal help to people that wants to start coding.
I sta...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
I recently noticed that Elixir’s Logger defaults its primary log level to :debug when no :logger, :level application configuration is pre...
New
I’m new to elixir and just tried to install the elixirLS extension for VScode(ium) and it is throwing some errors that I would like help ...
New
Other Trending Topics
Edit: 2026 May 15 - This post is archived.
Mob is alive!!
Main docs: mob v0.7.11 — Documentation
A bit of explanation for the slightly c...
New
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
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
New
A little off-topic, but I feel like people here have a good head on their shoulders.
I used to be quite good at making software. Was luc...
New
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
- #ai
- #elixirconf-us
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #elixirconf-eu
- #api
- #forms
- #metaprogramming
- #hex










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!