Files
element-call/src/controls.ts
T

52 lines
1.4 KiB
TypeScript
Raw Normal View History

/*
Copyright 2024 New Vector Ltd.
SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
Please see LICENSE in the repository root for full details.
*/
import { Subject } from "rxjs";
export interface Controls {
2025-04-29 22:12:07 +02:00
canEnterPip(): boolean;
enablePip(): void;
disablePip(): void;
setOutputDevices(devices: OutputDevice[]): void;
onOutputDeviceSelect?: (id: string) => void;
setOutputEnabled(enabled: boolean): void;
}
export interface OutputDevice {
id: string;
name: string;
2025-05-14 19:55:08 +02:00
forEarpiece?: boolean;
}
export const setPipEnabled$ = new Subject<boolean>();
2025-05-14 18:18:33 +02:00
export const setOutputDevices$ = new Subject<OutputDevice[]>();
export const setOutputEnabled$ = new Subject<boolean>();
window.controls = {
canEnterPip(): boolean {
return setPipEnabled$.observed;
},
enablePip(): void {
if (!setPipEnabled$.observed) throw new Error("No call is running");
setPipEnabled$.next(true);
},
disablePip(): void {
if (!setPipEnabled$.observed) throw new Error("No call is running");
setPipEnabled$.next(false);
},
2025-04-29 22:12:07 +02:00
setOutputDevices(devices: OutputDevice[]): void {
2025-05-14 18:18:33 +02:00
if (!setOutputDevices$.observed)
2025-04-29 22:12:07 +02:00
throw new Error("Output controls are disabled");
2025-05-14 18:18:33 +02:00
setOutputDevices$.next(devices);
2025-04-29 22:12:07 +02:00
},
setOutputEnabled(enabled: boolean): void {
2025-05-14 18:18:33 +02:00
if (!setOutputEnabled$.observed)
2025-04-29 22:12:07 +02:00
throw new Error("Output controls are disabled");
2025-05-14 18:18:33 +02:00
setOutputEnabled$.next(enabled);
2025-04-29 22:12:07 +02:00
},
};