reactive-observable
v1.2.2
Published
coming soon
Downloads
40
Maintainers
Readme
reactive-observable
This is a small a lightweight package implementing the observable pattern.
Installation
npm install reactive-observable
Usage
class Service {
public myCounter = new Observable(0);
private myInternalLogic() {
/*
* the goal is to exctract all logic from the ui class to the service layer
* so the service updates the counter internally. e. g. if a timout occurrs
*/
const currentCount = this.myCounter.get();
this.myCounter.update(currentCount + 1);
}
}
class Ui {
private readonly service: Service
constructor() {
this.service = new Service();
this.service.myCounter.subscribe((count) => this.render(count));
}
private render(count: number) {
return `<h1>Count: ${count}</h1>`;
}
}
Advanced Usage
It's also possible to watch object and update and subscribe to partial properties of an object.
import { Subscription } from "./Observable";
class CarService {
public observableCar = new Obs({color: 'red', fuel: 100}); // alias for Observable
public drive() {
const currentFuel = this.observableCar.get().fuel
this.observableCar.updatePartial({fuel: currentFuel - 1})
}
}
class CarUi {
private readonly service: CarService
private subscription?: Subscription
constructor() {
this.service = new CarService();
this.subscription = this.service.observableCar.subscribe(this.render, 'fuel');
}
private onUnMount() {
this.service.observableCar.removeSubscription(this.render) // or this.subscription?.remove();
}
private render(fuel: number) {
return `<h1>Fuel: ${fuel}</h1>`;
}
}