Skip to content

Instantly share code, notes, and snippets.

@productioncoder
Created November 14, 2018 19:44
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/836d9b15d13e41fbc61dca45af428ba1 to your computer and use it in GitHub Desktop.
Save productioncoder/836d9b15d13e41fbc61dca45af428ba1 to your computer and use it in GitHub Desktop.
Youtube in React: fetching comment threads in Watch component
import {
buildVideoDetailRequest,
buildRelatedVideosRequest,
buildChannelRequest,
buildCommentThreadRequest
} from '../api/youtube-api';
/* ... */
export function* fetchWatchDetails(videoId, channelId) {
let requests = [
buildVideoDetailRequest.bind(null, videoId),
buildRelatedVideosRequest.bind(null, videoId),
buildCommentThreadRequest.bind(null, videoId)
];
/* ... */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment