Provide XState with Initial Values through Jotai Provider

Daishi Kato
InstructorDaishi Kato
Share this video with your friends

Social Share Links

Send Tweet
Published 2 years ago
Updated 2 years ago

We currently have a machine that displays a circle of green. When you click it, it will cycle through green, yellow, and Red.

What if you wanted to pass XState initial values from Jotai, you'll need to use the initialValues prop on Jotai Provider and pass a list of pair (atom and value) to it.

To do this we'll refactor the creation of the lightMachine to be a function that accepts an atom as an initial value.

One note to be aware of is that this initial value will only be set when the XState machines instantiate.

Daishi Kato: [0:01] So far, we use createMachine from the xstate library and create a machine statically. Using lightMachine and lightAtom, we build the light component. What we build is a tiny app that displays circles in green, yellow, and red colors. The initial color is green, and if you click the circle, the color changes.

[0:25] What if we want to change the initial color of a circle? Currently, lightMachine defines initial state as green. Let's change this by making it a function. createLightMachine() is a function that takes an initial value as an argument.

[0:43] It then creates a machine with the initial value and returns the created machine. Next, we create a new atom that holds the initial value. initialLightAtom adds an atom for it, and its initial value is green. Finally, we modify lightAtom to use createLightMachine and initialLightAtom that we just defined. Notice, we have the get function in atom with machine.

[1:12] This works just as before. The initial color is green, and it changes with clicking. How can we change the initial value? We use Jotai Provider's initialValue property. initialValues are a list of pairs of atom and its value. In our case, we specify initialLightAtom and its color value.

[1:39] Let's specify yellow for the one and red for the other. You notice double [inaudible] to represent a list of pairs. If you rewrote the app, the circles are not green, but yellow and red. Clicking them changes colors obviously. It works totally as expected.

[2:02] There's one thing to note about this usage. As the name implies, initialLightAtom only works for the initial value. Let's do a small experiment. Create a component called, setInShowLight.

[2:18] It has a button, and clicking it changes the initialLightAtom value to red. We place this component under the first provider. Now, even if we click the button, nothing will change. This is because by the time the button is displayed, the XState machines are already initialized.

[2:42] Let's recap what we did. We defined an atom that holds an initial value. We created a function to create a machine, instead of creating a machine directly. The light atom takes a function to create a machine. Finally, we provide the initial value using Jotai's Provider. Provider is a general feature in Jotai and not specific to XState. It allows to initialize atom values when it first renders.

egghead
egghead
~ 36 minutes ago

Member comments are a way for members to communicate, interact, and ask questions about a lesson.

The instructor or someone from the community might respond to your question Here are a few basic guidelines to commenting on egghead.io

Be on-Topic

Comments are for discussing a lesson. If you're having a general issue with the website functionality, please contact us at support@egghead.io.

Avoid meta-discussion

  • This was great!
  • This was horrible!
  • I didn't like this because it didn't match my skill level.
  • +1 It will likely be deleted as spam.

Code Problems?

Should be accompanied by code! Codesandbox or Stackblitz provide a way to share code and discuss it in context

Details and Context

Vague question? Vague answer. Any details and context you can provide will lure more interesting answers!

Markdown supported.
Become a member to join the discussionEnroll Today