vfsoraki
In mount/3 callback of a LiveView module, you get session as the second parameter. It works fine, until you use live_redirect/push_redirect to mount another LiveView.
In this case, what is the session passed to second one? The same as original?
Is there a way to change it, without some hacky thing?
I currently did it by using JS to append some signed query string to my url and reload the page, and a plug that reads that signed string and sets appropriate session values, but this feels kind of hacky.
My current use case is user settings page. User changes some settings, then hits save, then goes to another page. User settings is saved in database, but session data is still old, so when new LiveViews are mounted they still see the old setting.
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
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
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
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 10 to 1- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
vfsoraki
Nice solutions were provided at the end of that topic, but they seem kind of hacky as my solution. Thanks!
wanton7
Googled a bit about this issue and came across this thread that might help you How to manage session state with live view
vfsoraki
I know, so there is no way to update session before
live_redirect.You either should refresh data in your
mountyourself (using id or whatever) or do a full refresh for plugs to run.derek-zhou
What do you mean by a better way? In plain HTTP you read it every time in your plug. In live_redirect your plug did not run so you would need to read it yourself in mount.
vfsoraki
No, session id will not change when it’s modified.
Consider session has
userkey which has the data for current user. I can read this usingdef mount(_, %{"user" => user}, socket)inLiveView, but when I change user in anyway, there is no way to update session, presumably because there is noconn.EDIT: I mean without a full refresh of course, like what
live_redirect/push_redirectdoes.Although one might say that session id is stored in a cookie, and that can be read by
LiveViewand it can also be modified then, but I think there is no way to do it right now.I can reload my user in every
LiveViewlike:But I think there may be a better way.
derek-zhou
Presumably the session id will not change because the user changing their settings. You can just load whatever stuff from the database at the mount time of the liveview, right?
vfsoraki
I do have sessions working fine in normal HTTP requests. It works fine, and my session store also works fine.
LiveViewalso gets the first session correctly.Yes, only session id is saved in a cookie, and session data is stored in database.
I just implemented a store using Plug.Session.Store — Plug v1.20.2. Thats all, nothing tricky or fancy.
Maybe I should’ve reworded my question to something like “How to modify session when using LiveView, without refreshing the page?”
wanton7
How do match session to database values? I mean you probably still have a cookie that has a session id right? Maybe that cookie isn’t created?
vfsoraki
That’s something I failed to mention, though I don’t think will matter.
I’m not using cookies for session storage. I’m using a custom implementation that uses database for session storage. It’s an implementation for
Plug.Session, so I don’t think it should matter what is my session storage.wanton7
I might be wrong here because of my limited usage of LiveView. But if session is same as Phoenix session my understanding is that default implementation uses a cookie to save session values. Because LiveView uses Websocket it can’t create a cookie for browser. You likely have to look for alternative to session cookie implementation.