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

    Consumer-provided room statistics data. Typically shows aggregate stats across rooms/recordings.

    interface RoomStatsData {
        customStats?: {
            icon?: ReactNode;
            label: string;
            value: string | number;
        }[];
        fileCount?: number;
        hasActivity?: boolean;
        isActive?: boolean;
        isLoading?: boolean;
        lastActive?: string
        | Date;
        noteCount?: number;
        participantCount?: number;
        recentFiles?: {
            date?: string;
            icon?: ReactNode;
            id: string;
            name: string;
            type?: string;
        }[];
        recordingCount?: number;
        roomCount?: number;
        sessionCount?: number;
        totalMinutes?: number;
        whiteboardCount?: number;
    }
    Index

    Properties

    customStats?: { icon?: ReactNode; label: string; value: string | number }[]

    Additional custom stat items

    fileCount?: number
    hasActivity?: boolean

    Whether there is any activity to display

    isActive?: boolean

    Whether the room currently has an active session

    isLoading?: boolean

    Whether stats are still loading

    lastActive?: string | Date
    noteCount?: number

    Number of note files

    participantCount?: number
    recentFiles?: {
        date?: string;
        icon?: ReactNode;
        id: string;
        name: string;
        type?: string;
    }[]

    Recent files list

    recordingCount?: number
    roomCount?: number
    sessionCount?: number
    totalMinutes?: number

    Total time in minutes (displayed as Xh Ym)

    whiteboardCount?: number

    Number of whiteboard files