npm-vue
Reatom integration for Vue Composition API.
Vue has simple and powerful enough primitives for state processing out of the box, refs can be created outside the component and most of the tasks are solved by it. But there are a number of issues that reatom covers better.
- Atoms has lifecycle hooks, usefull for states used in many components. It allows you to init a resource on the first subscription and dispose the resource on the last unsubscription.
- Actions help you group and better log and debug your logic. Reatom allows you to trace the entire chain of data transformations through all sync and async actions and atoms.
- Reatom is a perfect solution as a multi frontend core as it is small, powerful and already has adapters for vue, react, solid, svelte (lit and angular adapters in development).
- Reatom has very powerful primitives for describing asynchronous logic, gathering the best of rxjs, redux-saga and TanStack Query. There seem to be no alternatives here.
- Reatom has one of the largest ecosystems of any state manager and probably the most balanced. At the same time, each package is developed with a manic focus on band size and perf.
Installation
#API
#createReatomVue
#A function that creates a Vue App plugin which you can use
. Accepts a Ctx
object.
useCtx
#A function to inject a Ctx
object provided by createReatomVue
. Used by different APIs internally.
reatomRef
#A function that turns a Reatom atom into a Vue ref which is updated on target atom changes. A returned pseudo-ref is mutable if a target atom is mutable itself.
Because all Reatom APIs require ctx
to be available, you must either provide it with createReatomVue
plugin or pass it explicitly as a second argument to reatomRef
.
useAction
#Binds an action or a function to a ctx
value.
If you don’t have a declared action, you can pass a plain function to useAction
and give it a name using the second parameter:
To bind an action to a custom Ctx
object, pass it as a field of a config object:
useCtxBind
#Creates a function for binding multiple functions to a ctx
at any time.
Example
#See the source code or open in StackBlitz
Usage
#Setup ctx
somewhere in the app root:
Then use Reatom state in your components: