Add draft exercise entry parsing scaffolding#151
Open
forketyfork wants to merge 5 commits intomainfrom
Open
Conversation
There was a problem hiding this comment.
Pull request overview
This PR introduces draft exercise entry parsing scaffolding for structured workout logging. It adds a new parser to capture exercise names, weights, and set breakdowns from workout entries, and integrates calorie calculation based on per-rep metadata from linked exercise notes.
Key changes:
- Added
ExerciseEntryParserfor parsing workout entries with format#workout [[Exercise]] 40kg 15-15-15 - Introduced
ExerciseMetadataServiceto resolve calories-per-rep from exercise note frontmatter - Integrated exercise parsing into nutrition calculations, subtracting workout calories from totals
Reviewed changes
Copilot reviewed 12 out of 12 changed files in this pull request and generated 4 comments.
Show a summary per file
| File | Description |
|---|---|
src/ExerciseEntryParser.ts |
New parser for structured exercise entries with name, weight, and sets |
src/ExerciseMetadataService.ts |
Service to resolve per-rep calorie metadata from exercise notes |
src/NutritionCalculator.ts |
Integrated exercise entry parsing and calorie conversion into nutrition totals |
src/__tests__/ExerciseEntryParser.test.ts |
Test coverage for exercise entry parser functionality |
src/__tests__/NutritionCalculator.test.ts |
Test coverage for workout calorie calculation from set-based entries |
src/FoodTrackerPlugin.ts |
Wired up ExerciseMetadataService initialization and cache clearing |
src/StatsService.ts |
Added ExerciseMetadataService dependency and passed to calculation params |
src/FrontmatterTotalsService.ts |
Added ExerciseMetadataService dependency for frontmatter total calculations |
src/NutritionTotal.ts |
Added optional getExerciseCaloriesPerRep parameter |
src/SettingsService.ts |
Reordered settings properties (no functional change) |
src/__tests__/StatsService.test.ts |
Updated test mocks to include exerciseMetadataService |
README.md |
Added documentation for structured exercise notes feature |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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
Testing
Codex Task