A simple frontend store that manages application state using RxJS BehaviorSubject. The main purpose is to provide a straightforward, simple and agnostic library for any frontend application where sharing data among services, modules or containers is desired.
By default, the store uses a shallow clone version of the state. However, we can provide another cloning strategy (eg. lodash cloneDeep) so the store would treat the state immutably, and any data manipulation outside the store, would not affect the store at all.
The image below illustrates the appropriate one-way dataflow implied by the store:
In its easiest way, a state is a snapshot of an application data at a specific time. Whenever data is manipulated or changed, a new state is created and saved in the store. In our case, the state is represented by extending State interface as follow:
interface BasicState extends State {
author?: Author;
loading: boolean;
posts: Post[];
}
An initial state is a simple object that implements BasicState as follow:
const INITIAL_STATE: BasicState = {
author: undefined,
loading: false,
posts: []
}
- Single Source of Truth: The store is solely responsible of handling data.
- State is read-only: Modifying the state outside the store does not affect the store.
- One-way dataflow: A new state is published to subscribers any time the store receives data.
- Predictable: The state evolution can be tracked to figure out how and who made the changes.
To get started with the store, we have two options. We can either download the latest release or run npm install:
- Download the latest release and include it as a lib to the project
Or:
- Run
npm install @elie29/store
Then:
- Optionally run
npm install rxjs
: If it is not installed alreadynpm install lodash
: If you want to use cloneDeep and not installed already
Once the store dependencies installed, we need to:
- Define application state (cf. BasicState)
- Create initial state (cf. INITIAL_STATE)
- Extend abstract store class as follow:
export class BasicStore extends Store<BasicState> {
constructor() {
super(INITIAL_STATE);
}
}
By default, we don't log state changes and we use a shallow clone strategy function. We can change these settings by providing a StoreSettings to the constructor as follow:
export class BasicStore extends Store<BasicState> {
constructor() {
super(INITIAL_STATE, {
logChanges: true,
cloneStrategy: cloneDeep // or other techniques
});
}
}
Now BasicStore could be injected in any service or container. It is also possible to :
- Create an instance of the store in order to be shared across the application.
- Create for each module its own instance of store.
Store instances are isolated and DOES NOT share any data between them.
@Injectable({
providedIn: 'root' // or in a module specific providers
})
export class BasicStore extends Store<BasicState> {
constructor() {
super(INITIAL_STATE);
}
}
The store API is very simple and contains few public methods:
- value: A getter for the current cloned state.
- get: Retrieves a specific key from the state: eg. get('author') or get('loading').
- set: Updates a specific state key in the store: eg. set('loading', true).
- patch: Updates the state or a slice of the state.
- select: Watches for a value change of a specific key in the store. It returns an observable of read-only data: eg. select('author').subscribe(next => console.log(next)).
- watch: Watches and keeps track on store changes.
N.B.: By default, data passed or retrieved from the store is NOT deep cloned. So any manipulation of data DOES affect the store unless we implement lodash cloneDeep function which is highly recommended.
The store management library depends on:
-
RxJS ^7.0
- BehaviorSubject, Observable
- distinctUntilChanged, map, pluck
-
lodash [recommended but not required]
- cloneDeep
-
Typescript 4.9.5
- store tested with angular
- Fix date release in CHANGELOG.md
- Increment version number in package.json and package-lock.json
- Run
npm run pub
then enter the 2FA code - Commit, push and create a new github release