getGlobalState loses sync with useGlobalState after 0.17
Slessi opened this issue · 8 comments
After updating to 0.16
-> 0.17
, getGlobalState
returns the old state value after a change. useGlobalState
seems fine
Thanks for reporting. I will take a look. It can be tough.
I think I get it now. 8565e67
You are likely to getGlobalState
in callback or where you update the value.
Yeah, there's a delay. In that sense, v0.17 has a breaking change.
Would you tell me your use case? I'd like to see if/how we can solve or mitigate it.
@dai-shi has been trimmed down a bit, but basically:
useGlobalState
updates due to a changeAppLayout
is loadeduseQuery
hook runs but the client still has old value in state- API Error
const authMiddleware = new ApolloLink((operation, forward) => {
// This sets the headers for my API queries
operation.setContext({
headers: getAuthHeaders(getGlobalState('authUser')),
});
if (!forward) {
return null;
}
return forward(operation);
});
// This is the client used by queries, with headers
const client = new ApolloClient({ link: ApolloLink.from([ authMiddleware ]) });
const LayoutSwitcher = () => {
const [authUser] = useGlobalState('authUser');
// This decides what view to render based on if im authenticated or not
return authUser !== null ? <AppLayout /> : <AuthLayout />;
};
const AppLayout = () => {
// This uses apollo client, and query requires the authentication it provides
// However, I am thrown 401 Unauthorized by API (in 0.17 only)
const { data } = useQuery(gql`some query`);
return <div>stuff</div>;
};
Thanks! I totally understand how this is happening. Please give me some time for this. This is tricky...
@Slessi So, here's bad news for your use case.
First of all, it's all fine with React Sync Mode and v0.16.
v0.17 is for React Concurrent Mode. #31
state branching is a behavior in CM, where React renders a component tree concurrently.
With state branching, the state value will not be fixed until React committed it.
Now, I can only think of two options (apart from using v0.16) for your use case.
- render AppLayout after the state value is committed.
- do not use state value for authMiddleware. (use a variable outside React as
client
is so.)
The first option doesn't sound nice, because it's against CM and the code will be hacky.
The second option is regrettable, because it means this lib can't help such use cases.
I wonder how Apollo Client will deal with CM, but I don't think it will accept apollo link config from state. So, it's probably the right way to store auth information outside React. Not sure, will see.
I will keep think about any workaround to bridge this gap.
It might be interesting to have a function that returns a promise which resolves the committed value. (But, it doesn't work nicely for your use case. It's like option 1 unessl useQuery
supports CM.)
Hope it explains to some extent. Questions are welcome.