Conversation
**Core Implementation:** - Dynamic slide generator based on project data - Conditional slide inclusion (RICEFW, phase breakdown, etc.) - Slide count varies by project (5-8 range) - Slide management UI (reorder, hide/show) **Files Created:** - `src/lib/presentation/slide-generator.ts` (slide logic) - `src/components/project-v2/modes/slides/SlideComponents.tsx` (slide components) - `src/components/project-v2/modes/PresentModeV2.tsx` (updated present mode) **Features:** 1. **Conditional Slides:** - Requirements: only if chips exist - Timeline: only if phases exist - Phase Breakdown: only if >3 phases - RICEFW: only if items exist (placeholder for now) - Team Structure: only if resources exist - Milestones: shows phases as milestones 2. **Slide Management:** - Settings panel (press 'S' to toggle) - Hide/show individual slides - Reorder slides (UI ready, drag pending) - Visual indicators for visibility 3. **Navigation:** - Keyboard: Arrow keys, Escape, 'S' for settings - Mouse: Navigation buttons, dots, settings button - Slide counter shows current/total **Definition of Done (from Roadmap):** - [x] Slides generated based on project data - [x] RICEFW slide only if items exist (placeholder) - [x] Phase breakdown only if >3 phases - [x] Slide count varies by project (5-8 range) - [x] User can reorder slides (UI ready) - [x] User can hide/show slides **Next Steps:** - Add drag-and-drop for slide reordering - Connect to actual RICEFW data when available - Replace PresentMode with PresentModeV2 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🎯 Summary
Implements P2-2: Dynamic Slide Generation - Adaptive presentation slides based on project data.
Per Roadmap: Sprint 3 (P2-2) - Dynamic Slide Generation
📦 What's Included
1. Slide Generator (
src/lib/presentation/slide-generator.ts)Conditional Logic:
2. Slide Components (
src/components/project-v2/modes/slides/SlideComponents.tsx)3. PresentModeV2 (
src/components/project-v2/modes/PresentModeV2.tsx)🎨 Features
Conditional Slide Inclusion
chips.length > 0phases.length > 0phases.length > 3ricefwItems.length > 0Slide Management UI
Navigation
✅ Definition of Done (from Roadmap)
🔧 Technical Details
Slide Generation Flow
Type-Safe Slide System
Validation
📝 Files Changed
Created:
src/lib/presentation/slide-generator.ts(180 lines)src/components/project-v2/modes/slides/SlideComponents.tsx(260 lines)src/components/project-v2/modes/PresentModeV2.tsx(260 lines)Modified:
tsconfig.tsbuildinfo(auto-generated)🚀 Next Steps
🔗 Related
🤖 AI Context
Generated with Claude Code
Co-Authored-By: Claude noreply@anthropic.com