SlideShare a Scribd company logo
FLUX
Angular Course - Flux & Redux
MVC
FLUX
Components
Dispatcher
ActionsStores
STATE
Game engine
Store
Recipes
Waffles
App
Add RecipeRecipes
Recipe…Omelette Pancakes Recipe… Recipe…
REDUX
ONE STORE
ONE STATE
Component
Reducer
Store
DispatchSubscribe
Action
State
ACTIONS
EVERYTHING IS AN ACTION
Add Element
Update Attributes
Select Element
Create Project
Update Project
Actions are plain objects
{
type: ‘ADD_ELEMENT’,
payload: ‘h1’
}
We use action creators
const addElement = (tag) => ({
type: ‘ADD_ELEMENT’,
payload: tag
});
REDUCERS
Current State
Next State
Reducers
(processors)
Action
Must return a new state — never modify previous one
Pure Functions
No Side Effects
Only rely on input parameters
REDUCERS
CHANGE DETECTION
Change Detection
State
Id: 1
Recipes[]
Recipe
Title: ‘Two’
Recipe
Id: 2Title: ‘One’
Change second recipe’s
title to five
Change Detection
State
Id: 1
Recipes[]
Recipe
Title: ‘Five’
Recipe
Id: 2Title: ‘One’
Change second recipe’s
title to five
Change Detection
State
Id: 1
Recipes[]
Recipe
Title: ‘Five’
Recipe
Id: 2Title: ‘One’
Is the recipe changed?
Change Detection
State
Id: 1
Recipes[]
Recipe
Title: ‘Five’
Recipe
Id: 2Title: ‘One’
Have the recipes changed?
Change Detection
State
Id: 1
Recipes[]
Recipe
Title: ‘Five’
Recipe
Id: 2Title: ‘One’
Did the whole state
change?
IMMUTABILITY
OUR STATE
State
Recipes
Omelette Pancaek
User
Adam
T1
REFERENCE TREES
State
Recipes
Omelette Pancaek
User
Adam
T1
State
Recipes
Omelette Pancake
User
Adam
T2
IN MEMORY
State
Recipes
Omelette Pancaek
User
Adam
State
Recipes
Pancake
T1 T2
ACTION #2
State
Recipes
Omelette Pancaek
User
Adam
State
Recipes
Omelett Pancake
User
Adam
T1 T2
State
Recipes
Bacon Pancake
User
Adam
T3
IN MEMORY
State
Recipes
Omelette Pancaek
User
Adam
State
Recipes
Pancake
State
Recipes
Bacon
T1 T2 T3
Why not direct?
state.recipes[recipeId].name = newName;
OH, NO!
State
Recipes
Omelette Pancaek
User
Adam
State
Recipes
Pancake
State
Recipes
Bacon
T1 T2 T3
Omelett
User
Adam
User
Cat Pancake
OUT SIDE CHANGE
State
Recipes
Omelette Pancaek
User
Cat
State
Recipes
Pancake
State
Recipes
Bacon
T1 T2 T3
OH, NO!
State
Recipes
Omelette Pancaek
User
Cat
State
Recipes
Pancake
State
Recipes
Bacon
T1 T2 T3
Omelett
User
Cat
User
Cat Pancake
ANGULAR-REDUX
State to Angular
Store
Elements
Element 1 Element 2
App
Elements Elements
Navigator
Element 1 Element 2
RxJS
recipes$ | async

More Related Content

What's hot (10)

PDF
Hot React Hooks
Salsita Software
 
PPTX
Recycler mvp
Bhavya Rattan
 
PDF
Introduction to React Hooks
Felicia O'Garro
 
PDF
React App State Management with react hooks and context api
Jan Ranostaj
 
PDF
Redux js
Nils Petersohn
 
PDF
Full-Stack Reactive with Spring WebFlux + Angular - Oracle Code One 2018
Loiane Groner
 
PPTX
Autosys Complete Guide
karunakar81987
 
PDF
State Models for React with Redux
Stephan Schmidt
 
PDF
Redux and context api with react native app introduction, use cases, implemen...
Katy Slemon
 
PDF
Serverless Angular, Material, Firebase and Google Cloud applications
Loiane Groner
 
Hot React Hooks
Salsita Software
 
Recycler mvp
Bhavya Rattan
 
Introduction to React Hooks
Felicia O'Garro
 
React App State Management with react hooks and context api
Jan Ranostaj
 
Redux js
Nils Petersohn
 
Full-Stack Reactive with Spring WebFlux + Angular - Oracle Code One 2018
Loiane Groner
 
Autosys Complete Guide
karunakar81987
 
State Models for React with Redux
Stephan Schmidt
 
Redux and context api with react native app introduction, use cases, implemen...
Katy Slemon
 
Serverless Angular, Material, Firebase and Google Cloud applications
Loiane Groner
 

Similar to Angular Course - Flux & Redux (20)

PDF
Introduction to React & Redux
Boris Dinkevich
 
PDF
Integrating React.js with PHP projects
Ignacio Martín
 
PPTX
React 16: new features and beyond
Artjoker
 
PDF
Intro to Redux | DreamLab Academy #3
DreamLab
 
PDF
A Practical Approach to Building a Streaming Processing Pipeline for an Onlin...
Databricks
 
PPTX
Intro react js
Vijayakanth MP
 
PDF
React.js
Łukasz Kużyński
 
PPTX
React hooks
Assaf Gannon
 
PDF
Advanced redux
Boris Dinkevich
 
PDF
Server side rendering with React and Symfony
Ignacio Martín
 
PPTX
[Final] ReactJS presentation
洪 鹏发
 
PPTX
Battle of React State Managers in frontend applications
Evangelia Mitsopoulou
 
PDF
General Assembly
Gene Babon
 
PDF
Evan Schultz - Angular Camp - ng2-redux
Evan Schultz
 
PDF
OSMC 2022 | Icinga for Windows in the Monitoring of Madness by Christian Stein
NETWAYS
 
PPT
The Redux Introduction in react and applications .
Lalith86
 
PDF
Intro to React | DreamLab Academy
DreamLab
 
PDF
Quick start with React | DreamLab Academy #2
DreamLab
 
PDF
Having fun power apps components HandsOn - Power User Days Belgium 2019
Rebekka Aalbers-de Jong
 
PPT
2007 Zend Con Mvc
Pablo Morales
 
Introduction to React & Redux
Boris Dinkevich
 
Integrating React.js with PHP projects
Ignacio Martín
 
React 16: new features and beyond
Artjoker
 
Intro to Redux | DreamLab Academy #3
DreamLab
 
A Practical Approach to Building a Streaming Processing Pipeline for an Onlin...
Databricks
 
Intro react js
Vijayakanth MP
 
React hooks
Assaf Gannon
 
Advanced redux
Boris Dinkevich
 
Server side rendering with React and Symfony
Ignacio Martín
 
[Final] ReactJS presentation
洪 鹏发
 
Battle of React State Managers in frontend applications
Evangelia Mitsopoulou
 
General Assembly
Gene Babon
 
Evan Schultz - Angular Camp - ng2-redux
Evan Schultz
 
OSMC 2022 | Icinga for Windows in the Monitoring of Madness by Christian Stein
NETWAYS
 
The Redux Introduction in react and applications .
Lalith86
 
Intro to React | DreamLab Academy
DreamLab
 
Quick start with React | DreamLab Academy #2
DreamLab
 
Having fun power apps components HandsOn - Power User Days Belgium 2019
Rebekka Aalbers-de Jong
 
2007 Zend Con Mvc
Pablo Morales
 
Ad

More from Adam Klein (10)

PDF
Redux "Bad" Practices - A List of 13 Bad Practices and How to Avoid Them
Adam Klein
 
PDF
Tales of an open source library
Adam Klein
 
PDF
Es6 everywhere
Adam Klein
 
PDF
Clean up your code
Adam Klein
 
PDF
Ruby for devops
Adam Klein
 
PDF
Lean startups for non-tech entrepreneurs
Adam Klein
 
PDF
Data models in Angular 1 & 2
Adam Klein
 
PDF
Client side unit tests - using jasmine & karma
Adam Klein
 
PDF
Mobile Apps using AngularJS
Adam Klein
 
PDF
3rd party
Adam Klein
 
Redux "Bad" Practices - A List of 13 Bad Practices and How to Avoid Them
Adam Klein
 
Tales of an open source library
Adam Klein
 
Es6 everywhere
Adam Klein
 
Clean up your code
Adam Klein
 
Ruby for devops
Adam Klein
 
Lean startups for non-tech entrepreneurs
Adam Klein
 
Data models in Angular 1 & 2
Adam Klein
 
Client side unit tests - using jasmine & karma
Adam Klein
 
Mobile Apps using AngularJS
Adam Klein
 
3rd party
Adam Klein
 
Ad

Recently uploaded (20)

PPTX
Milwaukee Marketo User Group - Summer Road Trip: Mapping and Personalizing Yo...
bbedford2
 
PPTX
Hardware(Central Processing Unit ) CU and ALU
RizwanaKalsoom2
 
PDF
AOMEI Partition Assistant Crack 10.8.2 + WinPE Free Downlaod New Version 2025
bashirkhan333g
 
PDF
AI + DevOps = Smart Automation with devseccops.ai.pdf
Devseccops.ai
 
PDF
Download Canva Pro 2025 PC Crack Full Latest Version
bashirkhan333g
 
PDF
Driver Easy Pro 6.1.1 Crack Licensce key 2025 FREE
utfefguu
 
PDF
How to Hire AI Developers_ Step-by-Step Guide in 2025.pdf
DianApps Technologies
 
PPTX
Comprehensive Risk Assessment Module for Smarter Risk Management
EHA Soft Solutions
 
PDF
Add Background Images to Charts in IBM SPSS Statistics Version 31.pdf
Version 1 Analytics
 
PPTX
Agentic Automation: Build & Deploy Your First UiPath Agent
klpathrudu
 
PPTX
Home Care Tools: Benefits, features and more
Third Rock Techkno
 
PDF
MiniTool Power Data Recovery 8.8 With Crack New Latest 2025
bashirkhan333g
 
PDF
Open Chain Q2 Steering Committee Meeting - 2025-06-25
Shane Coughlan
 
PPTX
Agentic Automation Journey Series Day 2 – Prompt Engineering for UiPath Agents
klpathrudu
 
PPTX
Help for Correlations in IBM SPSS Statistics.pptx
Version 1 Analytics
 
PDF
MiniTool Partition Wizard 12.8 Crack License Key LATEST
hashhshs786
 
PDF
Adobe Premiere Pro Crack / Full Version / Free Download
hashhshs786
 
PPTX
Finding Your License Details in IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 
PDF
SciPy 2025 - Packaging a Scientific Python Project
Henry Schreiner
 
PDF
SAP Firmaya İade ABAB Kodları - ABAB ile yazılmıl hazır kod örneği
Salih Küçük
 
Milwaukee Marketo User Group - Summer Road Trip: Mapping and Personalizing Yo...
bbedford2
 
Hardware(Central Processing Unit ) CU and ALU
RizwanaKalsoom2
 
AOMEI Partition Assistant Crack 10.8.2 + WinPE Free Downlaod New Version 2025
bashirkhan333g
 
AI + DevOps = Smart Automation with devseccops.ai.pdf
Devseccops.ai
 
Download Canva Pro 2025 PC Crack Full Latest Version
bashirkhan333g
 
Driver Easy Pro 6.1.1 Crack Licensce key 2025 FREE
utfefguu
 
How to Hire AI Developers_ Step-by-Step Guide in 2025.pdf
DianApps Technologies
 
Comprehensive Risk Assessment Module for Smarter Risk Management
EHA Soft Solutions
 
Add Background Images to Charts in IBM SPSS Statistics Version 31.pdf
Version 1 Analytics
 
Agentic Automation: Build & Deploy Your First UiPath Agent
klpathrudu
 
Home Care Tools: Benefits, features and more
Third Rock Techkno
 
MiniTool Power Data Recovery 8.8 With Crack New Latest 2025
bashirkhan333g
 
Open Chain Q2 Steering Committee Meeting - 2025-06-25
Shane Coughlan
 
Agentic Automation Journey Series Day 2 – Prompt Engineering for UiPath Agents
klpathrudu
 
Help for Correlations in IBM SPSS Statistics.pptx
Version 1 Analytics
 
MiniTool Partition Wizard 12.8 Crack License Key LATEST
hashhshs786
 
Adobe Premiere Pro Crack / Full Version / Free Download
hashhshs786
 
Finding Your License Details in IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 
SciPy 2025 - Packaging a Scientific Python Project
Henry Schreiner
 
SAP Firmaya İade ABAB Kodları - ABAB ile yazılmıl hazır kod örneği
Salih Küçük
 

Angular Course - Flux & Redux