import React, { useState } from 'react' import stl from './ChatControls.module.css' import cn from 'classnames' import { Button, Icon } from 'UI' import type { LocalStream } from 'Player'; interface Props { stream: LocalStream | null, endCall: () => void, videoEnabled: boolean, isPrestart?: boolean, setVideoEnabled: (isEnabled: boolean) => void } function ChatControls({ stream, endCall, videoEnabled, setVideoEnabled, isPrestart } : Props) { const [audioEnabled, setAudioEnabled] = useState(true) const toggleAudio = () => { if (!stream) { return; } setAudioEnabled(stream.toggleAudio()); } const toggleVideo = () => { if (!stream) { return; } stream.toggleVideo() .then((v) => setVideoEnabled(v)) } /** muting user if he is auto connected to the call */ React.useEffect(() => { if (isPrestart) { audioEnabled && toggleAudio(); } }, []) return (