4.6.4 • Published 2 months ago

@koordinates/xstate-tree v4.6.4

Weekly downloads
-
License
MIT
Repository
-
Last release
2 months ago

xstate-tree

xstate-tree is a React state management framework built using XState. It allows you to create a tree of XState machines and map them to a tree of React views representing them as a UI.

Overview

Each machine that forms the tree representing your UI has an associated set of selector, action, view functions, and "slots"

  • Selector functions are provided with the current context of the machine, a function to determine if it can handle a given event and a function to determine if it is in a given state, and expose the returned result to the view.
  • Action functions are provided with the send method bound to the machines interpreter and the result of calling the selector function
  • Slots are how children of the machine are exposed to the view. They can be either single slot, a single machine, or multi slot for when you have a list of actors.
  • View functions are React views provided with the output of the selector and action functions, a function to determine if the machine is in a given state, and the currently active slots

API

To assist in making xstate-tree easy to use with TypeScript there are "builder" functions for selectors, actions, views and the final XState tree machine itself. These functions primarily exist to type the arguments passed into the selector/action/view functions.

  • buildSelectors, first argument is the machine we are creating selectors for, second argument is the selector factory which receives the machines context as the first argument. It also memoizes the selector factory for better rendering performance
  • buildActions, first argument is the machine we are creating actions for, the second argument is the result of buildSelectors and the third argument is the actions factory which receives an XState send function and the result of calling the selectors factory. It also memoizes the selector factory for better rendering performance
  • buildView, first argument is the machine we are creating a view for, second argument is the selector factory, third argument is the actions factory, fourth argument is the array of slots and the fifth argument is the view function itself which gets supplied the selectors, actions, slots and inState method as props. It wraps the view in a React.memo
  • buildXStateTreeMachine takes the results of buildSelectors, buildActions, buildView and the list of slots and returns an xstate-tree compatible machine

Slots

Slots are how invoked/spawned children of the machine are supplied to the Machines view. The child machines get wrapped into a React component responsible for rendering the machine itself. Since the view is provided with these components it is responsible for determining where in the view output they show up. This leaves the view in complete control of where the child views are placed.

Slotted machines are determined based on the id of the invoked/spawned machine. There are two types of slots, single and multi. Single slots are for invoked machines, where there will only be a single machine per slot. Multi slots are for spawned machines where there are multiple children per slot, rendered as a group; think lists. There is a set of helper functions for creating slots which in turn can be used to get the id for the slot.

singleSlot accepts the name of the slot (must not end in s) as the first argument and returns an object with a method getId() that returns the id of the slot.
multiSlot accepts the name of the slot (must end in s) and returns an object with a method getId(id: string) that returns the id of the slot

You should always use the getId methods when invoking/spawning something into a slot. Each slot the machine has must be represented by a call to singleSlot or multiSlot and stored into an array of slots. These slots must be passed to the buildView and buildXStateTreeMachine functions.

Inter-machine communication

Communicating between multiple independent xstate machines is done via the broadcast function. Any event broadcast via this function is sent to every machine that has the event in its nextEvents array, so it won't get sent to machines that have no handler for the event.

To get access to the type information for these events in a machine listening for it, use the PickEvent type to extract the events you are interested in

ie PickEvent<"FOO" | "BAR"> will return {type: "FOO" } | { type: "BAR" } which can be added to your machines event union.

To provide the type information on what events are available you add them to the global XstateTreeEvents interface. This is done using declare global

declare global {
  interface XstateTreeEvents {
    BASIC: string;
    WITH_PAYLOAD: { a: "payload" }
  }
}

That adds two events to the system, a no payload event ({ type: "BASIC" }) and event with payload ({ type: "WITH_PAYLOAD"; a: "payload" }). These events will now be visible in the typings for broadcast and PickEvent. The property name is the type of the event and the type of the property is the payload of the event. If the event has no payload, use string.

These events can be added anywhere, either next to a component for component specific events or in a module for events that are for multiple machines. One thing that it is important to keep in mind is that these declare global declarations must be loaded by the .d.ts files when importing the component, otherwise the events will be missing. Which means

  1. If they are in their own file, say for a module level declaration, that file will need to be imported somewhere. Somewhere that using a component will trigger the import
  2. If they are tied to a component they need to be in the index.ts file that imports the view/selectors/actions etc and calls buildXstateTreeMachine. If they are in the file containing those functions the index.d.ts file will not end up importing them.

Storybook

It's relatively uncomplicated to display xstate-tree views directly in Storybook. Since the views are plain React components that accept selectors/actions/slots/inState as props you can just import the view and render it in a Story

There are a few utilities in xstate-tree to make this easier

buildViewProps

This is a builder function that accepts a view to provide typings and then an object containing actions/selector fields. With the typings it provides these fields are type safe and you can autocomplete them.

It returns the props object and extends it with an inState factory function, so you can destructure it for use in Stories. The inState function accepts a state string as an argument, and returns a function that returns true if the state supplied matches that. So you can easily render the view in a specific machine state in the Story

const { actions, selectors, inState } = buildViewProps(view, { actions: {], selectors: {} });

genericSlotsTestingDummy

This is a simple Proxy object that renders a containing the name of the slot whenever rendering a slot is attempted in the view. This will suffice as an argument for the slots prop in most views when rendering them in a Story

slotTestingDummyFactory

This is not relevant if using the render-view-component approach. But useful if you are planning on rendering the view using the xstate-tree machine itself, or testing the machine via the view.

It's a simple function that takes a name argument and returns a basic xstate-tree machine that you can replace slot services with. It just renders a div containing the name supplied

5.1.0-next.11

2 months ago

5.1.0-next.9

2 months ago

5.1.0-next.10

2 months ago

5.1.0-next.8

3 months ago

6.0.0-next.1

3 months ago

5.1.0-next.6

3 months ago

5.1.0-next.7

3 months ago

4.6.3

3 months ago

4.6.4

3 months ago

5.1.0-next.5

3 months ago

4.6.2

3 months ago

4.6.1

3 months ago

5.1.0-next.4

3 months ago

5.1.0-next.3

3 months ago

4.6.0

3 months ago

5.1.0-next.2

4 months ago

4.5.0

4 months ago

5.1.0

4 months ago

5.1.0-next.1

4 months ago

4.4.0

4 months ago

5.0.0

4 months ago

4.4.0-beta.1

4 months ago

4.4.0-beta.2

4 months ago

4.3.0

5 months ago

4.3.0-beta.11

7 months ago

4.3.0-beta.10

7 months ago

4.2.0

10 months ago

4.1.6

10 months ago

4.3.0-beta.3

9 months ago

4.3.0-beta.2

9 months ago

4.3.0-beta.1

9 months ago

4.3.0-beta.7

8 months ago

4.3.0-beta.6

9 months ago

4.3.0-beta.5

9 months ago

4.3.0-beta.4

9 months ago

4.3.0-beta.9

8 months ago

4.3.0-beta.8

8 months ago

4.1.4

12 months ago

4.1.5

11 months ago

4.1.3

1 year ago

4.1.2

1 year ago

4.1.0-beta.1

1 year ago

4.1.0-beta.6

1 year ago

4.1.0-beta.4

1 year ago

4.1.0-beta.5

1 year ago

4.1.0-beta.2

1 year ago

4.1.0-beta.3

1 year ago

4.1.0

1 year ago

4.0.1

1 year ago

4.0.0

1 year ago

4.1.1

1 year ago

3.0.0-beta.1

2 years ago

3.0.0-beta.2

2 years ago

2.0.11

2 years ago

3.0.1

2 years ago

3.0.0

2 years ago

2.0.10

2 years ago

2.0.9

2 years ago

2.0.8

2 years ago

2.0.7

2 years ago

2.0.6

2 years ago

2.0.5

2 years ago

2.0.4

2 years ago

2.0.3

2 years ago

2.0.2

2 years ago

2.0.1

2 years ago

2.0.0

2 years ago

1.3.0

2 years ago

1.2.0

2 years ago

1.1.3

2 years ago

1.1.3-beta.1

2 years ago

1.1.2

2 years ago

1.1.2-beta.1

2 years ago

1.1.0-beta.2

2 years ago

1.1.0-beta.1

2 years ago

1.0.0

2 years ago

1.0.0-beta.4

2 years ago

1.0.0-beta.3

2 years ago

1.0.0-beta.2

2 years ago

1.0.0-beta.1

2 years ago