neo-observable-input

1.0.0 • Public • Published

Neo observable input

Ergonomic, robust RxJS Observable inputs for Angular

Background

See https://github.com/angular/angular/issues/5689

Similar to https://github.com/Futhark/ngx-observable-input and https://github.com/insidewhy/observable-input and https://github.com/insidewhy/observable-input, but works with type checking Angular inputs, and avoids the tree-shaking problems of decorators.

Install

npm i neo-observable-input

Usage

import { Component, OnChanges } from "@angular/core";
import { ObservableInputs } from "neo-observable-input";

@Component({ template: "" })
export class ExampleComponent implements OnChanges {
  private readonly inputs = new ObservableInputs();

  @Input()
  color: string;
  color$ = this.inputs.observe(() => this.color);

  @Input()
  count: number;
  count$ = this.inputs.observe(() => this.count);

  ngOnChanges() {
    this.inputs.onChanges();
  }
}

Readme

Keywords

none

Package Sidebar

Install

npm i neo-observable-input

Homepage

http:

Weekly Downloads

15

Version

1.0.0

License

MIT

Unpacked Size

3.28 kB

Total Files

6

Last publish

Collaborators

  • pauldraper