Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8b1b34db6a |
8 changed files with 43 additions and 445 deletions
|
|
@ -18,12 +18,10 @@ export default function ScreenshareButton({
|
||||||
className,
|
className,
|
||||||
iconSize,
|
iconSize,
|
||||||
tooltip,
|
tooltip,
|
||||||
defaultPortal,
|
|
||||||
}: {
|
}: {
|
||||||
className?: string;
|
className?: string;
|
||||||
iconSize?: number;
|
iconSize?: number;
|
||||||
tooltip?: string;
|
tooltip?: string;
|
||||||
defaultPortal?: boolean;
|
|
||||||
}) {
|
}) {
|
||||||
const isScreensharing = useCall((state) => state.screenShareEnabled);
|
const isScreensharing = useCall((state) => state.screenShareEnabled);
|
||||||
const screenRef = useCall((state) => state.screenRef);
|
const screenRef = useCall((state) => state.screenRef);
|
||||||
|
|
@ -32,9 +30,8 @@ export default function ScreenshareButton({
|
||||||
const [menuOpen, setMenuOpen] = useState(false);
|
const [menuOpen, setMenuOpen] = useState(false);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (defaultPortal) return;
|
|
||||||
setPortalContainer(screenRef?.current ?? undefined);
|
setPortalContainer(screenRef?.current ?? undefined);
|
||||||
}, [screenRef, defaultPortal]);
|
}, [screenRef]);
|
||||||
|
|
||||||
async function startWebShare() {
|
async function startWebShare() {
|
||||||
try {
|
try {
|
||||||
|
|
@ -113,9 +110,7 @@ export default function ScreenshareButton({
|
||||||
/>
|
/>
|
||||||
<PopoverContent
|
<PopoverContent
|
||||||
className="flex w-40 flex-col gap-2"
|
className="flex w-40 flex-col gap-2"
|
||||||
portalProps={{
|
portalProps={{ container: portalContainer }}
|
||||||
container: defaultPortal ? undefined : portalContainer,
|
|
||||||
}}
|
|
||||||
>
|
>
|
||||||
<Button
|
<Button
|
||||||
disabled={isScreensharing}
|
disabled={isScreensharing}
|
||||||
|
|
@ -146,11 +141,7 @@ export default function ScreenshareButton({
|
||||||
</PopoverContent>
|
</PopoverContent>
|
||||||
</Popover>
|
</Popover>
|
||||||
{tooltip && (
|
{tooltip && (
|
||||||
<TooltipContent
|
<TooltipContent portalProps={{ container: portalContainer }}>
|
||||||
portalProps={{
|
|
||||||
container: defaultPortal ? undefined : portalContainer,
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
{tooltip}
|
{tooltip}
|
||||||
</TooltipContent>
|
</TooltipContent>
|
||||||
)}
|
)}
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,6 @@ import {
|
||||||
import { Track, type Participant } from "livekit-client";
|
import { Track, type Participant } from "livekit-client";
|
||||||
import { useEffect, useRef, useState } from "react";
|
import { useEffect, useRef, useState } from "react";
|
||||||
import { useUser, type User } from "@tensamin/user/context";
|
import { useUser, type User } from "@tensamin/user/context";
|
||||||
import { useIsSpeaking } from "../../speakingIndicator";
|
|
||||||
import VideoViewer from "../videoViewer";
|
import VideoViewer from "../videoViewer";
|
||||||
import { HeadphoneOff, MicOff, Monitor, Plus, Shield } from "lucide-react";
|
import { HeadphoneOff, MicOff, Monitor, Plus, Shield } from "lucide-react";
|
||||||
|
|
||||||
|
|
@ -104,7 +103,6 @@ export default function Base({
|
||||||
const focusedParticipantId = useCall((state) => state.focusedParticipantId);
|
const focusedParticipantId = useCall((state) => state.focusedParticipantId);
|
||||||
const view = useCall((state) => state.view);
|
const view = useCall((state) => state.view);
|
||||||
const [user, setUser] = useState<User | null>(null);
|
const [user, setUser] = useState<User | null>(null);
|
||||||
const isSpeaking = useIsSpeaking(user?.user_id ?? -1);
|
|
||||||
const screenSharePublication = getTrackPublicationBySource(
|
const screenSharePublication = getTrackPublicationBySource(
|
||||||
participant,
|
participant,
|
||||||
Track.Source.ScreenShare,
|
Track.Source.ScreenShare,
|
||||||
|
|
@ -152,12 +150,12 @@ export default function Base({
|
||||||
|
|
||||||
const onClick = () => {
|
const onClick = () => {
|
||||||
if (view === "grid") {
|
if (view === "grid") {
|
||||||
focusParticipant(user.user_id, type);
|
focusParticipant(user.user_id);
|
||||||
} else {
|
} else {
|
||||||
if (user.user_id === focusedParticipantId) {
|
if (user.user_id === focusedParticipantId) {
|
||||||
setCallView("grid");
|
setCallView("grid");
|
||||||
} else {
|
} else {
|
||||||
focusParticipant(user.user_id, type);
|
focusParticipant(user.user_id);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
@ -213,9 +211,9 @@ export default function Base({
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
ref={currentCard}
|
ref={currentCard}
|
||||||
className={`transition-all duration-150 z-10 bg-card absolute top-0 left-0 w-full h-full flex gap-2 items-center justify-center ${
|
className={`z-10 bg-card absolute top-0 left-0 w-full h-full flex gap-2 items-center justify-center ${
|
||||||
flush ? "rounded-none" : "rounded-sm"
|
flush ? "rounded-none" : "rounded-sm"
|
||||||
} ${type === "user" && isSpeaking ? "border-4 border-(--primary-foreground-alt)/75" : "border-0"}`}
|
}`}
|
||||||
style={{ containerType: "size" }}
|
style={{ containerType: "size" }}
|
||||||
>
|
>
|
||||||
{/* Detect video / user and place here */}
|
{/* Detect video / user and place here */}
|
||||||
|
|
|
||||||
|
|
@ -20,18 +20,24 @@ import LeaveButton from "./buttons/leave";
|
||||||
|
|
||||||
export default function SidebarBox() {
|
export default function SidebarBox() {
|
||||||
const state = useCall((store) => store.state);
|
const state = useCall((store) => store.state);
|
||||||
|
const screenRef = useCall((store) => store.screenRef);
|
||||||
const isMobile = useIsMobile();
|
const isMobile = useIsMobile();
|
||||||
|
const [portalContainer, setPortalContainer] = useState<HTMLElement>();
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
setPortalContainer(screenRef?.current ?? undefined);
|
||||||
|
}, [screenRef]);
|
||||||
|
|
||||||
return state === "closed" ? null : (
|
return state === "closed" ? null : (
|
||||||
<Card className="p-1.5 gap-2" hidden={isMobile}>
|
<Card className="p-1.5 gap-2" hidden={isMobile}>
|
||||||
<CardHeader className="p-0! pb-2! border-b-2">
|
<CardHeader className="p-0! pb-2! border-b-2">
|
||||||
<ConnectionBar />
|
<ConnectionBar portalContainer={portalContainer} />
|
||||||
</CardHeader>
|
</CardHeader>
|
||||||
<CardContent className="p-0! flex flex-col gap-1">
|
<CardContent className="p-0! flex flex-col gap-1">
|
||||||
<div className="flex justify-start gap-1">
|
<div className="flex justify-start gap-1">
|
||||||
<MuteButton className="w-9 h-9" />
|
<MuteButton className="w-9 h-9" />
|
||||||
<DeafButton className="w-9 h-9" />
|
<DeafButton className="w-9 h-9" />
|
||||||
<ScreenshareButton className="w-9 h-9" defaultPortal />
|
<ScreenshareButton className="w-9 h-9" />
|
||||||
<LeaveButton className="w-9 h-9" />
|
<LeaveButton className="w-9 h-9" />
|
||||||
</div>
|
</div>
|
||||||
</CardContent>
|
</CardContent>
|
||||||
|
|
@ -39,7 +45,7 @@ export default function SidebarBox() {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
function ConnectionBar() {
|
function ConnectionBar({ portalContainer }: { portalContainer?: HTMLElement }) {
|
||||||
const state = useCall((store) => store.state);
|
const state = useCall((store) => store.state);
|
||||||
const isEncrypted = useCall((store) => store.isEncrypted);
|
const isEncrypted = useCall((store) => store.isEncrypted);
|
||||||
const callId = useCall((store) => store.callId);
|
const callId = useCall((store) => store.callId);
|
||||||
|
|
@ -62,7 +68,7 @@ function ConnectionBar() {
|
||||||
{state === "closed" && "Closed"}
|
{state === "closed" && "Closed"}
|
||||||
{state === "closing" && "Closing"}
|
{state === "closing" && "Closing"}
|
||||||
|
|
||||||
<TinyPingGraph />
|
<TinyPingGraph portalContainer={portalContainer} />
|
||||||
|
|
||||||
{isEncrypted ? (
|
{isEncrypted ? (
|
||||||
<Lock color="var(--primary-foreground-alt)" />
|
<Lock color="var(--primary-foreground-alt)" />
|
||||||
|
|
@ -72,12 +78,18 @@ function ConnectionBar() {
|
||||||
</Button>
|
</Button>
|
||||||
}
|
}
|
||||||
/>
|
/>
|
||||||
<TooltipContent>Click to open call page</TooltipContent>
|
<TooltipContent portalProps={{ container: portalContainer }}>
|
||||||
|
Click to open call page
|
||||||
|
</TooltipContent>
|
||||||
</Tooltip>
|
</Tooltip>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
export function TinyPingGraph() {
|
export function TinyPingGraph({
|
||||||
|
portalContainer,
|
||||||
|
}: {
|
||||||
|
portalContainer?: HTMLElement;
|
||||||
|
}) {
|
||||||
const room = useCall((store) => store.room);
|
const room = useCall((store) => store.room);
|
||||||
|
|
||||||
const [mapData, setMapData] = useState<Map<number, number>>(() => new Map());
|
const [mapData, setMapData] = useState<Map<number, number>>(() => new Map());
|
||||||
|
|
@ -164,7 +176,7 @@ export function TinyPingGraph() {
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
/>
|
/>
|
||||||
<TooltipContent>
|
<TooltipContent portalProps={{ container: portalContainer }}>
|
||||||
{data.length > 0 ? `${data.at(-1)?.ping} ms` : "Measuring ping..."}
|
{data.length > 0 ? `${data.at(-1)?.ping} ms` : "Measuring ping..."}
|
||||||
</TooltipContent>
|
</TooltipContent>
|
||||||
</Tooltip>
|
</Tooltip>
|
||||||
|
|
|
||||||
|
|
@ -1,252 +0,0 @@
|
||||||
import { log } from "@tensamin/shared/log";
|
|
||||||
import { useCall } from "./store";
|
|
||||||
|
|
||||||
const SPEAKING_THRESHOLD = 0.01;
|
|
||||||
const SPEAKING_HANGTIME_MS = 500;
|
|
||||||
const ANALYSIS_INTERVAL_MS = 30;
|
|
||||||
const FFT_SIZE = 256;
|
|
||||||
|
|
||||||
type AnalyserEntry = {
|
|
||||||
source: MediaStreamAudioSourceNode;
|
|
||||||
analyser: AnalyserNode;
|
|
||||||
track: MediaStreamTrack;
|
|
||||||
originalTrack?: MediaStreamTrack;
|
|
||||||
lastSpeakingTime: number;
|
|
||||||
isSpeaking: boolean;
|
|
||||||
};
|
|
||||||
|
|
||||||
class SpeakingDetector {
|
|
||||||
private audioContext: AudioContext | null = null;
|
|
||||||
private entries = new Map<number, AnalyserEntry>();
|
|
||||||
private intervalId: ReturnType<typeof setInterval> | null = null;
|
|
||||||
private deaf = false;
|
|
||||||
private gateThresholdStart = -50;
|
|
||||||
private gateThresholdEnd = -40;
|
|
||||||
private localParticipantId: number | null = null;
|
|
||||||
private localMicGateClosed = false;
|
|
||||||
|
|
||||||
private ensureAudioContext(): AudioContext {
|
|
||||||
if (!this.audioContext) {
|
|
||||||
this.audioContext = new AudioContext();
|
|
||||||
}
|
|
||||||
if (this.audioContext.state === "suspended") {
|
|
||||||
void this.audioContext.resume();
|
|
||||||
}
|
|
||||||
return this.audioContext;
|
|
||||||
}
|
|
||||||
|
|
||||||
setLocalParticipantId(id: number) {
|
|
||||||
this.localParticipantId = id;
|
|
||||||
}
|
|
||||||
|
|
||||||
setGateThresholds(start: number, end: number) {
|
|
||||||
this.gateThresholdStart = start;
|
|
||||||
this.gateThresholdEnd = end;
|
|
||||||
}
|
|
||||||
|
|
||||||
addTrack(
|
|
||||||
participantId: number,
|
|
||||||
track: MediaStreamTrack,
|
|
||||||
originalTrack?: MediaStreamTrack,
|
|
||||||
) {
|
|
||||||
if (track.kind !== "audio") return;
|
|
||||||
|
|
||||||
this.removeParticipant(participantId);
|
|
||||||
|
|
||||||
const ctx = this.ensureAudioContext();
|
|
||||||
const stream = new MediaStream([track]);
|
|
||||||
const source = ctx.createMediaStreamSource(stream);
|
|
||||||
const analyser = ctx.createAnalyser();
|
|
||||||
analyser.fftSize = FFT_SIZE;
|
|
||||||
source.connect(analyser);
|
|
||||||
|
|
||||||
this.entries.set(participantId, {
|
|
||||||
source,
|
|
||||||
analyser,
|
|
||||||
track,
|
|
||||||
originalTrack,
|
|
||||||
lastSpeakingTime: 0,
|
|
||||||
isSpeaking: false,
|
|
||||||
});
|
|
||||||
|
|
||||||
if (!this.intervalId) {
|
|
||||||
this.startLoop();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
removeParticipant(participantId: number) {
|
|
||||||
const entry = this.entries.get(participantId);
|
|
||||||
if (!entry) return;
|
|
||||||
|
|
||||||
try {
|
|
||||||
entry.source.disconnect();
|
|
||||||
} catch {
|
|
||||||
// ignore
|
|
||||||
}
|
|
||||||
this.entries.delete(participantId);
|
|
||||||
|
|
||||||
useCall.setState((state) => {
|
|
||||||
if (!state.speakingParticipantIds.has(participantId)) return state;
|
|
||||||
const next = new Set(state.speakingParticipantIds);
|
|
||||||
next.delete(participantId);
|
|
||||||
return { speakingParticipantIds: next };
|
|
||||||
});
|
|
||||||
|
|
||||||
if (participantId === this.localParticipantId && this.localMicGateClosed) {
|
|
||||||
this.muteLocalTrack(false);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
setDeaf(deaf: boolean) {
|
|
||||||
this.deaf = deaf;
|
|
||||||
if (deaf) {
|
|
||||||
for (const entry of this.entries.values()) {
|
|
||||||
entry.isSpeaking = false;
|
|
||||||
entry.lastSpeakingTime = 0;
|
|
||||||
}
|
|
||||||
useCall.setState({ speakingParticipantIds: new Set() });
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private startLoop() {
|
|
||||||
if (this.intervalId) return;
|
|
||||||
this.intervalId = setInterval(() => this.analyse(), ANALYSIS_INTERVAL_MS);
|
|
||||||
}
|
|
||||||
|
|
||||||
private stopLoop() {
|
|
||||||
if (this.intervalId) {
|
|
||||||
clearInterval(this.intervalId);
|
|
||||||
this.intervalId = null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private muteLocalTrack(muted: boolean) {
|
|
||||||
const entry = this.localParticipantId
|
|
||||||
? this.entries.get(this.localParticipantId)
|
|
||||||
: undefined;
|
|
||||||
const target = entry?.originalTrack ?? entry?.track;
|
|
||||||
|
|
||||||
if (target && target.enabled === muted) {
|
|
||||||
target.enabled = !muted;
|
|
||||||
}
|
|
||||||
|
|
||||||
this.localMicGateClosed = muted;
|
|
||||||
useCall.setState({ micGated: muted });
|
|
||||||
}
|
|
||||||
|
|
||||||
private applyNoiseGate(rms: number) {
|
|
||||||
const db = 20 * Math.log10(Math.max(rms, 0.0001));
|
|
||||||
|
|
||||||
if (!this.localMicGateClosed && db < this.gateThresholdStart) {
|
|
||||||
log(3, "noise gate", "purple", "closed");
|
|
||||||
this.muteLocalTrack(true);
|
|
||||||
} else if (this.localMicGateClosed && db > this.gateThresholdEnd) {
|
|
||||||
log(3, "noise gate", "purple", "opened");
|
|
||||||
this.muteLocalTrack(false);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private analyse() {
|
|
||||||
if (this.deaf || this.entries.size === 0) return;
|
|
||||||
|
|
||||||
const now = Date.now();
|
|
||||||
const changed = new Map<number, boolean>();
|
|
||||||
|
|
||||||
for (const [participantId, entry] of this.entries) {
|
|
||||||
const { analyser, track } = entry;
|
|
||||||
|
|
||||||
if (track.muted || track.readyState === "ended" || !track.enabled) {
|
|
||||||
if (entry.isSpeaking) {
|
|
||||||
entry.isSpeaking = false;
|
|
||||||
entry.lastSpeakingTime = 0;
|
|
||||||
changed.set(participantId, false);
|
|
||||||
}
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
const bufferLength = analyser.frequencyBinCount;
|
|
||||||
const dataArray = new Uint8Array(bufferLength);
|
|
||||||
analyser.getByteTimeDomainData(dataArray);
|
|
||||||
|
|
||||||
let sum = 0;
|
|
||||||
for (let i = 0; i < bufferLength; i++) {
|
|
||||||
const sample = (dataArray[i] - 128) / 128.0;
|
|
||||||
sum += sample * sample;
|
|
||||||
}
|
|
||||||
const rms = Math.sqrt(sum / bufferLength);
|
|
||||||
|
|
||||||
let nextIsSpeaking = entry.isSpeaking;
|
|
||||||
if (rms > SPEAKING_THRESHOLD) {
|
|
||||||
entry.lastSpeakingTime = now;
|
|
||||||
nextIsSpeaking = true;
|
|
||||||
} else if (now - entry.lastSpeakingTime > SPEAKING_HANGTIME_MS) {
|
|
||||||
nextIsSpeaking = false;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (participantId === this.localParticipantId) {
|
|
||||||
this.applyNoiseGate(rms);
|
|
||||||
if (this.localMicGateClosed) {
|
|
||||||
nextIsSpeaking = false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (nextIsSpeaking !== entry.isSpeaking) {
|
|
||||||
entry.isSpeaking = nextIsSpeaking;
|
|
||||||
changed.set(participantId, nextIsSpeaking);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (changed.size > 0) {
|
|
||||||
useCall.setState((state) => {
|
|
||||||
let hasDiff = false;
|
|
||||||
const next = new Set(state.speakingParticipantIds);
|
|
||||||
for (const [id, speaking] of changed) {
|
|
||||||
if (speaking) {
|
|
||||||
if (!next.has(id)) {
|
|
||||||
next.add(id);
|
|
||||||
hasDiff = true;
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
if (next.has(id)) {
|
|
||||||
next.delete(id);
|
|
||||||
hasDiff = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return hasDiff ? { speakingParticipantIds: next } : state;
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
dispose() {
|
|
||||||
this.stopLoop();
|
|
||||||
for (const id of Array.from(this.entries.keys())) {
|
|
||||||
this.removeParticipant(id);
|
|
||||||
}
|
|
||||||
this.entries.clear();
|
|
||||||
if (this.audioContext) {
|
|
||||||
void this.audioContext.close();
|
|
||||||
this.audioContext = null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
let detectorInstance: SpeakingDetector | null = null;
|
|
||||||
|
|
||||||
export function getSpeakingDetector(): SpeakingDetector {
|
|
||||||
if (!detectorInstance) {
|
|
||||||
detectorInstance = new SpeakingDetector();
|
|
||||||
}
|
|
||||||
return detectorInstance;
|
|
||||||
}
|
|
||||||
|
|
||||||
export function disposeSpeakingDetector(): void {
|
|
||||||
if (detectorInstance) {
|
|
||||||
detectorInstance.dispose();
|
|
||||||
detectorInstance = null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export function useIsSpeaking(participantId: number): boolean {
|
|
||||||
return useCall((state) => state.speakingParticipantIds.has(participantId));
|
|
||||||
}
|
|
||||||
|
|
@ -11,7 +11,6 @@ import { DeepFilterNoiseFilterProcessor } from "deepfilternet3-noise-filter";
|
||||||
import {
|
import {
|
||||||
ExternalE2EEKeyProvider,
|
ExternalE2EEKeyProvider,
|
||||||
LocalAudioTrack,
|
LocalAudioTrack,
|
||||||
type LocalTrackPublication,
|
|
||||||
type Participant,
|
type Participant,
|
||||||
type RemoteParticipant,
|
type RemoteParticipant,
|
||||||
type RemoteTrackPublication,
|
type RemoteTrackPublication,
|
||||||
|
|
@ -29,10 +28,6 @@ import {
|
||||||
createScreenShareController,
|
createScreenShareController,
|
||||||
type ScreenShareSession,
|
type ScreenShareSession,
|
||||||
} from "./screenshare";
|
} from "./screenshare";
|
||||||
import {
|
|
||||||
getSpeakingDetector,
|
|
||||||
disposeSpeakingDetector,
|
|
||||||
} from "./speakingIndicator";
|
|
||||||
|
|
||||||
// logging
|
// logging
|
||||||
setLogExtension(
|
setLogExtension(
|
||||||
|
|
@ -91,7 +86,6 @@ type CallStore = {
|
||||||
screenShareEnabled: boolean;
|
screenShareEnabled: boolean;
|
||||||
screenShareSession: ScreenShareSession | null;
|
screenShareSession: ScreenShareSession | null;
|
||||||
focusedParticipantId: number | null;
|
focusedParticipantId: number | null;
|
||||||
focusedParticipantType: "user" | "stream" | null;
|
|
||||||
usersInFocusedViewHidden: boolean;
|
usersInFocusedViewHidden: boolean;
|
||||||
watchedStreamParticipantIds: number[];
|
watchedStreamParticipantIds: number[];
|
||||||
pendingWatchedParticipantIds: number[];
|
pendingWatchedParticipantIds: number[];
|
||||||
|
|
@ -105,8 +99,6 @@ type CallStore = {
|
||||||
keyProvider: ExternalE2EEKeyProvider;
|
keyProvider: ExternalE2EEKeyProvider;
|
||||||
e2eeWorker: Worker;
|
e2eeWorker: Worker;
|
||||||
runtime: Runtime | null;
|
runtime: Runtime | null;
|
||||||
speakingParticipantIds: Set<number>;
|
|
||||||
micGated: boolean;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
const keyProvider = new ExternalE2EEKeyProvider();
|
const keyProvider = new ExternalE2EEKeyProvider();
|
||||||
|
|
@ -160,7 +152,7 @@ function clearRemoteAudio() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export function getParticipantId(identity: string | undefined): number | null {
|
function getParticipantId(identity: string | undefined): number | null {
|
||||||
if (!identity) {
|
if (!identity) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
@ -207,10 +199,7 @@ function matchesRemoteTrackSelector(
|
||||||
|
|
||||||
function syncRemoteParticipantTrackSubscriptions(participantId: number) {
|
function syncRemoteParticipantTrackSubscriptions(participantId: number) {
|
||||||
for (const publication of getRemoteTrackPublications(participantId)) {
|
for (const publication of getRemoteTrackPublications(participantId)) {
|
||||||
publication.setSubscribed(
|
publication.setSubscribed(publication.kind === Track.Kind.Audio);
|
||||||
publication.kind === Track.Kind.Audio &&
|
|
||||||
publication.source !== Track.Source.ScreenShareAudio,
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -468,8 +457,6 @@ function syncScreenShareParticipants() {
|
||||||
watchedStreamParticipantIds,
|
watchedStreamParticipantIds,
|
||||||
pendingWatchedParticipantIds,
|
pendingWatchedParticipantIds,
|
||||||
focusedParticipantId,
|
focusedParticipantId,
|
||||||
focusedParticipantType:
|
|
||||||
focusedParticipantId == null ? null : state.focusedParticipantType,
|
|
||||||
view:
|
view:
|
||||||
state.view === "focused" && focusedParticipantId == null
|
state.view === "focused" && focusedParticipantId == null
|
||||||
? "grid"
|
? "grid"
|
||||||
|
|
@ -627,7 +614,6 @@ export function startWatchingStream(participantId: number) {
|
||||||
const trackReady = getScreenShareTrackForParticipant(participantId) != null;
|
const trackReady = getScreenShareTrackForParticipant(participantId) != null;
|
||||||
|
|
||||||
setParticipantTrackSubscribed(participantId, Track.Source.ScreenShare);
|
setParticipantTrackSubscribed(participantId, Track.Source.ScreenShare);
|
||||||
setParticipantTrackSubscribed(participantId, Track.Source.ScreenShareAudio);
|
|
||||||
|
|
||||||
useCall.setState((state) => ({
|
useCall.setState((state) => ({
|
||||||
watchedStreamParticipantIds: state.watchedStreamParticipantIds.includes(
|
watchedStreamParticipantIds: state.watchedStreamParticipantIds.includes(
|
||||||
|
|
@ -641,7 +627,6 @@ export function startWatchingStream(participantId: number) {
|
||||||
? state.pendingWatchedParticipantIds
|
? state.pendingWatchedParticipantIds
|
||||||
: [...state.pendingWatchedParticipantIds, participantId],
|
: [...state.pendingWatchedParticipantIds, participantId],
|
||||||
focusedParticipantId: participantId,
|
focusedParticipantId: participantId,
|
||||||
focusedParticipantType: "stream",
|
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -661,13 +646,9 @@ export function setParticipantTrackSubscribed(
|
||||||
}
|
}
|
||||||
|
|
||||||
// Focus a participant in the main call view even when they are not sharing a screen.
|
// Focus a participant in the main call view even when they are not sharing a screen.
|
||||||
export function focusParticipant(
|
export function focusParticipant(participantId: number) {
|
||||||
participantId: number,
|
|
||||||
type: "user" | "stream" = "user",
|
|
||||||
) {
|
|
||||||
useCall.setState({
|
useCall.setState({
|
||||||
focusedParticipantId: participantId,
|
focusedParticipantId: participantId,
|
||||||
focusedParticipantType: type,
|
|
||||||
view: "focused",
|
view: "focused",
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
@ -675,11 +656,6 @@ export function focusParticipant(
|
||||||
// Stop tracking a participant's shared screen and clean up related UI state.
|
// Stop tracking a participant's shared screen and clean up related UI state.
|
||||||
export function stopWatchingStream(participantId: number) {
|
export function stopWatchingStream(participantId: number) {
|
||||||
setParticipantTrackSubscribed(participantId, Track.Source.ScreenShare, false);
|
setParticipantTrackSubscribed(participantId, Track.Source.ScreenShare, false);
|
||||||
setParticipantTrackSubscribed(
|
|
||||||
participantId,
|
|
||||||
Track.Source.ScreenShareAudio,
|
|
||||||
false,
|
|
||||||
);
|
|
||||||
|
|
||||||
useCall.setState((state) => ({
|
useCall.setState((state) => ({
|
||||||
watchedStreamParticipantIds: state.watchedStreamParticipantIds.filter(
|
watchedStreamParticipantIds: state.watchedStreamParticipantIds.filter(
|
||||||
|
|
@ -692,10 +668,6 @@ export function stopWatchingStream(participantId: number) {
|
||||||
state.focusedParticipantId === participantId
|
state.focusedParticipantId === participantId
|
||||||
? null
|
? null
|
||||||
: state.focusedParticipantId,
|
: state.focusedParticipantId,
|
||||||
focusedParticipantType:
|
|
||||||
state.focusedParticipantId === participantId
|
|
||||||
? null
|
|
||||||
: state.focusedParticipantType,
|
|
||||||
view:
|
view:
|
||||||
state.view === "focused" && state.focusedParticipantId === participantId
|
state.view === "focused" && state.focusedParticipantId === participantId
|
||||||
? "grid"
|
? "grid"
|
||||||
|
|
@ -785,7 +757,6 @@ export async function connect(callId: string) {
|
||||||
|
|
||||||
// Tear down the active call session and return the store to a closed state.
|
// Tear down the active call session and return the store to a closed state.
|
||||||
export async function disconnect() {
|
export async function disconnect() {
|
||||||
disposeSpeakingDetector();
|
|
||||||
await clearScreenSharePreview();
|
await clearScreenSharePreview();
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
|
@ -811,12 +782,10 @@ export async function disconnect() {
|
||||||
view: "preview",
|
view: "preview",
|
||||||
screenShareSession: null,
|
screenShareSession: null,
|
||||||
focusedParticipantId: null,
|
focusedParticipantId: null,
|
||||||
focusedParticipantType: null,
|
|
||||||
usersInFocusedViewHidden: false,
|
usersInFocusedViewHidden: false,
|
||||||
watchedStreamParticipantIds: [],
|
watchedStreamParticipantIds: [],
|
||||||
pendingWatchedParticipantIds: [],
|
pendingWatchedParticipantIds: [],
|
||||||
activeScreenShareParticipantIds: [],
|
activeScreenShareParticipantIds: [],
|
||||||
micGated: false,
|
|
||||||
});
|
});
|
||||||
|
|
||||||
room.remoteParticipants.forEach((participant) => {
|
room.remoteParticipants.forEach((participant) => {
|
||||||
|
|
@ -910,7 +879,6 @@ export async function toggleDeaf() {
|
||||||
deafened: nextDeaf ? "true" : "false",
|
deafened: nextDeaf ? "true" : "false",
|
||||||
});
|
});
|
||||||
|
|
||||||
getSpeakingDetector().setDeaf(nextDeaf);
|
|
||||||
useCall.setState({ deaf: nextDeaf });
|
useCall.setState({ deaf: nextDeaf });
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -972,7 +940,6 @@ export function resetCallState() {
|
||||||
deaf: false,
|
deaf: false,
|
||||||
screenShareSession: null,
|
screenShareSession: null,
|
||||||
focusedParticipantId: null,
|
focusedParticipantId: null,
|
||||||
focusedParticipantType: null,
|
|
||||||
usersInFocusedViewHidden: false,
|
usersInFocusedViewHidden: false,
|
||||||
watchedStreamParticipantIds: [],
|
watchedStreamParticipantIds: [],
|
||||||
pendingWatchedParticipantIds: [],
|
pendingWatchedParticipantIds: [],
|
||||||
|
|
@ -1000,16 +967,6 @@ async function ensureNoiseFilter(
|
||||||
await microphoneTrack.setProcessor(noiseFilter).catch((err) => {
|
await microphoneTrack.setProcessor(noiseFilter).catch((err) => {
|
||||||
log(1, "call", "red", "Failed to enable noise filter", err);
|
log(1, "call", "red", "Failed to enable noise filter", err);
|
||||||
});
|
});
|
||||||
|
|
||||||
const participantId = getParticipantId(room.localParticipant.identity);
|
|
||||||
if (participantId != null) {
|
|
||||||
const processedTrack = microphoneTrack.mediaStreamTrack;
|
|
||||||
getSpeakingDetector().addTrack(
|
|
||||||
participantId,
|
|
||||||
processedTrack.clone(),
|
|
||||||
processedTrack,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export const useCall = create<CallStore>(() => ({
|
export const useCall = create<CallStore>(() => ({
|
||||||
|
|
@ -1025,7 +982,6 @@ export const useCall = create<CallStore>(() => ({
|
||||||
screenShareEnabled: room.localParticipant.isScreenShareEnabled,
|
screenShareEnabled: room.localParticipant.isScreenShareEnabled,
|
||||||
screenShareSession: null,
|
screenShareSession: null,
|
||||||
focusedParticipantId: null,
|
focusedParticipantId: null,
|
||||||
focusedParticipantType: null,
|
|
||||||
usersInFocusedViewHidden: false,
|
usersInFocusedViewHidden: false,
|
||||||
watchedStreamParticipantIds: [],
|
watchedStreamParticipantIds: [],
|
||||||
pendingWatchedParticipantIds: [],
|
pendingWatchedParticipantIds: [],
|
||||||
|
|
@ -1040,8 +996,6 @@ export const useCall = create<CallStore>(() => ({
|
||||||
keyProvider,
|
keyProvider,
|
||||||
e2eeWorker,
|
e2eeWorker,
|
||||||
runtime: null,
|
runtime: null,
|
||||||
speakingParticipantIds: new Set(),
|
|
||||||
micGated: false,
|
|
||||||
}));
|
}));
|
||||||
|
|
||||||
// Register app-level call listeners and wire React dependencies into the store.
|
// Register app-level call listeners and wire React dependencies into the store.
|
||||||
|
|
@ -1062,7 +1016,7 @@ export function useInitializeCall() {
|
||||||
new DeepFilterNoiseFilterProcessor({
|
new DeepFilterNoiseFilterProcessor({
|
||||||
enabled: true,
|
enabled: true,
|
||||||
enableNoiseReduction: true,
|
enableNoiseReduction: true,
|
||||||
noiseReductionLevel: 60,
|
noiseReductionLevel: 80,
|
||||||
sampleRate: 48000,
|
sampleRate: 48000,
|
||||||
assetConfig: {
|
assetConfig: {
|
||||||
cdnUrl: "/assets",
|
cdnUrl: "/assets",
|
||||||
|
|
@ -1183,46 +1137,10 @@ export function useInitializeCall() {
|
||||||
|
|
||||||
listenersRegistered.current = true;
|
listenersRegistered.current = true;
|
||||||
|
|
||||||
const onConnected = async () => {
|
const onConnected = () => {
|
||||||
useCall.setState({ state: "open" });
|
useCall.setState({ state: "open" });
|
||||||
syncParticipantState();
|
syncParticipantState();
|
||||||
|
|
||||||
const detector = getSpeakingDetector();
|
|
||||||
const localParticipantId = getParticipantId(
|
|
||||||
room.localParticipant.identity,
|
|
||||||
);
|
|
||||||
if (localParticipantId != null) {
|
|
||||||
detector.setLocalParticipantId(localParticipantId);
|
|
||||||
}
|
|
||||||
|
|
||||||
const [start, end] = await Promise.all([
|
|
||||||
load("call_mute_range_start"),
|
|
||||||
load("call_mute_range_end"),
|
|
||||||
]);
|
|
||||||
detector.setGateThresholds(start, end);
|
|
||||||
|
|
||||||
// Scan existing audio tracks for speaking detection
|
|
||||||
for (const participant of getAllParticipants()) {
|
|
||||||
const participantId = getParticipantId(participant.identity);
|
|
||||||
if (participantId == null) continue;
|
|
||||||
|
|
||||||
for (const publication of participant.trackPublications.values()) {
|
|
||||||
if (
|
|
||||||
publication.kind === Track.Kind.Audio &&
|
|
||||||
publication.source === Track.Source.Microphone &&
|
|
||||||
publication.track
|
|
||||||
) {
|
|
||||||
const mediaTrack = publication.track.mediaStreamTrack;
|
|
||||||
if (participant === room.localParticipant) {
|
|
||||||
const clonedTrack = mediaTrack.clone();
|
|
||||||
detector.addTrack(participantId, clonedTrack, mediaTrack);
|
|
||||||
} else {
|
|
||||||
detector.addTrack(participantId, mediaTrack);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const invitedUserId = useCall.getState().invitedUserId;
|
const invitedUserId = useCall.getState().invitedUserId;
|
||||||
|
|
||||||
if (invitedUserId != null) {
|
if (invitedUserId != null) {
|
||||||
|
|
@ -1259,7 +1177,6 @@ export function useInitializeCall() {
|
||||||
|
|
||||||
if (participantId != null) {
|
if (participantId != null) {
|
||||||
stopWatchingStream(participantId);
|
stopWatchingStream(participantId);
|
||||||
getSpeakingDetector().removeParticipant(participantId);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
syncParticipantState();
|
syncParticipantState();
|
||||||
|
|
@ -1280,40 +1197,6 @@ export function useInitializeCall() {
|
||||||
void ensureNoiseFilter(noiseFilter);
|
void ensureNoiseFilter(noiseFilter);
|
||||||
};
|
};
|
||||||
|
|
||||||
const onLocalTrackPublished = (publication: LocalTrackPublication) => {
|
|
||||||
if (
|
|
||||||
publication.kind === Track.Kind.Audio &&
|
|
||||||
publication.source === Track.Source.Microphone &&
|
|
||||||
publication.track
|
|
||||||
) {
|
|
||||||
const participantId = getParticipantId(room.localParticipant.identity);
|
|
||||||
if (participantId != null) {
|
|
||||||
const originalTrack = publication.track.mediaStreamTrack;
|
|
||||||
const clonedTrack = originalTrack.clone();
|
|
||||||
getSpeakingDetector().addTrack(
|
|
||||||
participantId,
|
|
||||||
clonedTrack,
|
|
||||||
originalTrack,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
syncParticipantState();
|
|
||||||
void ensureNoiseFilter(noiseFilter);
|
|
||||||
};
|
|
||||||
|
|
||||||
const onLocalTrackUnpublished = (publication: LocalTrackPublication) => {
|
|
||||||
if (
|
|
||||||
publication.kind === Track.Kind.Audio &&
|
|
||||||
publication.source === Track.Source.Microphone
|
|
||||||
) {
|
|
||||||
const participantId = getParticipantId(room.localParticipant.identity);
|
|
||||||
if (participantId != null) {
|
|
||||||
getSpeakingDetector().removeParticipant(participantId);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
syncParticipantState();
|
|
||||||
};
|
|
||||||
|
|
||||||
const onTrackPublished = (
|
const onTrackPublished = (
|
||||||
publication: RemoteTrackPublication,
|
publication: RemoteTrackPublication,
|
||||||
participant: RemoteParticipant,
|
participant: RemoteParticipant,
|
||||||
|
|
@ -1321,10 +1204,7 @@ export function useInitializeCall() {
|
||||||
const participantId = getParticipantId(participant.identity);
|
const participantId = getParticipantId(participant.identity);
|
||||||
|
|
||||||
if (participantId != null) {
|
if (participantId != null) {
|
||||||
if (
|
if (publication.kind === Track.Kind.Audio) {
|
||||||
publication.kind === Track.Kind.Audio &&
|
|
||||||
publication.source !== Track.Source.ScreenShareAudio
|
|
||||||
) {
|
|
||||||
publication.setSubscribed(true);
|
publication.setSubscribed(true);
|
||||||
} else {
|
} else {
|
||||||
publication.setSubscribed(false);
|
publication.setSubscribed(false);
|
||||||
|
|
@ -1334,21 +1214,9 @@ export function useInitializeCall() {
|
||||||
onParticipantStateChange();
|
onParticipantStateChange();
|
||||||
};
|
};
|
||||||
|
|
||||||
const onTrackSubscribed = (
|
const onTrackSubscribed = (track: RemoteTrack) => {
|
||||||
track: RemoteTrack,
|
|
||||||
publication: RemoteTrackPublication,
|
|
||||||
participant: RemoteParticipant,
|
|
||||||
) => {
|
|
||||||
if (track.kind === "audio" && track.sid) {
|
if (track.kind === "audio" && track.sid) {
|
||||||
attachRemoteAudio(track.sid, track.attach());
|
attachRemoteAudio(track.sid, track.attach());
|
||||||
|
|
||||||
const participantId = getParticipantId(participant.identity);
|
|
||||||
if (
|
|
||||||
participantId != null &&
|
|
||||||
publication.source === Track.Source.Microphone
|
|
||||||
) {
|
|
||||||
getSpeakingDetector().addTrack(participantId, track.mediaStreamTrack);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
syncParticipantState();
|
syncParticipantState();
|
||||||
|
|
@ -1356,22 +1224,15 @@ export function useInitializeCall() {
|
||||||
|
|
||||||
const onTrackUnsubscribed = (
|
const onTrackUnsubscribed = (
|
||||||
track: RemoteTrack,
|
track: RemoteTrack,
|
||||||
publication: RemoteTrackPublication,
|
_publication: unknown,
|
||||||
participant: Participant,
|
participant: Participant,
|
||||||
) => {
|
) => {
|
||||||
const participantId = getParticipantId(participant.identity);
|
|
||||||
|
|
||||||
if (track.kind === "audio" && track.sid) {
|
if (track.kind === "audio" && track.sid) {
|
||||||
track.detach();
|
track.detach();
|
||||||
detachRemoteAudio(track.sid);
|
detachRemoteAudio(track.sid);
|
||||||
|
}
|
||||||
|
|
||||||
if (
|
const participantId = getParticipantId(participant.identity);
|
||||||
participantId != null &&
|
|
||||||
publication.source === Track.Source.Microphone
|
|
||||||
) {
|
|
||||||
getSpeakingDetector().removeParticipant(participantId);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (
|
if (
|
||||||
participantId != null &&
|
participantId != null &&
|
||||||
|
|
@ -1395,8 +1256,8 @@ export function useInitializeCall() {
|
||||||
room.on(RoomEvent.ParticipantDisconnected, onParticipantDisconnected);
|
room.on(RoomEvent.ParticipantDisconnected, onParticipantDisconnected);
|
||||||
room.on(RoomEvent.TrackMuted, onParticipantStateChange);
|
room.on(RoomEvent.TrackMuted, onParticipantStateChange);
|
||||||
room.on(RoomEvent.TrackUnmuted, onParticipantStateChange);
|
room.on(RoomEvent.TrackUnmuted, onParticipantStateChange);
|
||||||
room.on(RoomEvent.LocalTrackPublished, onLocalTrackPublished);
|
room.on(RoomEvent.LocalTrackPublished, onParticipantStateChange);
|
||||||
room.on(RoomEvent.LocalTrackUnpublished, onLocalTrackUnpublished);
|
room.on(RoomEvent.LocalTrackUnpublished, onParticipantStateChange);
|
||||||
room.on(RoomEvent.MediaDevicesError, onMediaDeviceFailure);
|
room.on(RoomEvent.MediaDevicesError, onMediaDeviceFailure);
|
||||||
room.on(RoomEvent.EncryptionError, onEncryptionError);
|
room.on(RoomEvent.EncryptionError, onEncryptionError);
|
||||||
room.on(RoomEvent.ConnectionStateChanged, onParticipantStateChange);
|
room.on(RoomEvent.ConnectionStateChanged, onParticipantStateChange);
|
||||||
|
|
@ -1416,8 +1277,8 @@ export function useInitializeCall() {
|
||||||
room.off(RoomEvent.ParticipantDisconnected, onParticipantDisconnected);
|
room.off(RoomEvent.ParticipantDisconnected, onParticipantDisconnected);
|
||||||
room.off(RoomEvent.TrackMuted, onParticipantStateChange);
|
room.off(RoomEvent.TrackMuted, onParticipantStateChange);
|
||||||
room.off(RoomEvent.TrackUnmuted, onParticipantStateChange);
|
room.off(RoomEvent.TrackUnmuted, onParticipantStateChange);
|
||||||
room.off(RoomEvent.LocalTrackPublished, onLocalTrackPublished);
|
room.off(RoomEvent.LocalTrackPublished, onParticipantStateChange);
|
||||||
room.off(RoomEvent.LocalTrackUnpublished, onLocalTrackUnpublished);
|
room.off(RoomEvent.LocalTrackUnpublished, onParticipantStateChange);
|
||||||
room.off(RoomEvent.MediaDevicesError, onMediaDeviceFailure);
|
room.off(RoomEvent.MediaDevicesError, onMediaDeviceFailure);
|
||||||
room.off(RoomEvent.EncryptionError, onEncryptionError);
|
room.off(RoomEvent.EncryptionError, onEncryptionError);
|
||||||
room.off(RoomEvent.ConnectionStateChanged, onParticipantStateChange);
|
room.off(RoomEvent.ConnectionStateChanged, onParticipantStateChange);
|
||||||
|
|
@ -1426,7 +1287,7 @@ export function useInitializeCall() {
|
||||||
room.disconnect();
|
room.disconnect();
|
||||||
e2eeWorker.terminate();
|
e2eeWorker.terminate();
|
||||||
};
|
};
|
||||||
}, [noiseFilter, load]);
|
}, [noiseFilter]);
|
||||||
|
|
||||||
// fetch call data for preview page
|
// fetch call data for preview page
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
|
|
|
||||||
|
|
@ -16,9 +16,6 @@ export default function View() {
|
||||||
const callIsFullscreen = useCall((state) => state.callIsFullscreen);
|
const callIsFullscreen = useCall((state) => state.callIsFullscreen);
|
||||||
|
|
||||||
const focusedParticipantId = useCall((state) => state.focusedParticipantId);
|
const focusedParticipantId = useCall((state) => state.focusedParticipantId);
|
||||||
const focusedParticipantType = useCall(
|
|
||||||
(state) => state.focusedParticipantType,
|
|
||||||
);
|
|
||||||
const activeScreenShareParticipantIds = useCall(
|
const activeScreenShareParticipantIds = useCall(
|
||||||
(state) => state.activeScreenShareParticipantIds,
|
(state) => state.activeScreenShareParticipantIds,
|
||||||
);
|
);
|
||||||
|
|
@ -160,10 +157,6 @@ export default function View() {
|
||||||
const focusedParticipant = getParticipantById(focusedParticipantId);
|
const focusedParticipant = getParticipantById(focusedParticipantId);
|
||||||
const focusedParticipantHasActiveScreenShare =
|
const focusedParticipantHasActiveScreenShare =
|
||||||
activeScreenShareParticipantIdSet.has(focusedParticipantId);
|
activeScreenShareParticipantIdSet.has(focusedParticipantId);
|
||||||
const focusedTileType: "user" | "stream" =
|
|
||||||
focusedParticipantType === "stream" && focusedParticipantHasActiveScreenShare
|
|
||||||
? "stream"
|
|
||||||
: "user";
|
|
||||||
const isImmersiveFocusedView = callIsFullscreen && usersInFocusedViewHidden;
|
const isImmersiveFocusedView = callIsFullscreen && usersInFocusedViewHidden;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|
@ -186,7 +179,7 @@ export default function View() {
|
||||||
<Base
|
<Base
|
||||||
fill={isImmersiveFocusedView}
|
fill={isImmersiveFocusedView}
|
||||||
flush={isImmersiveFocusedView || isFocusedTileFlush}
|
flush={isImmersiveFocusedView || isFocusedTileFlush}
|
||||||
type={focusedTileType}
|
type={focusedParticipantHasActiveScreenShare ? "stream" : "user"}
|
||||||
participant={focusedParticipant}
|
participant={focusedParticipant}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
- Speaking indicator
|
||||||
- Overlay for stream modals
|
- Overlay for stream modals
|
||||||
- User modals
|
- User modals
|
||||||
- Bg based on avatar
|
- Bg based on avatar
|
||||||
|
|
@ -10,5 +11,3 @@
|
||||||
- Disconnect
|
- Disconnect
|
||||||
- Desktop-App screenshares
|
- Desktop-App screenshares
|
||||||
- Context menus
|
- Context menus
|
||||||
- Popout Window
|
|
||||||
- If micGated=true & isSpeaking=false for 5 seconds show banner with mic detection
|
|
||||||
|
|
|
||||||
|
|
@ -245,8 +245,6 @@ export interface Storage extends SettingsStorageDefaults {
|
||||||
cached_contacts: Contacts;
|
cached_contacts: Contacts;
|
||||||
cached_communities: Communities;
|
cached_communities: Communities;
|
||||||
ttp_url: string;
|
ttp_url: string;
|
||||||
call_mute_range_start: number;
|
|
||||||
call_mute_range_end: number;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export const storageDefaults: Storage = {
|
export const storageDefaults: Storage = {
|
||||||
|
|
@ -280,6 +278,4 @@ export const storageDefaults: Storage = {
|
||||||
cached_contacts: [],
|
cached_contacts: [],
|
||||||
cached_communities: [],
|
cached_communities: [],
|
||||||
ttp_url: "https://tensamin.net:959",
|
ttp_url: "https://tensamin.net:959",
|
||||||
call_mute_range_start: -55,
|
|
||||||
call_mute_range_end: -45,
|
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue