SlideShare ist ein Scribd-Unternehmen logo
1 von 26
FLUX
REDUX
REACT
• Flux
• Redux
• Action creators
• State
• Containers and Selectors
• Middleware
• Perks
• Perf tricks (React & Redux)
GENERAL OVERVIEW
FLUX
https://facebook.github.io/react/blog/2014/07/30/flux-actions-and-the-dispatcher.html
FLUX
• Not a lib
• Not a framework
• No precise guidelines or best practices
• DIY
• But a mainstream winner: redux
FLUX
REDUX
REDUX
• 5 JS functions
• Opinionated flux implementation
• Add-on Ecosystem
• Compatible with other rendering frameworks
(ng, ng2, bb, polymer, ember)
DISPATCHER
ACTION
CREATOR
REDUCER
REDUCER
CONTAINER
CONTAINER
</>
</>
</>
</>
</>
ACTION
CREATOR
ACTION
CREATOR
REACT VIEWS
APP
STATE
CONTAINER
ACTION CREATORS
ACTION
{
type: DISPLAY_PLAYER_PANEL,
playerId: ‘7’
}
ACTION CREATOR
const displayPlayerPanel = playerId =>
({type: DISPLAY_PLAYER_PANEL, playerId})
DISPATCHER
ACTION
CREATOR
ACTION
CREATOR
ACTION
CREATOR
SECUNDUM REDUX
STATE
• State of the app (raw data, conformation)
• Managed by a single store
• ℂ handled via composed reducers
• Represented as a litteral Object in JS
• Immutable
• Deep nesting or over ℂ should be banned
DISPATCHER
REDUCER
APP STATE
REDUCER
REDUCER
Event bus
STATE
e.g.:
{
players: {
‘46’: {name, seed},
‘21’: {name, seed},
…
}
displayedPlayers: [’56’, ’48’, ‘2’, ’89’],
currentOrdering: ‘seed’,
route: [‘players’, ‘panel’]
}
NAMED AFTER THEIR SIGNATURE
REDUCERS
• A reducer is a pure function
• no scope impact
• synchronous
• Signature:
(state, action) -> state
REDUCERS
• Reducers can be composed :
const reducer0 = combine({
players: reducer1,
displayedPlayers: reducer2,
currentOrdering: reducer3
…
})
// has a reducer signature
REDUCERS
• Reducers can be nested :
// in players reducer
const newState = players.map(
player =>
playerReducer(state(playerId), player)
)
ACTION
CREATOR
REDUCER
REDUCER
ACTION
CREATOR
ACTION
CREATOR
APP
STATE
CONTAINERS
• Select (/Transform) state
• Select action creators
-> So that they can be ingested by views
CONTAINER
CONTAINER
CONTAINER
Selectors
• are pure functions
• create a custom representation of the app state
// Object(~Map) -> Object(~Map)
({players, displayedPlayers}) => ({
players: displayedPlayers
.map(playerId => players[playerId])
.sort()
})
CONTAINERS/SELECTORS
Containers connect state, action creators and view
// state selector
const mapStateToProps = (state) => ({
ordering: state.currentOrdering
})
// action creators picker
const mapDispatchToProps = (dispatch) =>
bindActionCreators({ changeOrdering }, dispatch)
exports = connect(mapStateToProps, mapDispatchToProps)(ReactComp)
CONTAINERS/CONNECT
ACTION
CREATOR
REACT VIEWS
CONTAINERS/VIEWS
ACTION
CREATOR
ACTION
CREATOR
CONTAINER
</>
</> </>
CONTAINER
</>
</> </> </>
What about AJAX call or Websocket frames ?
What about effects in time ?
What about everything async ?
MIDDLEWARE
DISPATCHE
R
REDUCER
ACTION CREATOR
ACTION CREATOR
ACTION CREATOR
REDUCER
MW MW MW
NET
TIME
R
Event bus
Middleware manage all asynchronous processes
module.exports = store => next => action => {
// do something async
if (action.type === FETCH_PLAYERS_INFO)
fetch(url).then(store.dispatch(updatePlayersInfo))
// handover action to store (reducers)
next(action)
}
MIDDLEWARE
APP
STATE
VIEWS
DISPATCHER
ACTION
CREATORS
CONTAINERS
MWS
PERKS
• Mostly declarative
• Testability
• Race conditions
• Scalability
• SOC
• Becoming mainstream
PERF TRICKS
• NATIVE requestAnimationFrame
• REACT shouldComponentUpdate
• REACT pureRenderMixin
• REDUX batchActions
• REDUX Initializers
REACT & REDUX
RESOURCES
• VIDEO https://egghead.io/series/getting-started-with-redux
• FAQ http://redux.js.org/docs/FAQ.html
• POST https://facebook.github.io/react/docs/advanced-performance.html
• LIB https://github.com/tshelburne/redux-batched-actions
— @slyg
THX,
GOOD BYE
”
“

Weitere ähnliche Inhalte

Ähnlich wie Wrap up Presentation Flux/Redux

Evan Schultz - Angular Camp - ng2-redux
Evan Schultz - Angular Camp - ng2-reduxEvan Schultz - Angular Camp - ng2-redux
Evan Schultz - Angular Camp - ng2-redux
Evan Schultz
 
GR8Conf 2011: Grails Webflow
GR8Conf 2011: Grails WebflowGR8Conf 2011: Grails Webflow
GR8Conf 2011: Grails Webflow
GR8Conf
 

Ähnlich wie Wrap up Presentation Flux/Redux (20)

How to use redux with react hooks in react native application
How to use redux with react hooks in react native applicationHow to use redux with react hooks in react native application
How to use redux with react hooks in react native application
 
Maintaining sanity in a large redux app
Maintaining sanity in a large redux appMaintaining sanity in a large redux app
Maintaining sanity in a large redux app
 
Using React, Redux and Saga with Lottoland APIs
Using React, Redux and Saga with Lottoland APIsUsing React, Redux and Saga with Lottoland APIs
Using React, Redux and Saga with Lottoland APIs
 
Damian Kmiecik - Road trip with Redux
Damian Kmiecik - Road trip with ReduxDamian Kmiecik - Road trip with Redux
Damian Kmiecik - Road trip with Redux
 
Enhance react app with patterns - part 1: higher order component
Enhance react app with patterns - part 1: higher order componentEnhance react app with patterns - part 1: higher order component
Enhance react app with patterns - part 1: higher order component
 
Redux
ReduxRedux
Redux
 
Evan Schultz - Angular Camp - ng2-redux
Evan Schultz - Angular Camp - ng2-reduxEvan Schultz - Angular Camp - ng2-redux
Evan Schultz - Angular Camp - ng2-redux
 
Advanced redux
Advanced reduxAdvanced redux
Advanced redux
 
Redux data flow with angular 2
Redux data flow with angular 2Redux data flow with angular 2
Redux data flow with angular 2
 
Making react part of something greater
Making react part of something greaterMaking react part of something greater
Making react part of something greater
 
Connect.js - Exploring React.Native
Connect.js - Exploring React.NativeConnect.js - Exploring React.Native
Connect.js - Exploring React.Native
 
React with Redux
React with ReduxReact with Redux
React with Redux
 
Redux data flow with angular
Redux data flow with angularRedux data flow with angular
Redux data flow with angular
 
Reactive programming in Angular 2
Reactive programming in Angular 2Reactive programming in Angular 2
Reactive programming in Angular 2
 
The evolution of redux action creators
The evolution of redux action creatorsThe evolution of redux action creators
The evolution of redux action creators
 
Road to react hooks
Road to react hooksRoad to react hooks
Road to react hooks
 
Redux data flow with angular
Redux data flow with angularRedux data flow with angular
Redux data flow with angular
 
React.js workshop by tech47.in
React.js workshop by tech47.inReact.js workshop by tech47.in
React.js workshop by tech47.in
 
React-Native Rendering Performance
React-Native Rendering PerformanceReact-Native Rendering Performance
React-Native Rendering Performance
 
GR8Conf 2011: Grails Webflow
GR8Conf 2011: Grails WebflowGR8Conf 2011: Grails Webflow
GR8Conf 2011: Grails Webflow
 

Kürzlich hochgeladen

%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
masabamasaba
 
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
masabamasaba
 
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
chiefasafspells
 
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
masabamasaba
 
Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...
Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...
Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...
Medical / Health Care (+971588192166) Mifepristone and Misoprostol tablets 200mg
 

Kürzlich hochgeladen (20)

WSO2CON 2024 - Navigating API Complexity: REST, GraphQL, gRPC, Websocket, Web...
WSO2CON 2024 - Navigating API Complexity: REST, GraphQL, gRPC, Websocket, Web...WSO2CON 2024 - Navigating API Complexity: REST, GraphQL, gRPC, Websocket, Web...
WSO2CON 2024 - Navigating API Complexity: REST, GraphQL, gRPC, Websocket, Web...
 
%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto
 
WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...
WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...
WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...
 
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
 
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
 
Announcing Codolex 2.0 from GDK Software
Announcing Codolex 2.0 from GDK SoftwareAnnouncing Codolex 2.0 from GDK Software
Announcing Codolex 2.0 from GDK Software
 
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
 
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
 
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
Love witchcraft +27768521739 Binding love spell in Sandy Springs, GA |psychic...
 
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
 
WSO2CON2024 - It's time to go Platformless
WSO2CON2024 - It's time to go PlatformlessWSO2CON2024 - It's time to go Platformless
WSO2CON2024 - It's time to go Platformless
 
WSO2CON 2024 - Freedom First—Unleashing Developer Potential with Open Source
WSO2CON 2024 - Freedom First—Unleashing Developer Potential with Open SourceWSO2CON 2024 - Freedom First—Unleashing Developer Potential with Open Source
WSO2CON 2024 - Freedom First—Unleashing Developer Potential with Open Source
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
 
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
 
What Goes Wrong with Language Definitions and How to Improve the Situation
What Goes Wrong with Language Definitions and How to Improve the SituationWhat Goes Wrong with Language Definitions and How to Improve the Situation
What Goes Wrong with Language Definitions and How to Improve the Situation
 
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...
 
WSO2Con2024 - Enabling Transactional System's Exponential Growth With Simplicity
WSO2Con2024 - Enabling Transactional System's Exponential Growth With SimplicityWSO2Con2024 - Enabling Transactional System's Exponential Growth With Simplicity
WSO2Con2024 - Enabling Transactional System's Exponential Growth With Simplicity
 
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
Direct Style Effect Systems -The Print[A] Example- A Comprehension AidDirect Style Effect Systems -The Print[A] Example- A Comprehension Aid
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
 
Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...
Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...
Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...
 
tonesoftg
tonesoftgtonesoftg
tonesoftg
 

Wrap up Presentation Flux/Redux