#661 Title: Add task completion analytics endpoint FIXED#700
Merged
Uyoxy merged 2 commits intoJun 1, 2026
Merged
Conversation
|
@Kappa16 Great news! 🎉 Based on an automated assessment of this PR, the linked Wave issue(s) no longer count against your application limits. You can now already apply to more issues while waiting for a review of this PR. Keep up the great work! 🚀 |
Author
|
TOUGH CODE BUT VALID FIX |
…-analytics-endpoint-FIX
Contributor
|
thanks for your contribution |
Uyoxy
approved these changes
Jun 1, 2026
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.
Title: Add task completion analytics endpoint FIXED
Key Findings
Uzima-Backend lacked a dedicated analytics solution for tracking health task completion performance. The existing analytics implementation provided only limited functionality and there was no centralized TaskAnalyticsService capable of calculating completion rates, totals, and category-level metrics within a single request. Coaches and administrators had no way to analyze user performance across daily, weekly, monthly, or custom time ranges, making it difficult to measure engagement and platform effectiveness. During implementation, an additional issue was discovered where analytics.service.ts contained a merge-related syntax error caused by two concatenated class definitions and an unclosed brace, preventing successful compilation.
Fix Features
A new TaskAnalyticsService was introduced within src/shared/analytics to provide comprehensive task completion analytics. The service supports daily, weekly, monthly, and custom date-range reporting, including optional user-specific filtering and global administrative views. Analytics responses now include total attempted tasks, total completed tasks, completion percentages rounded to two decimal places, and category-level breakdowns generated through SQL aggregation. A new GET /tasks/analytics endpoint was added with full Swagger documentation and support for period, date range, and scope parameters. The solution was integrated through a dedicated AnalyticsModule and connected cleanly with HealthTasksModule. The existing analytics compilation issue was repaired, and a comprehensive test suite was added with 14 new tests covering calculations, date ranges, filtering, and edge cases. Combined with the existing tests, all 17 analytics tests now pass successfully without regressions.
CLOSE #661