54 lines
1.8 KiB
TypeScript
54 lines
1.8 KiB
TypeScript
import React, { useState } from 'react'
|
|
import stl from './ChatControls.css'
|
|
import cn from 'classnames'
|
|
import { Button, Icon } from 'UI'
|
|
import type { LocalStream } from 'Player/MessageDistributor/managers/LocalStream';
|
|
|
|
|
|
interface Props {
|
|
stream: LocalStream | null,
|
|
endCall: () => void,
|
|
videoEnabled: boolean,
|
|
setVideoEnabled: (boolean) => void
|
|
}
|
|
function ChatControls({ stream, endCall, videoEnabled, setVideoEnabled } : Props) {
|
|
const [audioEnabled, setAudioEnabled] = useState(true)
|
|
|
|
const toggleAudio = () => {
|
|
if (!stream) { return; }
|
|
setAudioEnabled(stream.toggleAudio());
|
|
}
|
|
|
|
const toggleVideo = () => {
|
|
if (!stream) { return; }
|
|
stream.toggleVideo()
|
|
.then(setVideoEnabled)
|
|
}
|
|
|
|
return (
|
|
<div className={cn(stl.controls, "flex items-center w-full justify-start bottom-0 px-2")}>
|
|
<div className="flex items-center">
|
|
<div className={cn(stl.btnWrapper, { [stl.disabled]: !audioEnabled})}>
|
|
<Button plain size="small" onClick={toggleAudio} noPadding className="flex items-center">
|
|
<Icon name={audioEnabled ? 'mic' : 'mic-mute'} size="16" />
|
|
<span className="ml-2 color-gray-medium text-sm">{audioEnabled ? 'Mute' : 'Unmute'}</span>
|
|
</Button>
|
|
</div>
|
|
|
|
<div className={cn(stl.btnWrapper, { [stl.disabled]: !videoEnabled})}>
|
|
<Button plain size="small" onClick={toggleVideo} noPadding className="flex items-center">
|
|
<Icon name={ videoEnabled ? 'camera-video' : 'camera-video-off' } size="16" />
|
|
<span className="ml-2 color-gray-medium text-sm">{videoEnabled ? 'Stop Video' : 'Start Video'}</span>
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
<div className="ml-auto">
|
|
<button className={stl.endButton} onClick={endCall}>
|
|
END
|
|
</button>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default ChatControls
|