import React, { useState, useEffect, useContext } from 'react'; import { Row, Col, Typography, Menu, Dropdown, Spin, Alert } from 'antd'; import { DownOutlined, UserOutlined } from '@ant-design/icons'; import { getUnixTime, sub } from 'date-fns'; import { Chart } from '../../components/Chart'; import { StatisticItem } from '../../components/StatisticItem'; import { ViewerTable } from '../../components/ViewerTable'; import { ServerStatusContext } from '../../utils/server-status-context'; import { VIEWERS_OVER_TIME, ACTIVE_VIEWER_DETAILS, fetchData } from '../../utils/apis'; const FETCH_INTERVAL = 60 * 1000; // 1 min export default function ViewersOverTime() { const context = useContext(ServerStatusContext); const { online, broadcaster, viewerCount, overallPeakViewerCount, sessionPeakViewerCount } = context || {}; let streamStart; if (broadcaster && broadcaster.time) { streamStart = new Date(broadcaster.time); } const times = [ { title: 'Current stream', start: streamStart }, { title: 'Last 12 hours', start: sub(new Date(), { hours: 12 }) }, { title: 'Last 24 hours', start: sub(new Date(), { hours: 24 }) }, { title: 'Last 7 days', start: sub(new Date(), { days: 7 }) }, { title: 'Last 30 days', start: sub(new Date(), { days: 30 }) }, { title: 'Last 3 months', start: sub(new Date(), { months: 3 }) }, { title: 'Last 6 months', start: sub(new Date(), { months: 6 }) }, ]; const [loadingChart, setLoadingChart] = useState(true); const [viewerInfo, setViewerInfo] = useState([]); const [viewerDetails, setViewerDetails] = useState([]); const [timeWindowStart, setTimeWindowStart] = useState(times[1]); const getInfo = async () => { try { const url = `${VIEWERS_OVER_TIME}?windowStart=${getUnixTime(timeWindowStart.start)}`; const result = await fetchData(url); setViewerInfo(result); setLoadingChart(false); } catch (error) { console.log('==== error', error); } try { const result = await fetchData(ACTIVE_VIEWER_DETAILS); setViewerDetails(result); } catch (error) { console.log('==== error', error); } }; useEffect(() => { let getStatusIntervalId = null; getInfo(); if (online) { getStatusIntervalId = setInterval(getInfo, FETCH_INTERVAL); // returned function will be called on component unmount return () => { clearInterval(getStatusIntervalId); }; } return () => []; }, [online, timeWindowStart]); const onTimeWindowSelect = ({ key }) => { setTimeWindowStart(times[key]); }; const menu = ( {online && streamStart && ( {times[0].title} )} {times.slice(1).map((time, index) => ( // The array is hard coded, so it's safe to use the index as a key. // eslint-disable-next-line react/no-array-index-key {time.title} ))} ); return ( <> Viewer Info
{online && ( } /> )} } /> } /> {!viewerInfo.length && ( )} {viewerInfo.length > 0 && ( )} ); }