Skip to content

Instantly share code, notes, and snippets.

@productioncoder
Last active November 25, 2018 12:34
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/60d64a75e442b60d6b7955bdb665b1c4 to your computer and use it in GitHub Desktop.
Save productioncoder/60d64a75e442b60d6b7955bdb665b1c4 to your computer and use it in GitHub Desktop.
Youtube in React: deleting previous search results to prevent flickering
import {SEARCH_FOR_VIDEOS} from '../actions/search';
import {REQUEST, SUCCESS} from '../actions';
export default function (state = {}, action) {
switch (action.type) {
case SEARCH_FOR_VIDEOS[SUCCESS]:
return reduceSearchForVideos(action.response, action.searchQuery, state);
case SEARCH_FOR_VIDEOS[REQUEST]:
// delete the previous search element if we don't load more search results for the previous search query
return action.nextPageToken ? state : {};
default:
return state;
}
}
/* ... */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment