Skip to content

Commit

Permalink
Use modal to show detailed stats instead of alert
Browse files Browse the repository at this point in the history
  • Loading branch information
hughns committed Dec 18, 2024
1 parent 5ccd840 commit 2c1676b
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 11 deletions.
14 changes: 14 additions & 0 deletions src/RTCConnectionStats.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
/*
Copyright 2024 New Vector Ltd.
SPDX-License-Identifier: AGPL-3.0-only
Please see LICENSE in the repository root for full details.
*/

.modal pre {
font-size: var(--font-size-micro);
}

.icon {
color: var(--cpd-color-text-primary);
}
49 changes: 38 additions & 11 deletions src/RTCConnectionStats.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,29 +5,59 @@ SPDX-License-Identifier: AGPL-3.0-only
Please see LICENSE in the repository root for full details.
*/

import { type FC } from "react";
import { useState, type FC } from "react";
import { IconButton, Text } from "@vector-im/compound-web";
import {
MicOnSolidIcon,
VideoCallSolidIcon,
} from "@vector-im/compound-design-tokens/assets/web/icons";

import { Modal } from "./Modal";
import styles from "./RTCConnectionStats.module.css";

interface Props {
audio?: RTCInboundRtpStreamStats | RTCOutboundRtpStreamStats;
video?: RTCInboundRtpStreamStats | RTCOutboundRtpStreamStats;
}

// This is only used in developer mode for debugging purposes, so we don't need full localization
export const RTCConnectionStats: FC<Props> = ({ audio, video, ...rest }) => {
const [showModal, setShowModal] = useState(false);
const [modalContents, setModalContents] = useState<
"video" | "audio" | "none"
>("none");

const showFullModal = (contents: "video" | "audio"): void => {
setShowModal(true);
setModalContents(contents);
};

const onDismissModal = (): void => {
setShowModal(false);
setModalContents("none");
};
return (
<div>
<Modal
title="RTC Connection Stats"
open={showModal}
onDismiss={onDismissModal}
>
<div className={styles.modal}>
<pre>
{modalContents !== "none" &&
JSON.stringify(
modalContents === "video" ? video : audio,
null,
2,
)}
</pre>
</div>
</Modal>
{audio && (
<div>
<IconButton
onClick={() => alert(JSON.stringify(audio, null, 2))}
size="sm"
>
<MicOnSolidIcon />
<IconButton onClick={() => showFullModal("audio")} size="sm">
<MicOnSolidIcon className={styles.icon} />
</IconButton>
{"jitter" in audio && typeof audio.jitter === "number" && (
<Text as="span" size="xs" title="jitter">
Expand All @@ -38,11 +68,8 @@ export const RTCConnectionStats: FC<Props> = ({ audio, video, ...rest }) => {
)}
{video && (
<div>
<IconButton
onClick={() => alert(JSON.stringify(video, null, 2))}
size="sm"
>
<VideoCallSolidIcon />
<IconButton onClick={() => showFullModal("video")} size="sm">
<VideoCallSolidIcon className={styles.icon} />
</IconButton>
{video?.framesPerSecond && (
<Text as="span" size="xs" title="frame rate">
Expand Down

0 comments on commit 2c1676b

Please sign in to comment.