0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

React + Reduxを基本からまとめてみた【3】【Fluxフロー】【随時更新】

Last updated at Posted at 2021-10-05

Fluxフローとは

  • データフロー設計の1つ
  • データが常に1方向に流れる
  • イベントによってデータが変化(イベント駆動)

Flux思想をreactの状態管理に適したライブラリー = Redux

Fluxフロー図

![flux_flow.png]
(https://camo.qiitausercontent.com/cdd0824a85a48f51dacc8ec20fa5cf5ce6ec8093/68747470733a2f2f71696974612d696d6167652d73746f72652e73332e61702d6e6f727468656173742d312e616d617a6f6e6177732e636f6d2f302f3434303539332f33313139643830622d383163642d633664382d636233312d6132383837386261313738312e706e67)

Container
⇨ Storeと接続されたコンポーネント
Action
⇨ 要求を受けて変更を依頼
Reducer
⇨ 変更を管理する
Store
⇨ 状態を保存する
mapState To Props / mapDispatch To Props
⇨ 状態をコンテナーに渡す

ReduxにおけるFluxフローの流れ

① ユーザーがwebページにアクセス
       
② URLに応じたContainerが表示される
      
③ Containerの中にComponentがあり、ユーザーが購入ボタンなどをクリックする

④ 購入ボタンなどをクリックするイベントが発生した時、Actionが実行される

⑤ Actionが状態の変更したい内容をReducerに伝える

⑥ Reducerは変更の内容を受けて内容をStoreに伝える

⑦ Storeで状態が変わったら、状態をmapState To Props / mapDispatch To Propsを通して、Containerに伝わる

⑧ Containerの中では、状態が変わり表示がされる

⑨ ①へ戻る

参考サイト

[日本一わかりやすいReact-Redux入門#3...Fluxフローは絶対に知っておいて]
(https://www.youtube.com/watch?v=so0JgVToRLk)

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?