Hiyve Components - v1.0.0
    Preparing search index...

    Interface WaitingRoomState

    Waiting room state for managing users waiting to join.

    Contains the list of users waiting to be admitted. Only the room owner can see and manage this list. For guests, isWaitingForAdmission indicates they are in the waiting room, and wasRejected indicates the host denied entry.

    WaitingRoomUser for waiting user data

    interface WaitingRoomState {
        isWaitingForAdmission: boolean;
        waitingUsers: WaitingRoomUser[];
        wasRejected: boolean;
    }
    Index

    Properties

    isWaitingForAdmission: boolean

    Whether the local user is waiting to be admitted by the host (for guests)

    waitingUsers: WaitingRoomUser[]

    Array of users waiting to be admitted (visible to hosts)

    wasRejected: boolean

    Whether the local user was rejected from the waiting room