2020-10-23 02:16:28 +02:00
|
|
|
import React, { useState, useEffect, useContext } from 'react';
|
2021-01-31 10:38:20 +01:00
|
|
|
import { Table, Row } from 'antd';
|
|
|
|
import { formatDistanceToNow } from 'date-fns';
|
|
|
|
import { UserOutlined } from '@ant-design/icons';
|
|
|
|
import { SortOrder } from 'antd/lib/table/interface';
|
|
|
|
import Chart from './components/chart';
|
|
|
|
import StatisticItem from './components/statistic';
|
2020-10-29 02:36:25 +01:00
|
|
|
|
2020-11-06 03:30:14 +01:00
|
|
|
import { ServerStatusContext } from '../utils/server-status-context';
|
2020-10-23 01:18:18 +02:00
|
|
|
|
2021-01-31 10:38:20 +01:00
|
|
|
import { CONNECTED_CLIENTS, VIEWERS_OVER_TIME, fetchData } from '../utils/apis';
|
2020-10-08 09:17:40 +02:00
|
|
|
|
2020-11-25 09:07:46 +01:00
|
|
|
const FETCH_INTERVAL = 60 * 1000; // 1 min
|
2020-10-12 04:46:48 +02:00
|
|
|
|
|
|
|
export default function ViewersOverTime() {
|
2020-11-06 03:30:14 +01:00
|
|
|
const context = useContext(ServerStatusContext);
|
2021-01-31 10:38:20 +01:00
|
|
|
const { online, viewerCount, overallPeakViewerCount, sessionPeakViewerCount } = context || {};
|
2020-10-23 02:16:28 +02:00
|
|
|
|
2020-10-12 04:46:48 +02:00
|
|
|
const [viewerInfo, setViewerInfo] = useState([]);
|
2020-10-29 02:36:25 +01:00
|
|
|
const [clients, setClients] = useState([]);
|
2020-10-08 09:17:40 +02:00
|
|
|
|
|
|
|
const getInfo = async () => {
|
|
|
|
try {
|
|
|
|
const result = await fetchData(VIEWERS_OVER_TIME);
|
2020-10-12 04:46:48 +02:00
|
|
|
setViewerInfo(result);
|
2020-10-08 09:17:40 +02:00
|
|
|
} catch (error) {
|
2021-01-31 10:38:20 +01:00
|
|
|
console.log('==== error', error);
|
2020-10-29 02:36:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
const result = await fetchData(CONNECTED_CLIENTS);
|
|
|
|
setClients(result);
|
|
|
|
} catch (error) {
|
2021-01-31 10:38:20 +01:00
|
|
|
console.log('==== error', error);
|
2020-10-08 09:17:40 +02:00
|
|
|
}
|
|
|
|
};
|
2020-10-23 02:16:28 +02:00
|
|
|
|
2020-10-08 09:17:40 +02:00
|
|
|
useEffect(() => {
|
|
|
|
let getStatusIntervalId = null;
|
|
|
|
|
|
|
|
getInfo();
|
2020-11-25 09:07:46 +01:00
|
|
|
if (online) {
|
2020-10-23 02:16:28 +02:00
|
|
|
getStatusIntervalId = setInterval(getInfo, FETCH_INTERVAL);
|
2020-10-29 02:36:25 +01:00
|
|
|
// returned function will be called on component unmount
|
2020-10-23 02:16:28 +02:00
|
|
|
return () => {
|
|
|
|
clearInterval(getStatusIntervalId);
|
2020-10-29 02:36:25 +01:00
|
|
|
};
|
2020-10-08 09:17:40 +02:00
|
|
|
}
|
2020-10-29 02:36:25 +01:00
|
|
|
|
|
|
|
return () => [];
|
2020-11-25 09:07:46 +01:00
|
|
|
}, [online]);
|
2020-10-23 02:16:28 +02:00
|
|
|
|
2020-10-29 02:36:25 +01:00
|
|
|
// todo - check to see if broadcast active has changed. if so, start polling.
|
2020-10-23 02:16:28 +02:00
|
|
|
|
|
|
|
if (!viewerInfo.length) {
|
2021-01-31 10:38:20 +01:00
|
|
|
return 'no info';
|
2020-10-23 02:16:28 +02:00
|
|
|
}
|
2020-10-08 09:17:40 +02:00
|
|
|
|
2020-10-29 02:36:25 +01:00
|
|
|
const columns = [
|
|
|
|
{
|
2021-01-31 10:38:20 +01:00
|
|
|
title: 'User name',
|
|
|
|
dataIndex: 'username',
|
|
|
|
key: 'username',
|
|
|
|
render: username => username || '-',
|
2020-10-29 02:36:25 +01:00
|
|
|
sorter: (a, b) => a.username - b.username,
|
2021-01-31 10:38:20 +01:00
|
|
|
sortDirections: ['descend', 'ascend'] as SortOrder[],
|
2020-10-29 02:36:25 +01:00
|
|
|
},
|
|
|
|
{
|
2021-01-31 10:38:20 +01:00
|
|
|
title: 'Messages sent',
|
|
|
|
dataIndex: 'messageCount',
|
|
|
|
key: 'messageCount',
|
2020-10-29 02:36:25 +01:00
|
|
|
sorter: (a, b) => a.messageCount - b.messageCount,
|
2021-01-31 10:38:20 +01:00
|
|
|
sortDirections: ['descend', 'ascend'] as SortOrder[],
|
2020-10-29 02:36:25 +01:00
|
|
|
},
|
|
|
|
{
|
2021-01-31 10:38:20 +01:00
|
|
|
title: 'Connected Time',
|
|
|
|
dataIndex: 'connectedAt',
|
|
|
|
key: 'connectedAt',
|
|
|
|
render: time => formatDistanceToNow(new Date(time)),
|
2020-12-29 10:13:39 +01:00
|
|
|
sorter: (a, b) => new Date(a.connectedAt).getTime() - new Date(b.connectedAt).getTime(),
|
2021-01-31 10:38:20 +01:00
|
|
|
sortDirections: ['descend', 'ascend'] as SortOrder[],
|
2020-10-29 02:36:25 +01:00
|
|
|
},
|
|
|
|
{
|
2021-01-31 10:38:20 +01:00
|
|
|
title: 'User Agent',
|
|
|
|
dataIndex: 'userAgent',
|
|
|
|
key: 'userAgent',
|
2020-10-29 02:36:25 +01:00
|
|
|
},
|
|
|
|
{
|
2021-01-31 10:38:20 +01:00
|
|
|
title: 'Location',
|
|
|
|
dataIndex: 'geo',
|
|
|
|
key: 'geo',
|
|
|
|
render: geo => (geo ? `${geo.regionName}, ${geo.countryCode}` : '-'),
|
2020-10-29 02:36:25 +01:00
|
|
|
},
|
|
|
|
];
|
|
|
|
|
2020-10-08 09:17:40 +02:00
|
|
|
return (
|
2020-10-21 10:19:29 +02:00
|
|
|
<div>
|
2020-11-24 06:13:30 +01:00
|
|
|
<Row gutter={[16, 16]} justify="space-around">
|
2020-10-29 02:36:25 +01:00
|
|
|
<StatisticItem
|
|
|
|
title="Current viewers"
|
2020-11-06 03:30:14 +01:00
|
|
|
value={viewerCount.toString()}
|
2020-10-29 02:36:25 +01:00
|
|
|
prefix={<UserOutlined />}
|
|
|
|
/>
|
|
|
|
<StatisticItem
|
|
|
|
title="Peak viewers this session"
|
2020-11-06 03:30:14 +01:00
|
|
|
value={sessionPeakViewerCount.toString()}
|
|
|
|
prefix={<UserOutlined />}
|
|
|
|
/>
|
|
|
|
<StatisticItem
|
|
|
|
title="Peak viewers overall"
|
|
|
|
value={overallPeakViewerCount.toString()}
|
2020-10-29 02:36:25 +01:00
|
|
|
prefix={<UserOutlined />}
|
|
|
|
/>
|
|
|
|
</Row>
|
2020-11-29 03:14:08 +01:00
|
|
|
<Chart title="Viewers" data={viewerInfo} color="#2087E2" unit="" />
|
2021-01-31 10:38:20 +01:00
|
|
|
<Table dataSource={clients} columns={columns} rowKey={row => row.clientID} />
|
2020-10-08 09:17:40 +02:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|