Skip to content

Instantly share code, notes, and snippets.

@productioncoder
Created November 11, 2018 13:41
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/bd93115fe29b69c1fa133416fb3535ad to your computer and use it in GitHub Desktop.
Save productioncoder/bd93115fe29b69c1fa133416fb3535ad to your computer and use it in GitHub Desktop.
Youtube in React: fetching channel information in WATCH_DETAILS worker saga
export function* fetchWatchDetails(videoId, channelId) {
let requests = [
buildVideoDetailRequest.bind(null, videoId),
buildRelatedVideosRequest.bind(null, videoId),
];
if (channelId) {
requests.push(buildChannelRequest.bind(null, channelId));
}
/* ... /*
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment