An observable state management library. Directly read, write, and observe any part of your state without writing any selectors, actions, or reducers.
Once you are familiar with the basics, it may help to see the api documentation.
A basic idea behind this library is to keep all the state of your app in one place, accessible for any component or service to access, modify and subscribe to changes. This has several benefits:
=== to determine if they changed. Note that if you are using Angular this enables on-push change detection, but you should consider the newer signal-store instead!2 terms are worth defining immediately. As they are used in this library, they mean:
Install along with its peer dependencies using:
npm install @s-libs/app-state @s-libs/ng-core @s-libs/rxjs-core @s-libs/js-core @s-libs/micro-dash
Define the shape of your application state using typescript classes or interfaces (but prefer classes, as noted in the style guide below). For example:
// state/my-state.ts
import { User } from "./user";
export class MyState {
loading = true;
currentUser?: User;
}
// state/user.ts
export class User {
id: string;
name: string;
}
Then create a subclass of RootStore. A single instance of that class will serve as the entry point to obtain and modify the state it holds.
// state/my-store.ts
import { RootStore } from "@s-libs/app-state";
import { MyState } from "./my-state";
export class MyStore extends RootStore<MyState> {
constructor() {
super(new MyState());
}
}
new StateObject() come with the default values for all its properties.set() and the other mutation methods on store objects freely (because mutating causes that object and all its ancestors to be recreated as plain objects or arrays, losing any methods defined by its prototype).state() early. E.g.:store.state().currentUser.name; // do this
store("currentUser")("name").state(); // not this
This allows the use of ! to easily declare the presence of an intermediate object. E.g.:store.state().currentUser!.name; // do this
store<"currentUser", User>("currentUser")("name").state(); // not this
This package includes an abstract class, UndoManager, to assist you in creating undo/redo functionality. For example, a simple subclass that captures every state change into the undo history:
class UndoService extends UndoManager<MyAppState, MyAppState> {
private skipNextChange = true;
constructor(store: MyAppStore) {
super(store);
store.$.subscribe(() => {
if (this.skipNextChange) {
this.skipNextChange = false;
} else {
this.pushCurrentState();
}
});
}
protected extractUndoState(state: MyAppState) {
return state;
}
protected applyUndoState(stateToApply: MyAppState) {
this.skipNextChange = true;
this.store.set(stateToApply);
}
}
You will likely want to be more selective about which states are pushed into the undo history, rather than subscribing to all changes. Real-world usage will be more selective about calling pushCurrentState(), and maybe from other places in your app instead of within the service itself.
You may also want to tailor which pieces of state are included in undo/redo operations by returning only those portions from extractUndoState() (which will change what is passed to applyUndoState()).
Consult the documentation in the source of UndoState for more options and information.