Service to handle the "still there?" check in a meeting by showing a confirmation modal.
MeetingStillThere
This service provides a method to display a "still there?" confirmation modal to check if participants are still active in the meeting.
meetingStillThere
Options for managing the modal visibility:
updateIsConfirmHereModalVisible
Updates modal visibility when checking if the user is still present.
const options = { updateIsConfirmHereModalVisible: (isVisible) => console.log(`Modal visibility: ${isVisible}`),};meetingStillThereService.meetingStillThere(options);// Output: Sets and logs modal visibility to true Copy
const options = { updateIsConfirmHereModalVisible: (isVisible) => console.log(`Modal visibility: ${isVisible}`),};meetingStillThereService.meetingStillThere(options);// Output: Sets and logs modal visibility to true
Handles the "still there?" meeting check by updating the visibility of the confirmation modal.
The options for the meeting still there check.
A promise that resolves when the modal visibility is updated.
Service to handle the "still there?" check in a meeting by showing a confirmation modal.
Name
MeetingStillThere
Description
This service provides a method to display a "still there?" confirmation modal to check if participants are still active in the meeting.
Method
meetingStillThere
Param: options
Options for managing the modal visibility:
updateIsConfirmHereModalVisible
{Function}: Function to set the visibility of the "still there?" confirmation modal.Returns
Updates modal visibility when checking if the user is still present.
Example