SlideShare a Scribd company logo
1 of 22
Download to read offline
*X ARCHITECTURES
Gabriele Falasca
*X Architectures – Gabriele Falasca
*X Architectures – Gabriele Falasca
Originally was
MVC
*X Architectures – Gabriele Falasca
mvc
*X Architectures – Gabriele Falasca
mvc
*X Architectures – Gabriele Falasca
*X Architectures – Gabriele Falasca
Hey dudes,
Flux
is here
*X Architectures – Gabriele Falasca
flux
*X Architectures – Gabriele Falasca
Flux is
predictable
OUT = f(state)
*X Architectures – Gabriele Falasca
*X Architectures – Gabriele Falasca
action
{
type: SAMPLE_ACTION,
payload: {some_data_here}
}
*X Architectures – Gabriele Falasca
action creator
const someAction = (data) => {
type: SAMPLE_ACTION,
payload: data
}
*X Architectures – Gabriele Falasca
Todo app (original!)
https://github.com/facebook/flux/tree/master/examples/flux-todomvc
*X Architectures – Gabriele Falasca
a lot of tool!
*X Architectures – Gabriele Falasca
redux
reducer + Flux
*X Architectures – Gabriele Falasca
Principles of redux
• single source of truth (state not store)
• state is read-only
• only pure functions can change the state
*X Architectures – Gabriele Falasca
Programming recap
(accumulation, input) => new accumulation
*X Architectures – Gabriele Falasca
Redux reducer
(state, action) => new state
*X Architectures – Gabriele Falasca
Todo app (original!)
actions
const add = function(text) {
return {
actionType: "addTodo",
text: text
};
};
const update = function(index, text) {
return {
actionType: "updateTodo",
text: text,
index: index
};
};
const deleteTodo =function(index) {
return {
actionType: "deleteTodo",
index: index
};
};
const deleteAll = function(){
return {
actionType: "deleteAll"
};
};
credits: https://codingjam.it/
*X Architectures – Gabriele Falasca
Todo app (original!)
reducers
credits: https://codingjam.it/
const initialState = {
todos: []
};
function addTodo(state,text) {
let toReturn = Object.assign({},state,{
todos:[...state.todos]
});
toReturn.todos.push(text);
return toReturn;
};
function updateTodo(state,index,text){
let toReturn = Object.assign({},state,{
todos:[...state.todos]
});
toReturn.todos[index] = text;
return toReturn;
};
function deleteTodo(state,index){
let toReturn = Object.assign({},state,{
todos:[...state.todos]
});
toReturn.todos.splice(index, 1);
return toReturn;
};
export default function todoApp(state = initialState, action) {
switch (action.actionType) {
case "addTodo":
return addTodo(state,action.text);
case "updateTodo":
return updateTodo(state,action.index,action.text)
case "deleteTodo":
return deleteTodo(state,action.index);
case "deleteAll":
return initialState;
default:
return state;
};
}
*X Architectures – Gabriele Falasca
Questions?

More Related Content

Recently uploaded

AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM TechniquesAI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
VictorSzoltysek
 
%+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
 
%+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 Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
masabamasaba
 

Recently uploaded (20)

Microsoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdfMicrosoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdf
 
Define the academic and professional writing..pdf
Define the academic and professional writing..pdfDefine the academic and professional writing..pdf
Define the academic and professional writing..pdf
 
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
 
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdfPayment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
 
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
 
Harnessing ChatGPT - Elevating Productivity in Today's Agile Environment
Harnessing ChatGPT  - Elevating Productivity in Today's Agile EnvironmentHarnessing ChatGPT  - Elevating Productivity in Today's Agile Environment
Harnessing ChatGPT - Elevating Productivity in Today's Agile Environment
 
Introducing Microsoft’s new Enterprise Work Management (EWM) Solution
Introducing Microsoft’s new Enterprise Work Management (EWM) SolutionIntroducing Microsoft’s new Enterprise Work Management (EWM) Solution
Introducing Microsoft’s new Enterprise Work Management (EWM) Solution
 
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
 
%in kempton park+277-882-255-28 abortion pills for sale in kempton park
%in kempton park+277-882-255-28 abortion pills for sale in kempton park %in kempton park+277-882-255-28 abortion pills for sale in kempton park
%in kempton park+277-882-255-28 abortion pills for sale in kempton park
 
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
 
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park %in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
 
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM TechniquesAI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
 
%+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...
 
%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand
 
%+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...
 
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital TransformationWSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
 
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
 
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
 
%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 - 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
 

Featured

How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
ThinkNow
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
Kurio // The Social Media Age(ncy)
 

Featured (20)

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPT
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage Engineerings
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 

*X ARCHITECTURES

  • 1.
  • 3. *X Architectures – Gabriele Falasca
  • 4. *X Architectures – Gabriele Falasca Originally was MVC
  • 5. *X Architectures – Gabriele Falasca mvc
  • 6. *X Architectures – Gabriele Falasca mvc
  • 7. *X Architectures – Gabriele Falasca
  • 8. *X Architectures – Gabriele Falasca Hey dudes, Flux is here
  • 9. *X Architectures – Gabriele Falasca flux
  • 10. *X Architectures – Gabriele Falasca Flux is predictable OUT = f(state)
  • 11. *X Architectures – Gabriele Falasca
  • 12. *X Architectures – Gabriele Falasca action { type: SAMPLE_ACTION, payload: {some_data_here} }
  • 13. *X Architectures – Gabriele Falasca action creator const someAction = (data) => { type: SAMPLE_ACTION, payload: data }
  • 14. *X Architectures – Gabriele Falasca Todo app (original!) https://github.com/facebook/flux/tree/master/examples/flux-todomvc
  • 15. *X Architectures – Gabriele Falasca a lot of tool!
  • 16. *X Architectures – Gabriele Falasca redux reducer + Flux
  • 17. *X Architectures – Gabriele Falasca Principles of redux • single source of truth (state not store) • state is read-only • only pure functions can change the state
  • 18. *X Architectures – Gabriele Falasca Programming recap (accumulation, input) => new accumulation
  • 19. *X Architectures – Gabriele Falasca Redux reducer (state, action) => new state
  • 20. *X Architectures – Gabriele Falasca Todo app (original!) actions const add = function(text) { return { actionType: "addTodo", text: text }; }; const update = function(index, text) { return { actionType: "updateTodo", text: text, index: index }; }; const deleteTodo =function(index) { return { actionType: "deleteTodo", index: index }; }; const deleteAll = function(){ return { actionType: "deleteAll" }; }; credits: https://codingjam.it/
  • 21. *X Architectures – Gabriele Falasca Todo app (original!) reducers credits: https://codingjam.it/ const initialState = { todos: [] }; function addTodo(state,text) { let toReturn = Object.assign({},state,{ todos:[...state.todos] }); toReturn.todos.push(text); return toReturn; }; function updateTodo(state,index,text){ let toReturn = Object.assign({},state,{ todos:[...state.todos] }); toReturn.todos[index] = text; return toReturn; }; function deleteTodo(state,index){ let toReturn = Object.assign({},state,{ todos:[...state.todos] }); toReturn.todos.splice(index, 1); return toReturn; }; export default function todoApp(state = initialState, action) { switch (action.actionType) { case "addTodo": return addTodo(state,action.text); case "updateTodo": return updateTodo(state,action.index,action.text) case "deleteTodo": return deleteTodo(state,action.index); case "deleteAll": return initialState; default: return state; }; }
  • 22. *X Architectures – Gabriele Falasca Questions?