Options
All
  • Public
  • Public/Protected
  • All
Menu

Class R<T>

The reactive value wrapper. This is the class you want to use.

Type parameters

  • T

    The value's type, never forced in the code, helps when writing typescript and wanting a specific type.

Hierarchy

  • R

Index

Constructors

  • new R<T>(param0: RProps<T>): R<T>
  • Constructs a reactive variable.

    Type parameters

    • T

    Parameters

    • param0: RProps<T>

      The object containing it's initial value and "strict" mode option.

    Returns R<T>

Properties

#eventEmitter: EventEmitter = ...

EventEmitter internal instance. Used to map events/handlers.

#strictValue: boolean = false

If true, the "changing"/"changed" events will only be fired when the next value is different from the last.

#val: any = undefined

Internal value.

equalityCheck: Function = ...

Equality function check provided when comparing values on "strictValue".

param a

Left argument

param b

Right argument

returns

True if the arguments are "equal" (depending on implementation), false otherwise.

Accessors

  • get [toStringTag](): string
  • Changes the string tag.

    example
    console.log(R.value(0).toString());
    // "[object R]"

    Returns string

  • get currentState(): any
  • Gets the current object state: its current value and a reference to itself.

    Returns any

  • get val(): any
  • set val(value: any): void
  • Reactive variable getter.

    Returns any

  • Reactive variable setter. Fires "changing" and "changed" events.

    Parameters

    • value: any

    Returns void

Methods

  • addHandler(event: string, handler: Function): R<T>
  • Adds an event handler.

    Parameters

    • event: string

      The event to listen to.

    • handler: Function

      The handler function to apply.

    Returns R<T>

    Itself, for chaining purposes.

  • notify(event: string, state: any): R<T>
  • Emits an event.

    Parameters

    • event: string

      The event to emit.

    • state: any

      User provided state for the handlers.

    Returns R<T>

    Itself, for chaining purposes.

  • notifyChanged(state: any): R<T>
  • Emits a "changed" event.

    see

    notify

    Parameters

    • state: any

      User provided state for the handlers.

    Returns R<T>

    Itself, for chaining purposes.

  • notifyChanging(state: any): R<T>
  • Emits a "changing" event.

    see

    notify

    Parameters

    • state: any

      User provided state for the handlers.

    Returns R<T>

    Itself, for chaining purposes.

  • on(event: string, handler: Function): R<T>
  • Adds an event handler. (alias of addHandler)

    Parameters

    • event: string

      The event to listen to.

    • handler: Function

      The handler function to apply.

    Returns R<T>

    Itself, for chaining purposes.

  • removeHandler(event: string, handler: Function): R<T>
  • Removes an event handler previously added.

    Parameters

    • event: string

      The event to listen to.

    • handler: Function

      The handler function to remove from the map.

    Returns R<T>

    Itself, for chaining purposes.

  • data<T>(value: T): R<T>
  • Factory method for a non-strict reactive variable.

    Type parameters

    • T

    Parameters

    • value: T

      Initial value.

    Returns R<T>

    Instance of a reactive variable.

  • onAny(toListen: R<any>[], event: string, handler: Function): void
  • Adds a common event handler to multiple reactive variables.

    see

    addHandler

    Parameters

    • toListen: R<any>[]

      The list of variables to listen to.

    • event: string

      The event to listen to.

    • handler: Function

      The handler to apply.

    Returns void

  • onAnyChanged(toListen: R<any>[], handler: Function): void
  • Adds a common "changed" handler to multiple reactive variables.

    see

    R.onAny

    Parameters

    • toListen: R<any>[]

      The list of variables to listen to.

    • handler: Function

      The handler to apply.

    Returns void

  • onAnyChanging(toListen: R<any>[], handler: Function): void
  • Adds a common "changing" handler to multiple reactive variables.

    see

    R.onAny

    Parameters

    • toListen: R<any>[]

      The list of variables to listen to.

    • handler: Function

      The handler to apply.

    Returns void

  • value<T>(value: T, equalityCheck?: Function): R<T>
  • Factory method for a strict reactive variable.

    Type parameters

    • T

    Parameters

    • value: T

      Initial value.

    • Optional equalityCheck: Function

    Returns R<T>

    Instance of a reactive variable.

Generated using TypeDoc