operators
Overmind also provides a functional API to help you manage complex logic. This API is inspired by asynchronous flow libraries like RxJS, though it is designed to manage application state and effects. Operators are actually interoperable with plain actions, meaning you can define an operator just like an action:
The reason operators by convention are defined as factories is because it makes them consistent in their declarative representation.
Operators are small composable pieces of logic that can be combined in many ways. This allows you to express complexity in a declarative way. You typically use the pipe operator in combination with the other operators to do this. A typical convention is to define operators in their own operators file where the actions file imports and composes them together:
Any of these operators can be used with other operators. You can even insert a pipe inside an other pipe. This kind of composition is what makes functional programming so powerful.
branch
This operator works just like pipe, but branches out the execution and does not bring its input as output of the branch.
catchError
async
This operator runs if any of the previous operators throws an error. It allows you to manage that error by changing your state, run effects or even return a new value to the next operators.
debounce
When action is called multiple times within the set time limit, only the last action will move beyond the point of the debounce.
filter
Stop execution if it returns false.
fork
Allows you to execute an operator/pipe based on the matching key.
noop
This operator does absolutely nothing. Is useful when paths of execution is not supposed to do anything.
parallel
Will run every operator and wait for all of them to finish before moving on. Works like Promise.all.
pipe
The pipe is an operator in itself. Use it to compose other operators and pipes.
throttle
This operator allows you to ensure that if an action is called, the next action will only continue past this point if a certain duration has passed. Typically used when an action is called many times in a short amount of time.
tryCatch
This operator allows you to scope execution and manage errors. This operator does not return a new value to the execution.
wait
Hold execution for set time.
waitUntil
Wait until a state condition is true.
when
Go down the true or false path based on the returned value.
Last updated