bump element call to 0.16.3, apply cinny theme to element call ui, replace element call lobby (backup iframe) with custom ui and only use element call for the in-call ui

This commit is contained in:
YoJames2019
2026-02-09 00:45:48 -05:00
parent 7bca8fb911
commit 9e1aab2973
12 changed files with 302 additions and 316 deletions
+3 -3
View File
@@ -300,7 +300,7 @@ export function Space() {
const selectedRoomId = useSelectedRoom();
const lobbySelected = useSpaceLobbySelected(spaceIdOrAlias);
const searchSelected = useSpaceSearchSelected(spaceIdOrAlias);
const { isCallActive, activeCallRoomId } = useCallState();
const { isActiveCallReady, activeCallRoomId } = useCallState();
const [closedCategories, setClosedCategories] = useAtom(useClosedNavCategoriesAtom());
@@ -325,10 +325,10 @@ export function Space() {
const showRoomAnyway =
roomToUnread.has(roomId) ||
roomId === selectedRoomId ||
(isCallActive && activeCallRoomId === roomId);
(isActiveCallReady && activeCallRoomId === roomId);
return !showRoomAnyway;
},
[space.roomId, closedCategories, roomToUnread, selectedRoomId, activeCallRoomId, isCallActive]
[space.roomId, closedCategories, roomToUnread, selectedRoomId, activeCallRoomId, isActiveCallReady]
),
useCallback(
(sId) => closedCategories.has(makeNavCategoryId(space.roomId, sId)),