Class Observable<Value>

A simple observable with a single value which can be set via .setValue() and a listen method. Before a value is set, it is checked for equality with the current value. If they are equal, the value is not set. Equality checking can be turned off by passing undefined as the equalityCheck constructor parameter or by passing a different equality check callback.

Type Parameters

  • Value

Hierarchy (View Summary)

Constructors

Properties

equalityCheck: EqualityCheck<
    {
        [KeyType in string
        | number
        | symbol]: Exclude<Awaited<Value>, typeof noUpdate>[KeyType]
    },
>

The function used to check equality between different values. This can be manually set at any time to change the function used.

listenerMap: WeakMap<
    ObservableListener<any>,
    TypedEventListenerWithRemoval<ObservableValueUpdateEvent>,
> = ...

This is necessary so we can fire listeners that listen directly to the value, not the emitted event.

value: Exclude<Awaited<Value>, typeof noUpdate>

The value currently contained with the observable.

Do not set this directly: use setValue instead. (If you try to set this value directly, it won't fire listeners which defeats the entire purpose of using an observable.

Methods

  • Listen to any event omitted by the observable rather than just the value changing.

    Type Parameters

    • const EventDefinition extends Readonly<
          {
              type: | "observable-value-update"
              | "observable-value-resolve"
              | "observable-value-error"
              | "observable-destroy"
              | "observable-callback-call"
              | "observable-params-update"
              | "observable-interval-run"
              | "observable-interval-skip"
              | "observable-interval-rate-limited";
          },
      >

    Parameters

    Returns RemoveListenerCallback

    A callback to remove the listener.

  • Set a new value to the observable. The new value will only be set and listeners will only be fired if the new value is not equal to the current value ("equal" determined by the equalityCheck constructor parameter) or if equality checking is disabled.

    Parameters

    Returns boolean