Skip to content

Instantly share code, notes, and snippets.

@productioncoder
Created November 11, 2018 21:11
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 productioncoder/ab1137435f5ed2ab1cf169f179d6d796 to your computer and use it in GitHub Desktop.
Save productioncoder/ab1137435f5ed2ab1cf169f179d6d796 to your computer and use it in GitHub Desktop.
Youtube in React: channel reducer reacts to VIDEO_DETAILS_SUCCESS action
export default function (state = initialState, action) {
switch (action.type) {
case WATCH_DETAILS[SUCCESS]:
return reduceWatchDetails(action.response, state);
case VIDEO_DETAILS[SUCCESS]:
return reduceVideoDetails(action.response, state);
default:
return state;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment