All files / web/src/components/practice index.ts

0% Statements 0/143
0% Branches 0/1
0% Functions 0/1
0% Lines 0/143

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144                                                                                                                                                                                                                                                                                               
/**
 * Practice components for curriculum-based learning
 *
 * These components support the daily practice system:
 * - StudentSelector: Choose which student is practicing
 * - ProgressDashboard: Show current progress and actions
 * - ActiveSession: Solve problems during practice
 * - SessionSummary: Results after completing session
 */

export type {
  AttemptTimingData,
  BroadcastState,
  StudentInfo,
} from './ActiveSession'
export { ActiveSession } from './ActiveSession'
export { AllProblemsSection } from './AllProblemsSection'
export { ContinueSessionCard } from './ContinueSessionCard'
// Hooks
export {
  useHasPhysicalKeyboard,
  useIsTouchDevice,
} from './hooks/useDeviceDetection'
export { LiveResultsPanel } from './LiveResultsPanel'
export { MobileResultsSummary } from './MobileResultsSummary'
export {
  LiveSessionReportInline,
  LiveSessionReportModal,
} from './LiveSessionReportModal'
export { MiniStartPracticeBanner } from './MiniStartPracticeBanner'
export { NotesModal } from './NotesModal'
// StudentQuickLook is an alias for NotesModal (which was enhanced to serve as the QuickLook modal)
export { NotesModal as StudentQuickLook } from './NotesModal'
export { OfflineSessionModal } from './OfflineSessionModal'
export type {
  OfflineWorkSectionProps,
  OfflineAttachment,
} from './OfflineWorkSection'
export { OfflineWorkSection } from './OfflineWorkSection'
export type { PhotoLightboxPhoto } from './PhotoLightbox'
export { PhotoLightbox } from './PhotoLightbox'
export type { PhotoViewerEditorPhoto } from './PhotoViewerEditor'
export { PhotoViewerEditor } from './PhotoViewerEditor'
export { SessionPhotoGallery } from './SessionPhotoGallery'
export { NumericKeypad } from './NumericKeypad'
export { PracticeErrorBoundary } from './PracticeErrorBoundary'
export { PracticeFeedback } from './PracticeFeedback'
export type {
  RelationshipBadgeProps,
  RelationshipConfig,
} from './RelationshipBadge'
export {
  RelationshipBadge,
  RelationshipSummary,
  RELATIONSHIP_CONFIGS,
  getRelationType,
} from './RelationshipBadge'
export type { RelationshipCardProps } from './RelationshipCard'
export { RelationshipCard } from './RelationshipCard'
export { PurposeBadge } from './PurposeBadge'
export type { SessionHudData, GameBreakHudData } from './PracticeSubNav'
export { PracticeSubNav } from './PracticeSubNav'
export { PracticeTimingDisplay } from './PracticeTimingDisplay'
export {
  ContentBannerSlot,
  NavBannerSlot,
  ProjectingBanner,
} from './BannerSlots'
export { CompactBanner } from './CompactBanner'
export { EntryPromptBanner } from './EntryPromptBanner'
export type { ActiveSessionState } from './ActiveSessionBanner'
export type { CurrentPhaseInfo, SkillHealthSummary } from './ProgressDashboard'
export { ProgressDashboard } from './ProgressDashboard'
// Re-export BktClassification type for display color mapping
export type { BktClassification } from './styles/practiceTheme'
export type { SessionMoodIndicatorProps } from './SessionMoodIndicator'
export { SessionMoodIndicator } from './SessionMoodIndicator'
export { SessionModeBanner } from './SessionModeBanner'
export { PerfectSessionCelebration } from './PerfectSessionCelebration'
export { ReadinessReport } from './ReadinessReport'
export type { AutoPauseStats, PauseInfo } from './SessionPausedModal'
export { SessionPausedModal } from './SessionPausedModal'
export type { SessionProgressIndicatorProps } from './SessionProgressIndicator'
export { SessionProgressIndicator } from './SessionProgressIndicator'
export type { ScrollspySection, ScrollspyNavProps } from './ScrollspyNav'
export { ScrollspyNav } from './ScrollspyNav'
export type { SessionHeroProps } from './SessionHero'
export { SessionHero } from './SessionHero'
export { SessionSummary } from './SessionSummary'
export type { SkillsPanelProps } from './SkillsPanel'
export { SkillsPanel } from './SkillsPanel'
export type { ProblemsToReviewPanelProps } from './ProblemsToReviewPanel'
export { ProblemsToReviewPanel } from './ProblemsToReviewPanel'
export type { TrendIndicatorProps } from './TrendIndicator'
export { TrendIndicator } from './TrendIndicator'
export { SkillPerformanceReports } from './SkillPerformanceReports'
// Re-export shared types from BktContext for convenience
export type {
  ExtendedSkillClassification as SkillClassification,
  SkillDistribution,
} from '@/contexts/BktContext'
// Re-export classification function (uses shared getExtendedClassification internally)
export {
  getSkillClassification,
  SkillProgressChart,
} from './SkillProgressChart'
export type { SpeedMeterProps } from './SpeedMeter'
export { SpeedMeter } from './SpeedMeter'
export { StartPracticeModal } from './StartPracticeModal'
export type {
  EnrollmentActions,
  StudentIntervention,
  StudentWithProgress,
} from './StudentSelector'
export { StudentSelector } from './StudentSelector'
export { StudentActionMenu } from './StudentActionMenu'
export { StudentFilterBar } from './StudentFilterBar'
export { VerticalProblem } from './VerticalProblem'
export type { StudentView, TeacherCompoundChipProps } from './ViewSelector'
export {
  ViewSelector,
  VIEW_CONFIGS,
  getAvailableViews,
  getDefaultView,
  TeacherCompoundChip,
} from './ViewSelector'
export { VirtualizedSessionList } from './VirtualizedSessionList'
// Part transition components
export type { PartTransitionScreenProps } from './PartTransitionScreen'
export {
  PartTransitionScreen,
  TRANSITION_COUNTDOWN_MS,
} from './PartTransitionScreen'
export type { ObserverTransitionViewProps } from './ObserverTransitionView'
export { ObserverTransitionView } from './ObserverTransitionView'
export {
  selectTransitionMessage,
  getTransitionType,
  requiresAbacusPutAway,
  requiresAbacusPickUp,
  type TransitionMessage,
  type TransitionType,
} from './partTransitionMessages'