Refactor: Decompose dataService into domain services and implement fa…#78
Refactor: Decompose dataService into domain services and implement fa…#78Anurag-elitx wants to merge 1 commit into
Conversation
|
Warning Rate limit exceeded
You’ve run out of usage credits. Purchase more in the billing tab. ⌛ How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. ℹ️ Review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (8)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
📋 Description
JIRA ID: #129
This PR addresses the "God Object" anti-pattern in
dataServiceby decomposing it into smaller, highly cohesive, feature-specific domain services. This reduces tight coupling, makes state changes more predictable, and prepares the codebase for the Angular 19 migration.Key Changes:
src/app/services/state/:AuthContextService: Manages agent/user session state.RoleContextService: Manages application role and feature contexts.BeneficiaryStateService: Manages active beneficiary details.CallStateService: Manages active telephony and call routing state.UiEventBusService: Handles miscellaneous decoupled UI events and subjects.data.service.tsto act as a Facade. It now injects the new services and uses TypeScript getters and setters to map properties, ensuring that all 100+ existing components continue to work without any modifications.multi-role-screen.component.tsto directly inject and useAuthContextService,RoleContextService, andUiEventBusService, bypassing the legacydataServiceentirely.✅ Type of Change
ℹ️ Additional Information
multi-role-screencompiles and works with the new direct service injections.@angular/coreinnode_moduleslocally, a full runtime verification was not possible, but the code structure follows standard Angular DI patterns.