Invite Guest on Stage - React
This guide explains the process of inviting a viewer to join a livestream using the changeMode()
method.
Before proceeding with this guide, ensure that all attendees join the meeting with the mode set to VIEWER
, while the host joins with the mode set to CONFERENCE
.
The diagram below illustrates the utilization of the PubSub
mechanism to facilitate the requesting and switching of the participant's mode.
Step 1: Loading the Viewer List
First, the host will be presented with a list of participants who have joined as VIEWER
, accompanied by a button that, when selected, will invite that user to join the livestream.
import { useMeeting, useParticipant } from "@videosdk.live/react-sdk";
function MeetingView() {
const { meetingId } = useMeeting();
return (
<>
<p>{meetingId}</p>
<ViewerList />
</>
);
}
function ViewerList() {
const { participants } = useMeeting();
//Filtering only viewer participant
const viewers = [...participants.values()].filter((participant) => {
return participant.mode == Constants.modes.VIEWER;
});
return (
<div>
{viewers.map((participant) => {
return <ViewerListItem participantId={participant.id} />;
})}
</div>
);
}
function ViewerListItem({ participantId }) {
const { displayName } = useParticipant(participantId);
return (
<div>
{displayName} <button>Request to join Livestream</button>
</div>
);
}
Step 2: Requesting a Viewer to Join Livestream
Now, with the Viewer list in place, handle the click event for the "Join Livestream" button by utilizing CHANGE_MODE_$participantId
as the topic for PubSub.
import { usePubSub } from "@videosdk.live/react-sdk";
function ViewerListItem({ participantId }) {
const { displayName } = useParticipant(participantId);
const { publish } = usePubSub(`CHANGE_MODE_${participantId}`);
//Publishing the pubsub message with new mode
const onClickRequestJoinLiveStream = () => {
publish("CONFERENCE");
};
return (
<div>
{displayName}{" "}
<button
onClick={() => {
onClickRequestJoinLiveStream();
}}
>
Request to join Livestream
</button>
</div>
);
}
Step 3: Showing Viewer Request Dialog
After implementing the host's request for a viewer to join the livestream, display the viewer's request dialogue and switch the mode from VIEWER
to CONFERENCE
.
function MeetingView() {
const { localParticipant, changeMode } = useMeeting();
const [joinLivestreamRequest, setJoinLivestreamRequest] = useState();
//Subscribe to new message on these topic and show confirmation dialog.
const pubsub = usePubSub(`CHANGE_MODE_${localParticipant?.id}`, {
onMessageReceived: (pubSubMessage) => {
setJoinLivestreamRequest(pubSubMessage);
},
});
return (
<>
...
{joinLivestreamRequest && (
<div>
{joinLivestreamRequest.senderName} requested you to join Livestream
<button
onClick={() => {
changeMode(joinLivestreamRequest.message);
setJoinLivestreamRequest(null);
}}
>
Accept
</button>
<button
onClick={() => {
setJoinLivestreamRequest(null);
}}
>
Reject
</button>
</div>
)}
</>
);
}
Step 4: Pin the participant
To ensure the participant appears on the livestream, they have to be pinned. This can be achieved by listening to the callback on the onParticipantModeChanged
event of the useMeeting
hook.
function MeetingView() {
const mMeeting = useMeeting({});
//Here a reference to the meeting object is used because
//while referencing it in the callbacks its latest state has to be obtained.
const mMeetingRef = useRef();
useEffect(() => {
mMeetingRef.current = mMeeting;
}, [mMeeting]);
const { localParticipant, changeMode } = useMeeting({
onParticipantModeChanged: ({ participantId, mode }) => {
const localParticipant = mMeetingRef.current?.localParticipant;
if (participantId == localParticipant.id) {
if (mode == "CONFERENCE") {
localParticipant.pin();
} else {
localParticipant.unpin();
}
}
},
});
return <>...</>;
}
API Reference
The API references for all the methods utilized in this guide are provided below.
Got a Question? Ask us on discord