Upgrade to Pro — share decks privately, control downloads, hide ads and more …

NgRxについて考えたこと

kou
August 06, 2018

 NgRxについて考えたこと

ng-sake#12でLTしたNgRxについての話です。

kou

August 06, 2018
Tweet

More Decks by kou

Other Decks in Technology

Transcript

  1. book.effects.ts @Injectable() export class BookEffects { @Effect() search$ = this.actions$.pipe(

    ofType(BookActionTypes.Search), mergeMap(() => this.api.searchBooks()), map((books) => new SearchComplete(books)), catchError(err => of(new SearchError(err))) ); } book.component.ts @Component() export class BookSearchComponent { ngOnInit() { book$ = this.store(pipe(select('book'))) } submit() { this.store.dispatch(new Search()); } }
  2. book.component.ts @Component() export class BookSearchComponent { submit() { this.store.dispatch(new Search());

    this.api.searchBooks() .pipe( map((books) => new SearchComplete(books)), catchError(err => of(new SearchError(err))), ) .subscribe((action) => this.store.dispatch(action)); } } Effectsを使うと冗長になる。なぜ Component内で書かずEffectsを使うのか
  3. なぜEffectsを使うのか? • Isolate side effects from components, allowing for more

    pure components that select state and dispatch actions. • コンポーネントからside effectsを分離して、selectとdispatchするだけのよりピュアなものに する. • → UIとビジネスロジックを切り離したい
  4. @Effect() breakpoint$ = this.breakpointObserver .observe([Breakpoints.HandsetLandscape]) .pipe( map((result) => { if

    (result.match) { return new Landscape(); } return new Portrait(); }) ); EffectsはActionを起点にしなくても独立して動作できる例
  5. Angular Worker facade Shared DataBase Event Source Actions$ Reducers State

    Actions$ Actions$ Effects$ get set React jQuery
  6. おわりに 一言 • NgRxはただの状態管理のライブラリではなく、 ReactiveにEvent Sourcingを実現するため のライブラリ • Effectsは何でも出来るので、自由度が高い。 •

    自由度が高すぎるので、下手に使うとアプリケーションが崩壊する。 • また、小規模なアプリケーションの場合、普通に MVCで書くより冗長で複雑になるのは間違 いないのでなぜ必要なのかを真剣に考えてから使うべき。