owncast/web/pages/index.tsx

176 lines
5.3 KiB
TypeScript
Raw Normal View History

/* eslint-disable no-console */
2020-10-26 02:57:23 +01:00
/*
Will display an overview with the following datasources:
1. Current broadcaster.
2. Viewer count.
3. Video settings.
2020-10-01 03:47:18 +02:00
2020-10-26 02:57:23 +01:00
TODO: Link each overview value to the sub-page that focuses on it.
*/
import React, { useState, useEffect, useContext } from "react";
2020-11-13 12:57:57 +01:00
import { Skeleton, Typography, Card, Statistic } from "antd";
2020-10-26 02:57:23 +01:00
import { UserOutlined, ClockCircleOutlined } from "@ant-design/icons";
import { formatDistanceToNow, formatRelative } from "date-fns";
import { ServerStatusContext } from "../utils/server-status-context";
import StatisticItem from "./components/statistic"
2020-10-30 02:01:38 +01:00
import LogTable from "./components/log-table";
2020-11-08 00:32:51 +01:00
import Offline from './offline-notice';
2020-10-30 02:01:38 +01:00
2020-10-26 02:57:23 +01:00
import {
2020-10-30 02:01:38 +01:00
LOGS_WARN,
2020-10-26 02:57:23 +01:00
fetchData,
FETCH_INTERVAL,
2020-11-01 08:01:37 +01:00
} from "../utils/apis";
import { formatIPAddress, isEmptyObject } from "../utils/format";
2020-10-26 02:57:23 +01:00
2020-10-28 08:53:24 +01:00
const { Title } = Typography;
2020-10-26 02:57:23 +01:00
2020-11-08 08:00:02 +01:00
2020-11-08 00:32:51 +01:00
export default function Home() {
const serverStatusData = useContext(ServerStatusContext);
const { broadcaster, serverConfig: configData } = serverStatusData || {};
2020-10-26 02:57:23 +01:00
const { remoteAddr, streamDetails } = broadcaster || {};
const [logsData, setLogs] = useState([]);
2020-10-30 02:01:38 +01:00
const getLogs = async () => {
try {
const result = await fetchData(LOGS_WARN);
setLogs(result);
} catch (error) {
console.log("==== error", error);
}
};
const getMoreStats = () => {
getLogs();
// getConfig();
}
2020-10-26 02:57:23 +01:00
useEffect(() => {
let intervalId = null;
intervalId = setInterval(getMoreStats, FETCH_INTERVAL);
return () => {
clearInterval(intervalId);
}
2020-10-26 02:57:23 +01:00
}, []);
if (isEmptyObject(configData) || isEmptyObject(serverStatusData)) {
2020-10-26 02:57:23 +01:00
return (
<>
2020-10-26 02:57:23 +01:00
<Skeleton active />
<Skeleton active />
<Skeleton active />
</>
2020-10-26 02:57:23 +01:00
);
}
2020-10-23 02:16:28 +02:00
2020-10-26 02:57:23 +01:00
if (!broadcaster) {
return <Offline logs={logsData} />;
2020-10-26 02:57:23 +01:00
}
2020-10-29 02:59:17 +01:00
// map out settings
const videoQualitySettings = configData?.videoSettings?.videoQualityVariants?.map((setting, index) => {
const { audioPassthrough, audioBitrate, videoBitrate, framerate } = setting;
2020-10-26 02:57:23 +01:00
const audioSetting =
audioPassthrough || audioBitrate === 0
2020-11-18 07:48:03 +01:00
? `${streamDetails.audioCodec} ${streamDetails.audioBitrate} kpbs`
: `${audioBitrate} kbps`;
2020-10-26 02:57:23 +01:00
let settingTitle = 'Outbound Stream Details';
settingTitle = (videoQualitySettings?.length > 1) ?
`${settingTitle} ${index + 1}` : settingTitle;
2020-10-26 02:57:23 +01:00
return (
2020-11-13 12:57:57 +01:00
<Card title={settingTitle} type="inner" key={settingTitle}>
<StatisticItem
2020-10-28 08:53:24 +01:00
title="Outbound Video Stream"
value={`${videoBitrate} kbps, ${framerate} fps`}
2020-10-28 08:53:24 +01:00
prefix={null}
/>
<StatisticItem
2020-10-28 08:53:24 +01:00
title="Outbound Audio Stream"
value={audioSetting}
prefix={null}
/>
</Card>
2020-10-26 02:57:23 +01:00
);
});
const { viewerCount, sessionMaxViewerCount } = serverStatusData;
2020-11-18 07:48:03 +01:00
const streamVideoDetailString = `${streamDetails.videoCodec} ${streamDetails.videoBitrate} kbps ${streamDetails.framerate}fps ${streamDetails.width}x${streamDetails.height}`;
const streamAudioDetailString = `${streamDetails.audioCodec} ${streamDetails.audioBitrate} kbps`;
const broadcastDate = new Date(broadcaster.time);
2020-10-26 02:57:23 +01:00
return (
<div className="home-container">
<div className="sections-container">
<div className="section online-status-section">
<Card title="Stream is online" type="inner">
<Statistic
title={`Stream started ${formatRelative(
broadcastDate,
Date.now()
)}`}
value={formatDistanceToNow(broadcastDate)}
prefix={<ClockCircleOutlined />}
/>
<Statistic
title="Viewers"
value={viewerCount}
prefix={<UserOutlined />}
/>
<Statistic
title="Peak viewer count"
value={sessionMaxViewerCount}
prefix={<UserOutlined />}
/>
</Card>
</div>
2020-10-26 02:57:23 +01:00
<div className="section stream-details-section">
2020-10-26 02:57:23 +01:00
<div className="details outbound-details">
{videoQualitySettings}
</div>
2020-10-29 02:59:17 +01:00
<div className="details other-details">
<Card title="Inbound Stream Details" type="inner">
<StatisticItem
title="Input"
value={formatIPAddress(remoteAddr)}
prefix={null}
/>
<StatisticItem
title="Inbound Video Stream"
value={streamVideoDetailString}
prefix={null}
/>
<StatisticItem
title="Inbound Audio Stream"
value={streamAudioDetailString}
prefix={null}
/>
</Card>
<div className="server-detail">
<Card title="Server Config" type="inner">
<StatisticItem
title="Stream key"
value={configData.streamKey}
prefix={null}
/>
<StatisticItem
title="Directory registration enabled"
value={configData.yp.enabled.toString()}
prefix={null}
/>
</Card>
</div>
</div>
</div>
</div>
2020-10-30 02:01:38 +01:00
2020-11-13 12:57:57 +01:00
<LogTable logs={logsData} pageSize={5} />
2020-10-26 02:57:23 +01:00
</div>
);
}