MediaSFU React Native
    Preparing search index...

    Interface AddVideosGridParameters

    Parameters consumed by AudioCard to reflect live meeting state and permissions.

    AudioCardParameters

    Telemetry & Participants:

    interface AddVideosGridParameters {
        audioDecibels: AudioDecibels[];
        participants: Participant[];
        socket: Socket;
        coHostResponsibility: CoHostResponsibility[];
        roomName: string;
        showAlert?: ShowAlert;
        coHost: string;
        member: string;
        eventType: EventType;
        updateAddAltGrid: (addAltGrid: boolean) => void;
        ref_participants: Participant[];
        islevel: string;
        videoAlreadyOn: boolean;
        localStreamVideo: MediaStream;
        keepBackground: boolean;
        virtualStream: MediaStream;
        forceFullDisplay: boolean;
        otherGridStreams: Element[][];
        updateOtherGridStreams: (otherGridStreams: Element[][]) => void;
        customVideoCard?: CustomVideoCardType;
        customAudioCard?: CustomAudioCardType;
        customMiniCard?: CustomMiniCardType;
        videoCardComponent?: ComponentType<VideoCardOptions>;
        audioCardComponent?: ComponentType<AudioCardOptions>;
        miniCardComponent?: ComponentType<MiniCardOptions>;
        updateMiniCardsGrid: UpdateMiniCardsGridType;
        getUpdatedAllParams: () => AddVideosGridParameters;
        updateGridRows: (rows: number) => void;
        updateGridCols: (cols: number) => void;
        updateAltGridRows: (rows: number) => void;
        updateAltGridCols: (cols: number) => void;
        updateGridSizes: (gridSizes: GridSizes) => void;
        gridSizes: GridSizes;
        paginationDirection: string;
        paginationHeightWidth: number;
        doPaginate: boolean;
        componentSizes: ComponentSizes;
        [key: string]: any;
    }

    Hierarchy (View Summary)

    Indexable

    • [key: string]: any
    Index

    Properties

    audioDecibels: AudioDecibels[]

    Live loudness metrics per participant.

    participants: Participant[]

    Current participant roster.

    Session Context:

    socket: Socket

    Socket instance for media control events.

    coHostResponsibility: CoHostResponsibility[]

    Active co-host capabilities.

    roomName: string

    Active room identifier.

    showAlert?: ShowAlert

    Optional alert helper.

    coHost: string

    Current co-host identifier.

    member: string

    Local member identifier.

    eventType: EventType

    Meeting event type (e.g., conference).

    Helpers:

    updateAddAltGrid: (addAltGrid: boolean) => void
    ref_participants: Participant[]
    islevel: string

    Member privilege level.

    videoAlreadyOn: boolean
    localStreamVideo: MediaStream
    keepBackground: boolean
    virtualStream: MediaStream
    forceFullDisplay: boolean
    otherGridStreams: Element[][]
    updateOtherGridStreams: (otherGridStreams: Element[][]) => void
    customVideoCard?: CustomVideoCardType
    customAudioCard?: CustomAudioCardType
    customMiniCard?: CustomMiniCardType
    videoCardComponent?: ComponentType<VideoCardOptions>
    audioCardComponent?: ComponentType<AudioCardOptions>
    miniCardComponent?: ComponentType<MiniCardOptions>
    updateMiniCardsGrid: UpdateMiniCardsGridType
    getUpdatedAllParams: () => AddVideosGridParameters

    Refreshes parameters before invoking side effects.

    updateGridRows: (rows: number) => void
    updateGridCols: (cols: number) => void
    updateAltGridRows: (rows: number) => void
    updateAltGridCols: (cols: number) => void
    updateGridSizes: (gridSizes: GridSizes) => void
    gridSizes: GridSizes
    paginationDirection: string
    paginationHeightWidth: number
    doPaginate: boolean
    componentSizes: ComponentSizes