Skip to content

coding-kata/redux-basic-tutorial

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Redux Basic tutorial on the hand

Copy Basics | Redux by the hand.

Note

  componentDidMount() {
    this.unsubscribe = store.subscribe(() =>
      this.forceUpdate()
    );
  }

  componentWillUnmount() {
    this.unsubscribe();
  }
  • Reducersの合成は型がないと厳しそう
  • Getting Started with Redux - Course by @dan_abramov @eggheadioは面白かった
  • Reduxはデータが中心な気がする
    • APIが複雑(省略出来ることによる複雑)なのでデータがどこからきてるのかが、コード上で追うのが難しい感じがする
    • 読みやすいコードという設計ではないのかも
  • Reactじゃなくてdekujs/dekuでもいいのではとかおもった

E2Eテスト

TestCafeを使った。

npm start &
npm test