File

src/helpers/active-variable.ts

Description

An active variable whose value can be changed and the change can be observed.

Index

Properties
Methods

Constructor

constructor(value?: T)

Create the observable active variable.

Parameters :
Name Type Optional Description
value T Yes

Initial value.

Properties

Private callbacks
Type : CallbackFunction<T>[]
Default value : []

Callbacks to call on update.

Public Optional value
Type : T
Initial value.

Methods

Public onUpdate
onUpdate(callback: CallbackFunction<T>)

Call a function on updating the value of variable.

Parameters :
Name Type Optional Description
callback CallbackFunction<T> No

Callback to call with updated value when the variable is updated.

Returns : void
Public update
update(updatedValue: T)

Update the value of variable.

Parameters :
Name Type Optional Description
updatedValue T No

New updated value.

Returns : void
export type CallbackFunction<T = any> = (updatedValue: T) => void;

/**
 * An active variable whose value can be changed and the change can be observed.
 */
export class ActiveVariable<T = any> {
  /**
   * Create the observable active variable.
   * @param value Initial value.
   */
  constructor(public value?: T) {}

  /**
   * Callbacks to call on update.
   */
  private callbacks: CallbackFunction<T>[] = [];

  /**
   * Update the value of variable.
   * @param updatedValue New updated value.
   */
  public update(updatedValue: T) {
    this.value = updatedValue;
    this.callbacks.forEach((callback) => callback(updatedValue));
  }

  /**
   * Call a function on updating the value of variable.
   * @param callback Callback to call with updated value when the variable is updated.
   */
  public onUpdate(callback: CallbackFunction<T>) {
    this.callbacks.push(callback);
  }
}

results matching ""

    No results matching ""