100 lines
3.2 KiB
TypeScript
100 lines
3.2 KiB
TypeScript
/*
|
|
Copyright 2022 Matrix.org Foundation C.I.C.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
import React from "react";
|
|
import { GroupCallState } from "matrix-js-sdk/src/webrtc/groupCall";
|
|
import { Item } from "@react-stately/collections";
|
|
import { useTranslation } from "react-i18next";
|
|
|
|
import styles from "./AudioPreview.module.css";
|
|
import { SelectInput } from "../input/SelectInput";
|
|
import { Body } from "../typography/Typography";
|
|
|
|
interface Props {
|
|
state: GroupCallState;
|
|
roomName: string;
|
|
audioInput: string;
|
|
audioInputs: MediaDeviceInfo[];
|
|
setAudioInput: (deviceId: string) => void;
|
|
audioOutput: string;
|
|
audioOutputs: MediaDeviceInfo[];
|
|
setAudioOutput: (deviceId: string) => void;
|
|
}
|
|
|
|
export function AudioPreview({
|
|
state,
|
|
roomName,
|
|
audioInput,
|
|
audioInputs,
|
|
setAudioInput,
|
|
audioOutput,
|
|
audioOutputs,
|
|
setAudioOutput,
|
|
}: Props) {
|
|
const { t } = useTranslation();
|
|
|
|
return (
|
|
<>
|
|
<h1>{t("{{roomName}} - Walkie-talkie call", { roomName })}</h1>
|
|
<div className={styles.preview}>
|
|
{state === GroupCallState.LocalCallFeedUninitialized && (
|
|
<Body fontWeight="semiBold" className={styles.microphonePermissions}>
|
|
{t("Microphone permissions needed to join the call.")}
|
|
</Body>
|
|
)}
|
|
{state === GroupCallState.InitializingLocalCallFeed && (
|
|
<Body fontWeight="semiBold" className={styles.microphonePermissions}>
|
|
{t("Accept microphone permissions to join the call.")}
|
|
</Body>
|
|
)}
|
|
{state === GroupCallState.LocalCallFeedInitialized && (
|
|
<>
|
|
<SelectInput
|
|
label={t("Microphone")}
|
|
selectedKey={audioInput}
|
|
onSelectionChange={setAudioInput}
|
|
className={styles.inputField}
|
|
>
|
|
{audioInputs.map(({ deviceId, label }, index) => (
|
|
<Item key={deviceId}>
|
|
{!!label && label.trim().length > 0
|
|
? label
|
|
: t("Microphone {{n}}", { n: index + 1 })}
|
|
</Item>
|
|
))}
|
|
</SelectInput>
|
|
{audioOutputs.length > 0 && (
|
|
<SelectInput
|
|
label={t("Speaker")}
|
|
selectedKey={audioOutput}
|
|
onSelectionChange={setAudioOutput}
|
|
className={styles.inputField}
|
|
>
|
|
{audioOutputs.map(({ deviceId, label }, index) => (
|
|
<Item key={deviceId}>
|
|
{!!label && label.trim().length > 0
|
|
? label
|
|
: t("Speaker {{n}}", { n: index + 1 })}
|
|
</Item>
|
|
))}
|
|
</SelectInput>
|
|
)}
|
|
</>
|
|
)}
|
|
</div>
|
|
</>
|
|
);
|
|
}
|