今回のサンプルではデータフローを理解することに重点を置いて説明します。 実際にサンプルコードを写経しながら説明を読むと、理解が深まると思います。
イベント発生後のコードを読んでいく順番は以下のとおりです。これを念頭に置いてはじめましょう。
store.dispatch()
->Action
->Reducer
->Componet:render()
- すべての
Component
はBaseComponent
を継承する前提でつくられます
constructor
constructor(selector, store, ...stateNames)
-
selector
:Component
のDOMのクラス名またはID -
store
:rootReducer
-
...stateNames
: 監視するstate
(文字列) -
...stateNames
で指定したstate
に変更があったら子クラスで実装したrender()
を実行する機能を提供します
役割
- イベントハンドラのセット
render()
で使用するセレクタがある場合は定義しておく
this.$result = this.$selector.find('.js-result');
this.$selector.find('.js-increment').on('click', () => this.dispatch(actions.increment()));
this.$selector.find('.js-decrement').on('click', () => this.dispatch(actions.decrement()));
super(selector, store, 'result');
は、 state
のresult
に変更があったらrender()
を実行するように定義している。
イベントハンドラのセットではclick
イベントが発生したらstore.dispatch()
を実行するようにしている。
役割
state
の変更に伴う画面の再描画を行う
render() {
this.$result.text(this.state.result);
}
役割
Reducer
にActionType
を渡している
ActionType import:3-4
ActionCreator import:6-7
役割
Action
から受け取ったActionType
によってstate
を新規に返す
state
の値が変更されるとBaseComponent
のconstructor
で定義したstore.subscribe()
が実行される仕組みです。
今回のサンプルではデータフローをわかりやすくするために必要最低限の機能しかもっていませんでした。
他のサンプルではAction
にデータを渡して画面に反映させたり、非同期処理を行う場合はどうするかを説明していきますので、引き継ぎ頑張りましょう。