Files
pos-system/apps/web-client-tpos-net/SUPERADMIN_TRACKER.md
Ho Ngoc Hai 89cf4e8879 feat(superadmin): implement full Super Admin platform management panel
Add complete Super Admin panel with 10 pages for platform-level management:
- Dashboard with KPI cards, system health monitoring, subscription plans
- Merchant management with list/detail/approve/suspend/reactivate
- Subscription plan management (Starter/Growth/Pro/Enterprise)
- User management with role assignment
- Role overview across platform
- Real-time system health for 11 microservices
- Feature flags with toggle and rollout percentage
- Audit log from IAM service
- Platform settings and infrastructure overview
- Blue theme (#1E40AF) to distinguish from merchant admin (orange)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-28 22:46:47 +07:00

4.2 KiB

Super Admin Panel — Implementation Tracker

Status Legend: Todo | 🔄 In Progress | Done | Blocked


Phase 1: Foundation

# Task Files Status
1.1 SuperAdminLayout + CSS Layout/SuperAdminLayout.razor, css/superadmin.css
1.2 SuperAdmin sidebar config Services/SuperAdminSidebarConfig.cs
1.3 SuperAdmin API service Services/SuperAdminApiService.cs
1.4 BFF SuperAdmin controller Server/Controllers/SuperAdminController.cs
1.5 SuperAdmin Dashboard page Pages/SuperAdmin/Dashboard.razor
1.6 DI registration + CSS link Program.cs, index.html
1.7 Localization keys locales/vi-VN.json, en-US.json
1.8 SuperAdminBase class Pages/SuperAdmin/SuperAdminBase.cs

Phase 2: Merchant Management

# Task Files Status
2.1 Merchant list page Pages/SuperAdmin/Merchants/MerchantList.razor
2.2 Merchant detail page Pages/SuperAdmin/Merchants/MerchantDetail.razor
2.3 Approve/Suspend/Reactivate Integrated in MerchantList + MerchantDetail
2.4 BFF merchant admin endpoints SuperAdminController (merchants, approve, suspend)

Phase 3: Subscription & Billing

# Task Files Status
3.1 Plan list page Pages/SuperAdmin/Subscriptions/PlanList.razor
3.2 BFF plans endpoints (in-memory MVP) SuperAdminController (plans CRUD)
3.3 Plan editor dialog Deferred to v2 (edit inline planned)
3.4 Revenue report page Deferred to v2 (needs billing service)

Phase 4: Platform Operations

# Task Files Status
4.1 User management page Pages/SuperAdmin/Users/UserList.razor
4.2 User detail page Pages/SuperAdmin/Users/UserDetail.razor
4.3 System health page Pages/SuperAdmin/Platform/SystemHealth.razor
4.4 Audit log page Pages/SuperAdmin/Platform/AuditLog.razor
4.5 Feature flags page Pages/SuperAdmin/Platform/FeatureFlags.razor
4.6 Platform settings page Pages/SuperAdmin/Settings/PlatformSettings.razor
4.7 Role management page Pages/SuperAdmin/Roles/RoleManagement.razor

Files Created (18 total)

Client (Blazor WASM) — 14 files

  1. Layout/SuperAdminLayout.razor — Layout with blue theme sidebar
  2. Services/SuperAdminSidebarConfig.cs — Sidebar menu config
  3. Services/SuperAdminApiService.cs — API service (stats, merchants, plans, health, flags)
  4. Pages/SuperAdmin/SuperAdminBase.cs — Base class for all SA pages
  5. Pages/SuperAdmin/Dashboard.razor — KPI dashboard + recent merchants + health + plans
  6. Pages/SuperAdmin/Merchants/MerchantList.razor — List/filter/search/approve/suspend
  7. Pages/SuperAdmin/Merchants/MerchantDetail.razor — Detail view with tabs
  8. Pages/SuperAdmin/Subscriptions/PlanList.razor — Plan cards with pricing
  9. Pages/SuperAdmin/Users/UserList.razor — Platform user list with roles
  10. Pages/SuperAdmin/Users/UserDetail.razor — User detail + role assignment
  11. Pages/SuperAdmin/Platform/SystemHealth.razor — Service health grid
  12. Pages/SuperAdmin/Platform/AuditLog.razor — Audit trail table
  13. Pages/SuperAdmin/Platform/FeatureFlags.razor — Toggle feature flags
  14. Pages/SuperAdmin/Roles/RoleManagement.razor — Role list overview
  15. Pages/SuperAdmin/Settings/PlatformSettings.razor — Platform config display

Server (BFF) — 1 file

  1. Controllers/SuperAdminController.cs — BFF proxy + aggregation

CSS — 1 file

  1. wwwroot/css/superadmin.css — Full dark theme with blue accent

Modified — 4 files

  1. Program.cs — DI registration
  2. wwwroot/index.html — CSS link
  3. locales/vi-VN.json — Vietnamese keys
  4. locales/en-US.json — English keys

Build Log

Time Action Result
2026-03-28 Phase 1-4 implementation Build succeeded (0 errors)
2026-03-28 Fixed System namespace conflict Renamed folder to Platform
2026-03-28 Fixed Razor interpolation errors Used @() syntax