@libre/atom
v1.3.3
Published
<div> <p align="center"> <img src="https://document-export.canva.com/DADLRIBWTFM/45/preview/0001-645846858.png" height="350" width="350" alt="@libre/atom logo" /> </p> </div>
Downloads
14,416
Maintainers
Readme
Description
@libre/atom
provides a data type called Atom
s and a few functions for working with Atom
s. It is heavily inspired by atom
s in Clojure(Script). While the full power of Clojure atom
s cannot be experienced in JavaScript's single-threaded runtime, Atom
s do still offer similar benefits due to the highly asynchronous and event-driven nature of JavaScript.
Atoms provide a predictable way to manage state shared by multiple components of a
program as that state changes over time. They are particularly useful in the functional and reactive programming paradigms, where most components of a program are pure functions operating on immutable data. Atoms
provide a controlled mechanism for mutability that lets multiple components access and update the same value without risking mutating another component's reference to it in the middle of some process or asynchronous operation.
Put your state in an Atom
:
import { Atom } from "@libre/atom";
const appState = Atom.of({
color: "blue",
userId: 1
});
Read state with deref
You can't inspect Atom
state directly, you have to deref
erence it, like this:
import { deref } from "@libre/atom";
const { color } = deref(appState);
Update state with swap
You can't modify an Atom
directly. The main way to update state is with swap
. Here's its call signature:
function swap<S>(
atom: Atom<S>,
updateFn: (state: DeepImmutable<S>) => S
): void;
updateFn
is applied to atom
's state and the return value is set as atom
's new state. There are just two simple rules for updateFn
:
- it must return a value of the same type/interface as the previous state
- it must not mutate the previous state
To illustrate, here is how we might update appState
's color:
import { swap } from "@libre/atom";
const setColor = color =>
swap(appState, state => ({
...state,
color: color
}));
Note: Our
updateFn
is spreading the old state onto a new object before overridingcolor
. This is an easy way to obey the rules ofupdateFn
. If manually spreading values seems tedious, there are many libraries that offer convenient functions for operating on JS data structures in an immutable manner, e.g. see ramda, sanctuary, crocks, or (for the wizards among us) fp-ts.
Installation
NPM: npm install --save @libre/atom
Yarn: yarn add @libre/atom
CDN: <script src="https://unpkg.com/@libre/atom" />
- Exposed on the global object, like so:
window["@libre/atom"]
Usage
ES6 import
import { Atom, deref, set, swap } from "@libre/atom";
CommonJS require
const { Atom, deref, set, swap } = require("@libre/atom");
Web <script />
tag
const { Atom, deref, set, swap } = window["@libre/atom"];
Documentation
You can find API docs for @libre/atom
here
Contributing / Feedback
Please open an issue if you have any questions, suggestions for improvements/features, or want to submit a PR for a bug-fix (please include tests if applicable).