Skip to content

Instantly share code, notes, and snippets.

@vrajdesai78
Created June 20, 2023 13:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vrajdesai78/d47e6840f0deb25e5b99393087caf2bc to your computer and use it in GitHub Desktop.
Save vrajdesai78/d47e6840f0deb25e5b99393087caf2bc to your computer and use it in GitHub Desktop.
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 } = useAudio();
const { fetchVideoStream, stopVideoStream, error: camError } = 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>
</div>
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment