mensore
Out of curiosity, I updated my live_view from 0.19.5 to the current 0.20.0 and quickly realized that my patch on my <.link> is not re-rendering/updating my live view.
<.link
patch={
~p"/budgets?#{%{@options | sort_by: @sort_by, sort_order: next_sort_order(@options.sort_order)}}"
}
>
<%= render_slot(@inner_block) %>
<%= sort_indicator(@sort_by, @options) %>
</.link>
I quickly checked with IO.inspect inside my handle_params to see if my options (and my budgets) were changing, and they were.
here’s my handle_params
def handle_params(params, _uri, socket) do
current_user = socket.assigns.current_user
sort_by = valid_sort_by(params)
sort_order = valid_sort_order(params)
page = param_to_integer(params["page"], 1)
per_page = param_to_integer(params["per_page"], 36)
date = Date.utc_today()
year = param_to_integer(params["year"], date.year)
month = param_to_integer(params["month"], date.month)
options = %{
sort_by: sort_by,
sort_order: sort_order,
page: page,
per_page: per_page,
year: year,
month: month
}
budgets = Keihi.list_budgets(current_user, options)
# both options and budgets change per click of my <.link> tag
# IO.inspect(options, label: "options")
# IO.inspect(budgets, label: "budgets")
socket =
socket
|> stream(:budgets, budgets)
|> assign(:selected_budget, select_budget(budgets, param_to_integer(params["id"], 0)))
|> assign(:options, options)
{:noreply, socket}
end
I also tried to set the stream to reset likeso:
|> stream(:budgets, budgets, reset: true)
with no changes.
Any clues? Of course I can just stay on 0.19.5, but I’m wondering if I’m doing something wrong here.
Trending in Questions
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
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
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
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
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
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
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
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
- #elixirconf-us
- #ai
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #hex
- #security










Showing Posts 1 to 7- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
codeanpeace
Hmm, that’s odd it’s not re-rendering after re-streaming with
reset: true…Could you share more of the template, especially around where the stream is consumed?
mensore
Thanks for the reply.
here’s how I use the stream within my template:
not sure what else to look at/consider
codeanpeace
Take another look at the example below from the stream/4 docs and how it uses
songwithin the:forloop/comprehension.mensore
That was just my dumb mistake in copying. It doesn’t use the
@withbudget.mensore
Any clues??
here again the complete code:
checking budgets inside my handle_params, i can see that the budgets assign does change when I click on any one of my sort_links, but again it doesn’t re-render it on the client.
this works when I’m on liveview 0.19.5 however…
codeanpeace
It might be related to this:
https://github.com/phoenixframework/phoenix_live_view/issues/2826
mensore
seems to be the exact situation I faced. Thanks for the link!