Skip to content

Instantly share code, notes, and snippets.

@alaboudi
Created March 18, 2019 17:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alaboudi/60ae90d81a87914b40df6bfc3223733b to your computer and use it in GitHub Desktop.
Save alaboudi/60ae90d81a87914b40df6bfc3223733b to your computer and use it in GitHub Desktop.
// scoreboard-reducer.js
const INITIAL_STATE = {
home: 0,
away: 0,
}
export const scoreboardReducer = (state = INITIAL_STATE, action) {
switch (action.type) {
case 'INCREMENT_SCORE':
const scoringSide = action.payload.team
return {...state, [scoringSide]: state[scoringSide] + 1 };
default:
return state;
}
}
// audience-reducer.js
const INITIAL_STATE = 0; // represents audience excitement;
export const audienceExcitementReducer = (state = INITIAL_STATE, action) {
switch (action.type) {
case 'INCREASE_AUDIENCE_EXCITEMENT':
return state + 1; // audience gets more excited
default:
return state;
}
}
// coupling in some container component.js
export class Game extends React.Component {
....
onGoalScored(scoringTeam) {
this.props.dispatch({type: 'INCREMENT_SCORE', team: scoringTeam });
this.props.dispatch({type: 'INCREASE_AUDIENCE_EXCITEMENT'});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment