// @flow import React from 'react'; import Button from 'component/button'; import UriIndicator from 'component/uriIndicator'; import I18nMessage from 'component/i18nMessage'; import { withRouter } from 'react-router'; import debounce from 'util/debounce'; import * as ICONS from 'constants/icons'; const DEBOUNCE_SCROLL_HANDLER_MS = 150; const CLASSNAME_AUTOPLAY_COUNTDOWN = 'autoplay-countdown'; type Props = { history: { push: (string) => void }, nextRecommendedClaim: ?StreamClaim, nextRecommendedUri: string, modal: { id: string, modalProps: {} }, skipPaid: boolean, doNavigate: () => void, doReplay: () => void, doPrevious: () => void, onCanceled: () => void, }; function AutoplayCountdown(props: Props) { const { nextRecommendedUri, nextRecommendedClaim, history: { push }, modal, skipPaid, doNavigate, doReplay, doPrevious, onCanceled, } = props; const nextTitle = nextRecommendedClaim && nextRecommendedClaim.value && nextRecommendedClaim.value.title; /* this value is coupled with CSS timing variables on .autoplay-countdown__timer */ const countdownTime = 5; const [timer, setTimer] = React.useState(countdownTime); const [timerCanceled, setTimerCanceled] = React.useState(false); const [timerPaused, setTimerPaused] = React.useState(false); const anyModalPresent = modal !== undefined && modal !== null; const isTimerPaused = timerPaused || anyModalPresent; function shouldPauseAutoplay() { const elm = document.querySelector(`.${CLASSNAME_AUTOPLAY_COUNTDOWN}`); return elm && elm.getBoundingClientRect().top < 0; } // Update 'setTimerPaused'. React.useEffect(() => { // Ensure correct 'setTimerPaused' on initial render. setTimerPaused(shouldPauseAutoplay()); const handleScroll = debounce((e) => { setTimerPaused(shouldPauseAutoplay()); }, DEBOUNCE_SCROLL_HANDLER_MS); window.addEventListener('scroll', handleScroll); return () => window.removeEventListener('scroll', handleScroll); }, []); // Update countdown timer. React.useEffect(() => { let interval; if (!timerCanceled && nextRecommendedUri) { if (isTimerPaused) { clearInterval(interval); setTimer(countdownTime); } else { interval = setInterval(() => { const newTime = timer - 1; if (newTime === 0) { if (skipPaid) setTimer(countdownTime); doNavigate(); } else { setTimer(timer - 1); } }, 1000); } } return () => { clearInterval(interval); }; }, [timer, doNavigate, push, timerCanceled, isTimerPaused, nextRecommendedUri, skipPaid]); if (timerCanceled || !nextRecommendedUri) { return null; } return (
}}> Up Next by %channel%
{nextTitle}
{isTimerPaused && (
{__('Autoplay timer paused.')}{' '}
)} {!isTimerPaused && (
{__('Playing %message% in %seconds_left% seconds...', { message: skipPaid ? __('next free content') : __(''), seconds_left: timer, })}{' '}
)} {skipPaid && doPrevious && (
)}
); } export default withRouter(AutoplayCountdown);