2.0.0 • Published 1 year ago

@elie29/store v2.0.0

Weekly downloads
17
License
MIT
Repository
github
Last release
1 year ago

Store Management

Build Status Coverage Status Open Source Love

Frontend Application Store

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:

Store Management

What is a state?

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: []
}

Why immutability is important?

  • 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.

Install and Configure the Store

To get started with the store, we have two options. We can either download the latest release or run npm install:

Or:

  • Run npm install @elie29/store

Then:

  • Optionally run
    • npm install rxjs: If it is not installed already
    • npm install lodash: If you want to use cloneDeep and not installed already

Once the store dependencies installed, we need to:

  1. Define application state (cf. BasicState)
  2. Create initial state (cf. INITIAL_STATE)
  3. Extend abstract store class as follow:
export class BasicStore extends Store<BasicState> {
  constructor() {
    super(INITIAL_STATE);
  }
}

Settings

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 :

  1. Create an instance of the store in order to be shared across the application.
  2. Create for each module its own instance of store.

Store instances are isolated and DOES NOT share any data between them.

Store Management in Angular Service

@Injectable({
  providedIn: 'root' // or in a module specific providers
})
export class BasicStore extends Store<BasicState> {
  constructor() {
    super(INITIAL_STATE);
  }
}

Store API

The store API is very simple and contains few public methods:

  1. value: A getter for the current cloned state.
  2. get: Retrieves a specific key from the state: eg. get('author') or get('loading').
  3. set: Updates a specific state key in the store: eg. set('loading', true).
  4. patch: Updates the state or a slice of the state.
  5. 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)).
  6. 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.

Peer Dependencies

The store management library depends on:

  1. RxJS ^7.0

    • BehaviorSubject, Observable
    • distinctUntilChanged, map, pluck
  2. lodash recommended but not required

    • cloneDeep
  3. Typescript 4.9.5

    • store tested with angular

Publish to npm repo

  1. Fix date release in CHANGELOG.md
  2. Increment version number in package.json and package-lock.json
  3. Run npm run pub then enter the 2FA code
  4. Commit, push and create a new github release
2.0.0-alpha

1 year ago

2.0.0

1 year ago

1.1.0

2 years ago

1.1.0-alpha

2 years ago

1.0.7

3 years ago

1.0.6

3 years ago

1.0.5

4 years ago

1.0.4

4 years ago

1.0.2

4 years ago

1.0.3

4 years ago

1.0.1

5 years ago

1.0.1-beta.9

5 years ago

1.0.1-beta.8

5 years ago

1.0.1-beta.7

5 years ago

1.0.1-beta.6

5 years ago

1.0.1-beta.5

5 years ago

1.0.1-beta.4

5 years ago

1.0.1-beta.3

5 years ago

1.0.1-beta.2

5 years ago

1.0.1-beta.1

5 years ago

1.0.1-alpha.4

5 years ago