-
-
Save vrajdesai78/ae1acb9eabd92ee3990ba305702ddd82 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { useHuddle01 } from '@huddle01/react'; | |
import { useLobby, useAudio, useVideo, useRoom } from '@huddle01/react/hooks'; | |
const App = () => { | |
const { initialize, isInitialized } = useHuddle01(); | |
const { joinLobby } = useLobby(); | |
const { | |
fetchAudioStream, stopAudioStream, error: micError, | |
produceAudio, stopProducingAudio | |
} = useAudio(); | |
const { | |
fetchVideoStream, stopVideoStream, error: camError, | |
produceVideo, stopProducingVideo | |
} = useVideo(); | |
const { joinRoom, leaveRoom } = useRoom(); | |
useEffect(() => { | |
// its preferable to use env vars to store projectId | |
initialize('YOUR_PROJECT_ID'); | |
}, []); | |
return ( | |
<div>{isInitialized ? 'Hello World!' : 'Please initialize'} | |
<button | |
disabled={joinLobby.isCallable} | |
onClick={() => joinLobby('YOUR_ROOM_ID'); | |
}> | |
Join Lobby | |
</button> | |
{/* Mic */} | |
<button disabled={!fetchAudioStream.isCallable} onClick={fetchAudioStream}> | |
FETCH_AUDIO_STREAM | |
</button> | |
{/* Webcam */} | |
<button disabled={!fetchVideoStream.isCallable} onClick={fetchVideoStream}> | |
FETCH_VIDEO_STREAM | |
</button> | |
<button disabled={!joinRoom.isCallable} onClick={joinRoom}> | |
JOIN_ROOM | |
</button> | |
<button disabled={!leaveRoom.isCallable} onClick={leaveRoom}> | |
LEAVE_ROOM | |
</button> | |
<button disabled={!produceVideo.isCallable} onClick={() => produceVideo(camStream)}> | |
Produce Cam | |
</button> | |
<button disabled={!produceAudio.isCallable} onClick={() => produceAudio(micStream)}> | |
Produce Mic | |
</button> | |
<button disabled={!stopProducingVideo.isCallable} onClick={stopProducingVideo}> | |
Stop Producing Cam | |
</button> | |
<button disabled={!stopProducingAudio.isCallable} onClick={stopProducingAudio}> | |
Stop Producing Mic | |
</button> | |
</div> | |
); | |
}; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment