You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
And the two components ComponenA and ComponentB and SS key myKey. Whenever user clicks on ComponentA value.a should be updated in SS and value.b should not be overridden. Actually useSessionStorage overrides the SS value depending on which component was clicked last. For example user cliked several times on both components, the SS value is:
What is the expected behavior?
The SS should be updated for the myKey. Say user clicked several times on both components then SS value should look something like:
The state is saved locally in the hook itself.
On each state update the SS itself is updated, but the default value is read from the session storage once on the initial render of the component that is using the hook.
So if one component updates its state, and by side-effect the SS, the other component won't get the new value.
The ways I can think to fix this is either for the hook to listen to the SS or a custom event fired on the SS update, or to keep the state in a app-wide context. I'm new to this library so I'm not sure if this is outside the scope of the complexity of this lib, it might be best to leave it with this behavior and add it to the documentation.
I'd be glad to get the feedback of the maintainer and create a PR to fix it.
What is the current behavior?
I have an object with the following signature:
And the two components
ComponenA
andComponentB
and SS keymyKey
. Whenever user clicks on ComponentAvalue.a
should be updated in SS andvalue.b
should not be overridden. ActuallyuseSessionStorage
overrides the SS value depending on which component was clicked last. For example user cliked several times on both components, the SS value is:CodeSanbox
What is the expected behavior?
The SS should be updated for the
myKey
. Say user clicked several times on both components then SS value should look something like:A little about versions:
react-use
: 17.5.1The text was updated successfully, but these errors were encountered: