Persist issue/rehydrate #2909
Unanswered
asadbekabduvoitov-nordra
asked this question in
Q&A
Replies: 1 comment 8 replies
-
@asadbekabduvoitov-nordra you could use Ref: https://developer.mozilla.org/en-US/docs/Web/API/Window/storage_event |
Beta Was this translation helpful? Give feedback.
8 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello, guys. Just wanted to open a discussion for discussing a topic, I don't necessary want to say it as issue, because it's more of a use-case. So I will briefly describe what I'm building and after that I will post codes as well.
We're building an application, where user can have multiple organizations. In app we have roles page, where users can open roles by clicking into the card, and once they click it will be opened in new tab (inside application). The tabs functionality is almost same as browser tabs, where you can close, switch between tabs. And Im using zustand persist to store in the sessionStorage with dynamic key. I have seen/read a few discussions about dynamic key and how to rehydrate them. But the problem is switching between organization happens a lot faster, no refresh or anything needed. And opened tab needs to be stored on sessionStorage with organization id attached.
This is how I was creating stores, but the problem is unless I refresh the page, it was not working even when I rehydrate with setting new name. Name was being set, but even with new name it was returning previous organization's tab records.
This use case not worked for me. Not sure why, but unless I refresh the page, the tabs where mixed up with previous one. And I detected one odd behaviour, where it worked only when storage existed with the given name. Other wise it was using previous organization records.
How I figured out:
This is how I figured out. By creating separate store for each organization. Just wanted to know that is this best practice or is there any way to optimize the way it's built.
Beta Was this translation helpful? Give feedback.
All reactions