rxjs-flow
TypeScript icon, indicating that this package has built-in type declarations

1.0.0 • Public • Published

rxjs-flow

set of simple helper methods, which will help you arrange your data manipulation using rxjs in unidirectional way.

Library uses "redux-like" approach with usage of benefits from rxjs. Redux is one of the best data flow library at the moment, but it sucks because a lot of boilerplate code, massive switch statements etc.. Rxjs is really elegant but its kinda new kind in the block, so there is no one way how to manage your state using it. With Rxjs you can endup with a lot of messy code.

rxjs-flow is taking best parts from both worlds. Its elegant, expressive and pretty straight forward at the same time.

    npm install --save rxjs-flow

Quick start

example code looks like below:

const initState = {
  type: 'all',
  products: [],
  busy: false
};
 
 
@Injectable()
export class ProductListStore extends BaseStore {
 
  constructor(private af: AngularFire) {
    super(initState);
 
    this.af.database.list('/products')
      .reaction(this.onProductLoaded, this.onSetBusy)
      .pour(this.updates$);
  }
 
  //mutations
  private onSetBusy(state) {
    return assign(state, {busy: true});
  }
 
  private onProductLoaded(products, state) {
    return assign(state, {products, busy: false});
  }
 
  private onFilterChanged(type, state) {
    return assign(state, {type});
  }
 
  //selectors
  products$ = this.state$.map(s => {
    if (s.type === 'all') return s.products;
    return filter(s.products, {type: s.type});
  });
 
  //actions
  filterByType$ = new Subject<string>();
 
  //reactions
  private filterOnClient = this.filterByType$
    .reaction(this.onFilterChanged).pour(this.updates$);
}
 

Dependencies (2)

Dev Dependencies (4)

Package Sidebar

Install

npm i rxjs-flow

Weekly Downloads

0

Version

1.0.0

License

MIT

Last publish

Collaborators

  • mmajewski