Class Store<T>Abstract

Type Parameters

  • T

Hierarchy (view full)

Constructors

Properties

$: Observable<T> = ...

An Observable of the state of this store object.

activeChildren: Map<string, Set<Store<unknown>>> = ...
getRootStore: (() => RootStore<object>)

Type declaration

lastKnownState?: T
subscribers: Map<Subscriber<T>, undefined | T> = ...

Methods

  • Assigns the given values to state of this store object. The resulting state will be like Object.assign(store.state(), value).

    Parameters

    • value: Partial<T>

    Returns void

  • Removes the state represented by this store object from its parent. E.g. to remove the current user:

    store('currentUser').delete();
    

    Returns void

  • Runs func on a shallow clone of the state, replacing the state with the clone. The first argument to func will be the cloned state, followed by the arguments in args.

    WARNING: You SHOULD NOT use a function that will mutate nested objects within the state.

    Type Parameters

    • A extends any[]

    Parameters

    • func: ((state, ...args) => void)
        • (state, ...args): void
        • Parameters

          • state: T
          • Rest ...args: A

          Returns void

    • Rest ...args: A

    Returns void

  • Runs func on the state and replaces it with the return value. The first argument to func will be the state, followed by the arguments in args.

    WARNING: You SHOULD NOT use a function that will mutate the state.

    Type Parameters

    • A extends any[]

    Parameters

    • func: ((state, ...args) => T)
        • (state, ...args): T
        • Parameters

          • state: T
          • Rest ...args: A

          Returns T

    • Rest ...args: A

    Returns void