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

    Interface ActivityDashboardProps

    Props for the ActivityDashboard component.

    Displays an overview of all assigned users' activity on the assignment, including progress, time spent, session counts, and status distribution. This panel is displayed in the "Activity" tab of the AssignmentEditor.

    interface ActivityDashboardProps {
        colors: AssignmentEditorColors;
        labels?: Partial<ActivityDashboardLabels>;
        participants: { userId: string; userName?: string }[];
        sx?: SxProps<Theme>;
        userActivities: Record<string, UserActivity>;
    }
    Index

    Properties

    Custom colors

    labels?: Partial<ActivityDashboardLabels>

    Custom labels for the dashboard

    participants: { userId: string; userName?: string }[]

    Participant list for resolving user names

    sx?: SxProps<Theme>

    MUI sx styling prop

    userActivities: Record<string, UserActivity>

    All user activity data for the assignment