2022-08-30 19:13:39 +00:00
|
|
|
/*
|
|
|
|
Copyright 2022 The 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.
|
|
|
|
*/
|
|
|
|
|
2022-10-14 13:17:49 +00:00
|
|
|
import { useState, useCallback, useMemo } from "react";
|
2022-08-30 19:13:39 +00:00
|
|
|
|
|
|
|
import type { RoomMember } from "matrix-js-sdk/src/models/room-member";
|
2022-10-07 20:16:35 +00:00
|
|
|
import { Call, ConnectionState, ElementCall, Layout } from "../models/Call";
|
2022-08-30 19:13:39 +00:00
|
|
|
import { useTypedEventEmitterState } from "./useEventEmitter";
|
|
|
|
import { CallEvent } from "../models/Call";
|
|
|
|
import { CallStore, CallStoreEvent } from "../stores/CallStore";
|
|
|
|
import { useEventEmitter } from "./useEventEmitter";
|
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;
|
|
|
|
};
|
|
|
|
|
|
|
|
export const useConnectionState = (call: Call): ConnectionState =>
|
|
|
|
useTypedEventEmitterState(
|
|
|
|
call,
|
|
|
|
CallEvent.ConnectionState,
|
|
|
|
useCallback((state) => state ?? call.connectionState, [call]),
|
|
|
|
);
|
|
|
|
|
2022-11-28 21:37:32 +00:00
|
|
|
export const useParticipants = (call: Call): Map<RoomMember, Set<string>> =>
|
2022-08-30 19:13:39 +00:00
|
|
|
useTypedEventEmitterState(
|
|
|
|
call,
|
|
|
|
CallEvent.Participants,
|
|
|
|
useCallback((state) => state ?? call.participants, [call]),
|
|
|
|
);
|
2022-10-07 02:27:28 +00:00
|
|
|
|
2022-11-28 21:37:32 +00:00
|
|
|
export const useParticipantCount = (call: Call): 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]);
|
|
|
|
};
|
|
|
|
|
|
|
|
export const useFull = (call: Call): boolean => {
|
|
|
|
return (
|
|
|
|
useParticipantCount(call) >=
|
|
|
|
(SdkConfig.get("element_call").participant_limit ?? DEFAULTS.element_call.participant_limit!)
|
|
|
|
);
|
2022-10-14 13:17:49 +00:00
|
|
|
};
|
|
|
|
|
2022-11-28 21:37:32 +00:00
|
|
|
export const useJoinCallButtonDisabledTooltip = (call: Call): string | null => {
|
2022-10-07 20:16:35 +00:00
|
|
|
const isFull = useFull(call);
|
|
|
|
const state = useConnectionState(call);
|
|
|
|
|
|
|
|
if (state === ConnectionState.Connecting) return _t("Connecting");
|
|
|
|
if (isFull) return _t("Sorry — this call is currently full");
|
|
|
|
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]),
|
|
|
|
);
|