vfsoraki

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.

Showing Posts 10 to 1

vfsoraki

vfsoraki OP

Nice solutions were provided at the end of that topic, but they seem kind of hacky as my solution. Thanks!

wanton7

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

vfsoraki OP

I know, so there is no way to update session before live_redirect.

You either should refresh data in your mount yourself (using id or whatever) or do a full refresh for plugs to run.

derek-zhou

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

vfsoraki OP

No, session id will not change when it’s modified.

Consider session has user key which has the data for current user. I can read this using def mount(_, %{"user" => user}, socket) in LiveView, but when I change user in anyway, there is no way to update session, presumably because there is no conn.

EDIT: I mean without a full refresh of course, like what live_redirect/push_redirect does.

Although one might say that session id is stored in a cookie, and that can be read by LiveView and 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 LiveView like:

def mount(_, %{"user" => %{id: user_id}}, socket) do
  {:ok, assign(socket, user: Users.get!(user_id))}
end

But I think there may be a better way.

derek-zhou

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

vfsoraki OP

I do have sessions working fine in normal HTTP requests. It works fine, and my session store also works fine. LiveView also 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

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

vfsoraki OP

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

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.

— All posts loaded —

Where Next? Top

Trending in Questions Top

RSP87
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
nseaSeb
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
brecabral
Documentation While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
RemyXRenard
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
velrest
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
samoloth
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
FlyingNoodle
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 Top

JesseHerrick
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
mudasobwa
I am happy to introduce the very α version of the new programming language compiled to BEAM. Welcome Cure. It has literally three kille...
New
marciok
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
mhanberg
Hi everyone! The first release candidate for the Expert language server project is now available! We’ve published a press release detai...
New
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Dmk
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

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews