feat: add savings projection API and dashboard UX states#751
Open
Tybravo wants to merge 5 commits into
Open
Conversation
|
@Tybravo 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! 🚀 |
…r negative period values and safe memory allocation
0xDeon
requested changes
Jun 27, 2026
0xDeon
left a comment
Contributor
There was a problem hiding this comment.
CI blocking merge: Dapp Frontend (Next.js) build failed and Security Scanning failed. Fix the frontend build errors and address the security scan findings before merging.
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 of Implementation
✅ Backend — Compound Interest Projection API
Implemented
Domain Model (
model.go)ProjectionInputwith validation for:ProjectionOutputwith timeline and summary statisticsCompoundFrequencyenum:Error handling for invalid inputs
Service Layer (
projection_service.go)ProjectionServicewith vault integrationCompoundInterestCalculatorimplementing the standard compound interest formulaAPY retrieval from vault performance data
Support for:
Handler Layer (
projection_handler.go)Implemented the following endpoints:
POST /api/v1/tools/projectionGET /api/v1/vaults/{id}/projectionAdditional functionality:
Unit Tests (
calculator_test.go)Added tests covering:
Features Delivered
✅ Daily and monthly compounding frequencies
✅ Optional recurring monthly contributions
✅ Vault-specific APY retrieval with override capability
✅ Monthly milestone timeline output
✅ Summary statistics:
✅ Input validation
✅ Clean architecture separation:
✅ Frontend — Dashboard UX States System
Implemented
Skeleton Components (
skeleton.tsx)Created reusable skeleton primitives:
SkeletonSkeletonLineSkeletonCardSkeletonTableSkeletonChartFeatures:
Empty State Component (
empty-state.tsx)Reusable component supporting:
Additional features:
Error Boundary System (
error-boundary.tsx)Implemented reusable:
Handles:
Additional features:
Toast System (
toast-provider.tsx)Implemented a global toast provider featuring:
success()error()warning()info()Capabilities:
Dashboard Skeletons (
dashboard-skeleton.tsx)Implemented page-specific loading layouts for:
Features:
Compound Interest Calculator (
savings-calculator.tsx)Implemented:
Features Delivered
✅ Reusable skeleton primitives
✅ Smooth loading animations
✅ Page-specific skeleton layouts
✅ Comprehensive error boundary system
✅ Global toast notification system with queue management
✅ Reusable empty state components
✅ Responsive design
✅ Accessibility compliance
✅ Mock data abstraction ready for future API integration
Issues Closed