PreJoin
The PreJoin
prefab component is normally presented to the user before he enters a room. This component allows the user to check and select the preferred media device (camera und microphone). On submit the user decisions are returned, which can then be passed on to the LiveKitRoom
so that the user enters the room with the correct media devices.
Import
import { PreJoin } from "@livekit/components-react";
Remarks
This component is independent of the LiveKitRoom
component and should not be nested within it. Because it only accesses the local media tracks this component is self-contained and works without connection to the LiveKit server.
Usage
<PreJoin />
Properties
string
(Optional)
boolean
(Optional) Display a debug window for your convenience.
Partial<LocalUserChoices>
(Optional) Prefill the input form with initial values.
string
(Optional)
string
(Optional)
(error: Error) => void
(Optional)
(values: LocalUserChoices) => void
(Optional) This function is called with the LocalUserChoices
if validation is passed.
(values: LocalUserChoices) => boolean
(Optional) Provide your custom validation function. Only if validation is successful the user choices are past to the onSubmit callback.
boolean
(Optional) If true, user choices are persisted across sessions.
string
(Optional)