Commit graph

62 commits

Author SHA1 Message Date
2a8811e9dc
Fix screen issues 2026-01-25 08:18:12 -07:00
6f0dc86c82
Fix incorrect on mobile 2026-01-25 08:11:23 -07:00
5242f8d1f3
Fix host screen 2026-01-25 08:05:57 -07:00
0de5a3bd8c
Fix mobile host screen maybe 2026-01-25 07:55:39 -07:00
cac058b643
Add more types 2026-01-23 14:24:06 -07:00
acfed861ab
Flesh out payment stuff 2026-01-22 12:21:12 -07:00
b0dcdd6438
Update color scheme modal header to use neutral styling 2026-01-22 12:15:33 -07:00
2e12edc249
Add Stripe payment integration for AI subscriptions
Implement subscription-based AI access with 250 generations/month at $5/month or $50/year.

Changes:
- Backend: Stripe service, payment routes, webhook handlers, generation tracking
- Frontend: Upgrade page with pricing, payment success/cancel pages, UI prompts
- Database: Add subscription fields to users, payments table, migrations
- Config: Stripe env vars to .env.example, docker-compose.prod.yml, PRODUCTION.md
- Tests: Payment route tests, component tests, subscription hook tests

Users without AI access see upgrade prompts; subscribers see remaining generation count.
2026-01-21 16:11:03 -07:00
7eeda3e6ae
Add loading spinner when joining 2026-01-19 15:38:26 -07:00
3655d4d456
Add show rankings 2026-01-19 15:26:01 -07:00
cc30b13383
Make mobile smaller 2026-01-19 15:18:42 -07:00
b80254418b
Add more file formats 2026-01-19 15:00:25 -07:00
79820f5298
Add kick player and leave game functionality
- Host can kick players from lobby (removes from game, clears presenter if needed)
- Client can voluntarily leave game
- Fix browser-compatible base64 decoding for document upload (atob vs Buffer)
2026-01-19 14:52:57 -07:00
3122748bae
Move tabs 2026-01-19 14:04:10 -07:00
9ef8f7343d
Add presenter role for game flow control 2026-01-19 14:02:28 -07:00
7a83557dc9
Add user name to share screen 2026-01-16 10:55:55 -07:00
c550534d6c
Fix sign in redirect 2026-01-16 10:39:58 -07:00
c98e262fd0
Fix lobby jank 2026-01-16 10:24:47 -07:00
89caf4fd79
Add qr code 2026-01-16 10:13:25 -07:00
1078ece85c
Add share pin 2026-01-16 10:05:08 -07:00
3e9a988748
Fix sharing 2026-01-16 09:42:12 -07:00
8a11275849
Add sharing 2026-01-16 08:49:21 -07:00
667c490537
Add import/export 2026-01-15 22:27:17 -07:00
bfcc33cc50
Change pins to alphanumeric 2026-01-15 21:01:04 -07:00
eee3e7e47b
Show host and early stop 2026-01-15 20:26:22 -07:00
1d8c08a680
Fix podium screen 2026-01-15 20:13:15 -07:00
4688a73559
Add api key and sorting on scoreboard 2026-01-15 14:49:10 -07:00
36b686bbd4
Add openrouter 2026-01-15 12:28:51 -07:00
7c03c594c1
Branding 2026-01-15 11:52:29 -07:00
e480ad06df
Add server security hardening and draft quiz persistence
Security:
- Add AES-256-GCM encryption for user PII (email, API keys, config)
- Add rate limiting (helmet + express-rate-limit)
- Require auth for file uploads

UX:
- Persist draft quizzes to sessionStorage (survives refresh)
- Add URL-based edit routes (/edit/draft, /edit/:quizId)
- Fix QuizEditor async defaultConfig race condition
- Fix URL param accumulation in Landing
2026-01-15 10:12:05 -07:00
279dc7f2c3
Scoreboard ui stuff 2026-01-15 08:21:38 -07:00
f0d177feeb
Fix game settings scrolling 2026-01-15 07:12:52 -07:00
62281e1124
Fix client answer validation bug and improve scoreboard UX
Bug Fix:
- Fix stale closure bug in client answer validation where correct answers
  were sometimes marked incorrect. The issue occurred when players answered
  quickly after a question started - React's async state updates meant
  currentCorrectShape could hold the previous question's value. Added
  currentCorrectShapeRef to ensure the latest value is always used.

Scoreboard Improvements:
- Unified desktop/mobile layout: avatar, name, and points on first line;
  progress bar on second line; bonus pills on third line
- Removed 5-player limit to show all players
- Added vertical scrolling when player list exceeds viewport
- Fixed layout to prevent content overflow issues
2026-01-14 22:21:10 -07:00
3d6081823c
Fix UI jank a bit 2026-01-14 21:47:40 -07:00
73c7d3efed
Add gemini key ability 2026-01-14 21:04:58 -07:00
9363f643f0
Add cors stuff 2026-01-14 19:44:13 -07:00
560c974bf3
Try fix mobile 2026-01-14 16:34:59 -07:00
32696ad33d
Fix stuff 2026-01-14 09:07:20 -07:00
fc270d437f
Redesign scoreboard 2026-01-14 01:55:49 -07:00
af21f2bcdc
feat: add comprehensive game configuration system
Add a centralized game configuration system that allows customizable
scoring mechanics and game rules. Users can now set default game
configurations that persist across sessions, and individual quizzes
can have their own configuration overrides.

## New Features

### Game Configuration Options
- Shuffle Questions: Randomize question order when starting a game
- Shuffle Answers: Randomize answer positions for each question
- Host Participates: Toggle whether the host plays as a competitor
  or spectates (host now shows as 'Spectator' when not participating)
- Streak Bonus: Multiplied points for consecutive correct answers,
  with configurable threshold and multiplier values
- Comeback Bonus: Extra points for players ranked below top 3
- Wrong Answer Penalty: Deduct percentage of max points for incorrect
  answers (configurable percentage)
- First Correct Bonus: Extra points for the first player to answer
  correctly on each question

### Default Settings Management
- New Settings icon in landing page header (authenticated users only)
- DefaultConfigModal for editing user-wide default game settings
- Default configs are loaded when creating new quizzes
- Defaults persist to database via new user API endpoints

### Reusable UI Components
- GameConfigPanel: Comprehensive toggle-based settings panel with
  expandable sub-options, tooltips, and suggested values based on
  question count
- DefaultConfigModal: Modal wrapper for editing default configurations

## Technical Changes

### Frontend
- New useUserConfig hook for fetching/saving user default configurations
- QuizEditor now uses GameConfigPanel instead of inline toggle checkboxes
- GameScreen handles spectator mode with disabled answer buttons
- Updated useGame hook with new scoring calculations and config state
- Improved useAuthenticatedFetch with deduped silent refresh and
  redirect-once pattern to prevent multiple auth redirects

### Backend
- Added game_config column to quizzes table (JSON storage)
- Added default_game_config column to users table
- New PATCH endpoint for quiz config updates: /api/quizzes/:id/config
- New PUT endpoint for user defaults: /api/users/me/default-config
- Auto-migration in connection.ts for existing databases

### Scoring System
- New calculatePoints() function in constants.ts handles all scoring
  logic including streaks, comebacks, penalties, and first-correct bonus
- New calculateBasePoints() for time-based point calculation
- New getPlayerRank() helper for comeback bonus eligibility

### Tests
- Added tests for DefaultConfigModal component
- Added tests for GameConfigPanel component
- Added tests for QuizEditor config integration
- Added tests for useUserConfig hook
- Updated API tests for new endpoints

## Type Changes
- Added GameConfig interface with all configuration options
- Added DEFAULT_GAME_CONFIG constant with sensible defaults
- Quiz type now includes optional config property
2026-01-14 01:43:23 -07:00
90fba17a1e
Add shuffle options 2026-01-14 00:16:23 -07:00
683cd039e7
Fix modal scrolling 2026-01-13 23:56:21 -07:00
bc4b0e2df7
Add tests and edit works 2026-01-13 23:52:04 -07:00
bfbba7b5ab
Add ability to edit AI generated content 2026-01-13 23:37:08 -07:00
028bab23fd
Add document AI gen support 2026-01-13 22:48:43 -07:00
16007cc3aa
feat(landing): add document upload and quiz customization options
- Added collapsible advanced options section
- Implemented file upload with drag-and-drop support (PDF, TXT, MD, DOCX, Images)
- Added question count slider (5-30)
- Updated Generate button logic to support document-based generation
2026-01-13 20:44:11 -07:00
3e7b89bcad
Stay on reason screen 2026-01-13 17:10:54 -07:00
a7e37024f5
Finer granularity points 2026-01-13 17:03:35 -07:00
3a22b42492
Phase 6 complete 2026-01-13 16:52:57 -07:00
93ea01525e
Phase 5 complete 2026-01-13 16:38:25 -07:00