2022-08-30 19:13:39 +00:00
|
|
|
/*
|
2024-09-09 13:57:16 +00:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2022-08-30 19:13:39 +00:00
|
|
|
Copyright 2022 The Matrix.org Foundation C.I.C.
|
|
|
|
|
2024-09-09 13:57:16 +00:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2022-08-30 19:13:39 +00:00
|
|
|
*/
|
|
|
|
|
2022-10-14 13:17:49 +00:00
|
|
|
import { useState, useCallback, useMemo } from "react";
|
2022-08-30 19:13:39 +00:00
|
|
|
|
2023-08-04 11:22:08 +00:00
|
|
|
import type { RoomMember } from "matrix-js-sdk/src/matrix";
|
2023-08-03 12:56:30 +00:00
|
|
|
import { Call, ConnectionState, ElementCall, Layout, CallEvent } from "../models/Call";
|
|
|
|
import { useTypedEventEmitterState, useEventEmitter } from "./useEventEmitter";
|
2022-08-30 19:13:39 +00:00
|
|
|
import { CallStore, CallStoreEvent } from "../stores/CallStore";
|
2022-10-07 20:16:35 +00:00
|
|
|
import SdkConfig, { DEFAULTS } from "../SdkConfig";
|
|
|
|
import { _t } from "../languageHandler";
|
2022-08-30 19:13:39 +00:00
|
|
|
|
|
|
|
export const useCall = (roomId: string): Call | null => {
|
2022-10-07 02:27:28 +00:00
|
|
|
const [call, setCall] = useState(() => CallStore.instance.getCall(roomId));
|
2022-08-30 19:13:39 +00:00
|
|
|
useEventEmitter(CallStore.instance, CallStoreEvent.Call, (call: Call | null, forRoomId: string) => {
|
|
|
|
if (forRoomId === roomId) setCall(call);
|
|
|
|
});
|
|
|
|
return call;
|
|
|
|
};
|
|
|
|
|
2023-01-04 04:44:38 +00:00
|
|
|
export const useCallForWidget = (widgetId: string, roomId: string): Call | null => {
|
|
|
|
const call = useCall(roomId);
|
|
|
|
return call?.widget.id === widgetId ? call : null;
|
|
|
|
};
|
|
|
|
|
2024-01-31 15:18:52 +00:00
|
|
|
export const useConnectionState = (call: Call | null): ConnectionState =>
|
2022-08-30 19:13:39 +00:00
|
|
|
useTypedEventEmitterState(
|
2024-01-31 15:18:52 +00:00
|
|
|
call ?? undefined,
|
2022-08-30 19:13:39 +00:00
|
|
|
CallEvent.ConnectionState,
|
2024-01-31 15:18:52 +00:00
|
|
|
useCallback((state) => state ?? call?.connectionState ?? ConnectionState.Disconnected, [call]),
|
2022-08-30 19:13:39 +00:00
|
|
|
);
|
|
|
|
|
2024-01-31 15:18:52 +00:00
|
|
|
export const useParticipants = (call: Call | null): Map<RoomMember, Set<string>> => {
|
|
|
|
return useTypedEventEmitterState(
|
|
|
|
call ?? undefined,
|
2022-08-30 19:13:39 +00:00
|
|
|
CallEvent.Participants,
|
2024-01-31 15:18:52 +00:00
|
|
|
useCallback((state) => state ?? call?.participants ?? [], [call]),
|
2022-08-30 19:13:39 +00:00
|
|
|
);
|
2024-01-31 15:18:52 +00:00
|
|
|
};
|
2022-10-07 02:27:28 +00:00
|
|
|
|
2024-01-31 15:18:52 +00:00
|
|
|
export const useParticipantCount = (call: Call | null): number => {
|
2022-10-07 20:16:35 +00:00
|
|
|
const participants = useParticipants(call);
|
|
|
|
|
2022-11-28 21:37:32 +00:00
|
|
|
return useMemo(() => {
|
|
|
|
let count = 0;
|
|
|
|
for (const devices of participants.values()) count += devices.size;
|
|
|
|
return count;
|
|
|
|
}, [participants]);
|
2022-10-07 20:16:35 +00:00
|
|
|
};
|
|
|
|
|
2022-11-28 21:37:32 +00:00
|
|
|
export const useParticipatingMembers = (call: Call): RoomMember[] => {
|
2022-10-14 13:17:49 +00:00
|
|
|
const participants = useParticipants(call);
|
|
|
|
|
|
|
|
return useMemo(() => {
|
2022-11-28 21:37:32 +00:00
|
|
|
const members: RoomMember[] = [];
|
|
|
|
for (const [member, devices] of participants) {
|
|
|
|
// Repeat the member for as many devices as they're using
|
|
|
|
for (let i = 0; i < devices.size; i++) members.push(member);
|
|
|
|
}
|
|
|
|
return members;
|
|
|
|
}, [participants]);
|
|
|
|
};
|
|
|
|
|
2024-02-08 16:48:50 +00:00
|
|
|
export const useFull = (call: Call | null): boolean => {
|
2022-11-28 21:37:32 +00:00
|
|
|
return (
|
|
|
|
useParticipantCount(call) >=
|
|
|
|
(SdkConfig.get("element_call").participant_limit ?? DEFAULTS.element_call.participant_limit!)
|
|
|
|
);
|
2022-10-14 13:17:49 +00:00
|
|
|
};
|
|
|
|
|
2024-02-08 16:48:50 +00:00
|
|
|
export const useJoinCallButtonDisabledTooltip = (call: Call | null): string | null => {
|
2022-10-07 20:16:35 +00:00
|
|
|
const isFull = useFull(call);
|
|
|
|
const state = useConnectionState(call);
|
|
|
|
|
2023-09-25 17:12:41 +00:00
|
|
|
if (state === ConnectionState.Connecting) return _t("voip|join_button_tooltip_connecting");
|
|
|
|
if (isFull) return _t("voip|join_button_tooltip_call_full");
|
2022-10-07 20:16:35 +00:00
|
|
|
return null;
|
|
|
|
};
|
|
|
|
|
2022-10-07 02:27:28 +00:00
|
|
|
export const useLayout = (call: ElementCall): Layout =>
|
|
|
|
useTypedEventEmitterState(
|
|
|
|
call,
|
|
|
|
CallEvent.Layout,
|
|
|
|
useCallback((state) => state ?? call.layout, [call]),
|
|
|
|
);
|