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 | 'use client' import { useEffect, useRef } from 'react' import { useTheme } from '@/contexts/ThemeContext' import { fireConfettiCelebration } from '@/utils/confetti' import { css } from '../../../styled-system/css' interface PerfectSessionCelebrationProps { studentName: string } /** * PerfectSessionCelebration - Fires confetti when a student completes * a session with all problems eventually correct (including retries). * * Used on the session summary page, NOT for skill progression. */ export function PerfectSessionCelebration({ studentName }: PerfectSessionCelebrationProps) { const { resolvedTheme } = useTheme() const isDark = resolvedTheme === 'dark' const confettiFiredRef = useRef(false) useEffect(() => { if (!confettiFiredRef.current) { confettiFiredRef.current = true fireConfettiCelebration() } }, []) return ( <div data-component="perfect-session-celebration" className={css({ textAlign: 'center', padding: '1.5rem', borderRadius: '16px', border: '2px solid', borderColor: isDark ? 'yellow.600' : 'yellow.300', })} style={{ background: isDark ? 'linear-gradient(135deg, rgba(234, 179, 8, 0.15) 0%, rgba(251, 191, 36, 0.1) 100%)' : 'linear-gradient(135deg, rgba(234, 179, 8, 0.08) 0%, rgba(251, 191, 36, 0.05) 100%)', }} > <div className={css({ fontSize: '4rem', marginBottom: '0.5rem', })} > 🌟 </div> <h1 className={css({ fontSize: '1.5rem', fontWeight: 'bold', color: isDark ? 'gray.100' : 'gray.800', marginBottom: '0.25rem', })} > Perfect Session, {studentName}! </h1> <p className={css({ fontSize: '1rem', color: isDark ? 'gray.400' : 'gray.600', })} > Every problem answered correctly! </p> </div> ) } |