Take a look into your future 🔮
I want to touch on how to set up apollo-link-state
to allow for support of multiple stores without interfering with one another.
In my last post we went over how to setup apollo-link-state
for basic use:
Storing Local State in React with apollo-link-state_Special thanks to Peggy Rayzis for all the awesome work and communication that has been going out around this product._medium.com
Now in this tutorial this is the moon we’re shooting for:
withClientState
to its own file.Lets Dive in! 🚀🌙
apollo-link-state
To kick this off I want to talk about the problem we are trying to solve.
It boils down to that CreateClientState
expects only one value for defaults
and one value for Mutations.resolvers
which is incompatible if you have more than 1 object you want to store.
This will get unruly fast
It’s incompatible because it forces us to keep the resolvers
and defaults
for multiple logically separate features in one place. OR if forces us to explicitly reference a resolver
/default
from a separate file every time we create one.
This is bad and in a medium to large app is a great way to make your logic hard to track.
Thankfully the solution to this is really easy! It involves the following:
CreateClientStore out of
our client.js file
Move the configuration of your client store to its own file to help highlight that this is a very specific and a very important piece in our application.
Our new client.js
should look like this:
@client
queries to their own fileBreak out the defaults
and resolvers
for a specific area of functionality into their own “store” files to help ensure as the application grows code is logically co-located.
Finally we use some helpers from lodash to merge the export of each store
file into one. This allows us to define resolvers
and defaults
in separate files and bring them back together during configuration.
Look at the _mergeGet_
function specifically to see how this occurs.
Now that we have the above infrastructure in place adding a second feature is just as easy as adding the 100th feature.
Lets test out this statement by adding a Freeform notes field to the application.
Nearly identical to the Todo Store above.
Import the new store into CreateClientStore.js
and add it to our STORES
.
Now that we have the store created and wired in it’s time to put it all to use.
Finally add our new component to our <App/>
container.
You should now be able to run the update demo and see our new note’s feature in action. Simple.
I wanted to put this out because I think this Apollo’s version of maintaining local state has some real potential and as a young project the more support it gets the more we should see if grow and thrive.
Part of supporting a project is learning how to use it and learning how to improve on it. I hope this helps do both!
Happy coding!
🧞 This is open source! you can find it here on Github
❤️ I only write about programming and remote work. If you follow me on Twitter I won’t waste your time.