Skip to content

Instantly share code, notes, and snippets.

@nemo0
Created May 28, 2023 07:38
Show Gist options
  • Save nemo0/29721ceac84524222c9d22898a846cfe to your computer and use it in GitHub Desktop.
Save nemo0/29721ceac84524222c9d22898a846cfe to your computer and use it in GitHub Desktop.
Call.js useEffect Hook
useEffect(() => {
if (userId) {
initiateSendbirdCalls();
setDefaultCallParams({
callOption: {
localMediaView: document.getElementById('local_video_element_id'),
remoteMediaView: document.getElementById('remote_video_element_id'),
audioEnabled: true,
videoEnabled: true,
},
});
}
}, [userId]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment