2021-12-16 22:59:13 +01:00
|
|
|
// @flow
|
|
|
|
|
|
|
|
import React from 'react';
|
|
|
|
import * as CS from 'constants/claim_search';
|
|
|
|
import moment from 'moment';
|
|
|
|
import * as ICONS from 'constants/icons';
|
|
|
|
import { useIsMediumScreen, useIsLargeScreen } from 'effects/use-screensize';
|
|
|
|
import ClaimListDiscover from 'component/claimListDiscover';
|
|
|
|
import Button from 'component/button';
|
|
|
|
import { LIVESTREAM_UPCOMING_BUFFER } from 'constants/livestream';
|
|
|
|
|
|
|
|
type Props = {
|
|
|
|
channelIds: Array<string>,
|
|
|
|
tileLayout: boolean,
|
|
|
|
liveUris: Array<string>,
|
|
|
|
limitClaimsPerChannel?: number,
|
|
|
|
};
|
|
|
|
|
|
|
|
const ScheduledStreams = (props: Props) => {
|
|
|
|
const { channelIds, tileLayout, liveUris = [], limitClaimsPerChannel } = props;
|
|
|
|
const isMediumScreen = useIsMediumScreen();
|
|
|
|
const isLargeScreen = useIsLargeScreen();
|
|
|
|
|
|
|
|
const [totalUpcomingLivestreams, setTotalUpcomingLivestreams] = React.useState(0);
|
|
|
|
const [showAllUpcoming, setShowAllUpcoming] = React.useState(false);
|
|
|
|
|
|
|
|
const showUpcomingLivestreams = totalUpcomingLivestreams > 0;
|
|
|
|
|
|
|
|
const upcomingMax = React.useMemo(() => {
|
|
|
|
if (showAllUpcoming) return 50;
|
|
|
|
if (isLargeScreen) return 6;
|
|
|
|
if (isMediumScreen) return 3;
|
|
|
|
return 4;
|
|
|
|
}, [showAllUpcoming, isMediumScreen, isLargeScreen]);
|
|
|
|
|
|
|
|
const loadedCallback = (total) => {
|
|
|
|
setTotalUpcomingLivestreams(total);
|
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
2021-12-22 17:12:44 +01:00
|
|
|
<div className={'mb-xl'} style={{ display: showUpcomingLivestreams ? 'block' : 'none' }}>
|
|
|
|
<ClaimListDiscover
|
|
|
|
useSkeletonScreen={false}
|
|
|
|
channelIds={channelIds}
|
|
|
|
limitClaimsPerChannel={limitClaimsPerChannel}
|
|
|
|
pageSize={50}
|
|
|
|
streamType={'all'}
|
|
|
|
hasNoSource
|
|
|
|
orderBy={CS.ORDER_BY_NEW_ASC}
|
|
|
|
tileLayout={tileLayout}
|
|
|
|
releaseTime={`>${moment().subtract(LIVESTREAM_UPCOMING_BUFFER, 'minutes').startOf('minute').unix()}`}
|
|
|
|
hideAdvancedFilter
|
|
|
|
hideFilters
|
|
|
|
infiniteScroll={false}
|
|
|
|
showNoSourceClaims
|
|
|
|
hideLayoutButton
|
|
|
|
header={__('Upcoming Livestreams')}
|
|
|
|
maxClaimRender={upcomingMax}
|
|
|
|
excludeUris={liveUris}
|
|
|
|
loadedCallback={loadedCallback}
|
|
|
|
/>
|
|
|
|
{totalUpcomingLivestreams > upcomingMax && !showAllUpcoming && (
|
|
|
|
<div className="livestream-list--view-more">
|
|
|
|
<Button
|
|
|
|
label={__('Show more upcoming livestreams')}
|
|
|
|
button="link"
|
|
|
|
iconRight={ICONS.ARROW_RIGHT}
|
|
|
|
className="claim-grid__title--secondary"
|
|
|
|
onClick={() => {
|
|
|
|
setShowAllUpcoming(true);
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
{showAllUpcoming && (
|
|
|
|
<div className="livestream-list--view-more">
|
|
|
|
<Button
|
|
|
|
label={__('Show less upcoming livestreams')}
|
|
|
|
button="link"
|
|
|
|
iconRight={ICONS.ARROW_RIGHT}
|
|
|
|
className="claim-grid__title--secondary"
|
|
|
|
onClick={() => {
|
|
|
|
setShowAllUpcoming(false);
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
</div>
|
2021-12-16 22:59:13 +01:00
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default ScheduledStreams;
|