src/helpers/active-variable.ts
An active variable whose value can be changed and the change can be observed.
Properties |
Methods |
constructor(value?: T)
|
||||||||
Defined in src/helpers/active-variable.ts:7
|
||||||||
Create the observable active variable.
Parameters :
|
Private callbacks |
Type : CallbackFunction<T>[]
|
Default value : []
|
Defined in src/helpers/active-variable.ts:17
|
Callbacks to call on update. |
Public Optional value |
Type : T
|
Defined in src/helpers/active-variable.ts:12
|
Initial value.
|
Public onUpdate | ||||||||
onUpdate(callback: CallbackFunction<T>)
|
||||||||
Defined in src/helpers/active-variable.ts:32
|
||||||||
Call a function on updating the value of variable.
Parameters :
Returns :
void
|
Public update | ||||||||
update(updatedValue: T)
|
||||||||
Defined in src/helpers/active-variable.ts:23
|
||||||||
Update the value of variable.
Parameters :
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);
}
}