* bugfix: #3344 Reconnecting to the same SFU on membership change * fixup! commit error * Keep useActiveLivekitFocus from changing focus spuriously * Remove redundant fix for spurious focus changes We've now fixed it at the source by prohibiting state changes in useActiveLivekitFocus itself. --------- Co-authored-by: Robin <robin@robin.town>
46 lines
1.6 KiB
TypeScript
46 lines
1.6 KiB
TypeScript
/*
|
|
Copyright 2023, 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 {
|
|
type MatrixRTCSession,
|
|
MatrixRTCSessionEvent,
|
|
} from "matrix-js-sdk/lib/matrixrtc";
|
|
import { useCallback, useRef } from "react";
|
|
import { deepCompare } from "matrix-js-sdk/lib/utils";
|
|
import { logger } from "matrix-js-sdk/lib/logger";
|
|
import { type LivekitFocus, isLivekitFocus } from "matrix-js-sdk/lib/matrixrtc";
|
|
|
|
import { useTypedEventEmitterState } from "../useEvents";
|
|
|
|
/**
|
|
* Gets the currently active (livekit) focus for a MatrixRTC session
|
|
* This logic is specific to livekit foci where the whole call must use one
|
|
* and the same focus.
|
|
*/
|
|
export function useActiveLivekitFocus(
|
|
rtcSession: MatrixRTCSession,
|
|
): LivekitFocus | undefined {
|
|
const prevActiveFocus = useRef<LivekitFocus | undefined>(undefined);
|
|
return useTypedEventEmitterState(
|
|
rtcSession,
|
|
MatrixRTCSessionEvent.MembershipsChanged,
|
|
useCallback(() => {
|
|
const f = rtcSession.getActiveFocus();
|
|
// Only handle foci with type="livekit" for now.
|
|
if (f && isLivekitFocus(f) && !deepCompare(f, prevActiveFocus.current)) {
|
|
const oldestMembership = rtcSession.getOldestMembership();
|
|
logger.info(
|
|
`Got new active focus from membership: ${oldestMembership?.sender}/${oldestMembership?.deviceId}.
|
|
Updated focus (focus switch) from ${JSON.stringify(prevActiveFocus.current)} to ${JSON.stringify(f)}`,
|
|
);
|
|
prevActiveFocus.current = f;
|
|
}
|
|
return prevActiveFocus.current;
|
|
}, [rtcSession]),
|
|
);
|
|
}
|