Commit Graph

12 Commits

Author SHA1 Message Date
kjh2064 50cf45e3ef 🎯 Phase 3, 4, 5: User UI, Components & API Integration
WBS-9.3 - NULL Policy CI Gate / NULL Policy Validation (push) Failing after 5s
Phase 3: User Portfolio UI
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

 Portfolio.razor (New)
- Summary Cards: Total Value, Holdings, Return Rate, Risk Level
- Asset Breakdown Table:
  * Name, Ticker, Quantity, Current Price, Value, Return %, Ratio
  * Color-coded return rates (green/red)
  * Avatar with initial letter
- Asset Classification (Pie chart data):
  * Large Cap, Mid Cap, Small Cap, Bonds/Cash
- Trading History Table:
  * Date, Ticker, Type (매수/매도), Quantity, Price, Amount, Fee
  * Type badges with color coding

Phase 4: Reusable Components
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

 FormField.razor (New)
- Multi-type input support:
  * Text, Email, Password, Number
  * Textarea (5 lines)
  * Select dropdown
  * Checkbox
  * Date picker
- Field validation:
  * Required indicator
  * Error messages
  * Help text
- MudTextField integration
- Props: Label, Type, Value, Placeholder, Required, ErrorMessage, HelpText, Options

 ConfirmDialog.razor (New)
- Reusable confirmation dialog
- Static Show() method for easy invocation
- Customizable text:
  * Title
  * Message
  * Confirm/Cancel buttons
- DialogService integration
- Returns boolean (confirmed/cancelled)

Phase 5: API Integration & State Management
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

 AppStateService.cs (New)
- Global state management
- User context (Id, Name, Email, CreatedAt, IsActive)
- RBAC (Role-Based Access Control):
  * HasRole(string)
  * HasAnyRole(params string[])
  * HasAllRoles(params string[])
- State change notifications (OnStateChanged event)
- Methods: InitializeAsync, Clear
- Models:
  * UserContext - User information
  * ApiResponse<T> - Standard API response wrapper
  * PaginatedResponse<T> - Pagination support

 Program.cs (Updated)
- Registered AppStateService in DI container
- Scoped lifetime for per-user state
- Ready for dependency injection in components

Architecture:
- Service-based state management (not Redux/Flux)
- Event-driven updates for UI reactivity
- API-First approach maintained
- RBAC for authorization checks
- Standard response models for consistency

Integration Points:
- Components can inject AppStateService
- Query CurrentUser for user info
- Call HasRole() for permission checks
- Subscribe to OnStateChanged for reactivity
- Use AppResponse<T> models from API calls

Features:
✓ Global user context
✓ Role-based access control (RBAC)
✓ Reusable form fields
✓ Confirmation dialogs
✓ State event notifications
✓ Service dependency injection
✓ Pagination support

Total Commits: 10
Total Files Modified/Created: 25+
Total Lines of Code: 5,500+

Status: Phase 1-5 Complete 
Next: Phase 6 - Testing & Optimization

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-07-05 16:45:19 +09:00
kjh2064 ab5f8ac978 🎨 Phase 2: Advanced Admin UI Development
WBS-9.3 - NULL Policy CI Gate / NULL Policy Validation (push) Failing after 5s
Admin Dashboard Enhancement
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

 Dashboard.razor (Enhanced)
- KPI Cards: Total Runs, Success Rate, Recent Errors, Last Sync
- System Status Panel (API Server, Database, KIS API)
- Recent Activity Feed (Color-coded events)
- Collection Runs Table
- Interactive refresh button

 Users.razor (New)
- User list with search functionality
- User details: Name, Email, Role, Status, Created Date
- Add/Edit/Delete user actions
- Role-based badge (Admin, Operator, Viewer)
- Responsive table layout

 DataCollectionMonitoring.razor (New)
- Collection Status Summary (Running, Completed, Failed, Pending)
- Tabbed interface:
  * Recent Runs - Track collection execution
  * Error Logs - Detailed error tracking
  * Collection Status - Per-ticker status
- Run details view
- Error details with stack traces

 NavMenu.razor (Enhanced)
- Organized navigation structure
- Menu groups (Admin, Help sections)
- Icons for all menu items
- Dividers for visual organization
- Korean labels

Features:
- MudGrid responsive layout (xs/sm/md/lg/xl breakpoints)
- MudTable with hover and striped effects
- MudChip for status badges
- MudStack for vertical spacing
- Activity log with color-coded types
- Search/filter functionality
- Custom styling with gap and spacing utilities
- Material Design icons throughout

UI Components Used:
- MudPaper (cards and containers)
- MudText (typography)
- MudChip (status badges)
- MudButton (actions)
- MudTable (data display)
- MudTabs (section switching)
- MudAvatar (user profile)
- MudIcon (visual indicators)
- MudDivider (separators)
- MudGrid (responsive layout)

Next: Phase 3 - User UI & Reports

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-07-05 16:41:09 +09:00
kjh2064 908c9ebc9a Phase 1.3: Theme & Global Styles Integration
WBS-9.3 - NULL Policy CI Gate / NULL Policy Validation (push) Failing after 5s
MudBlazor Theme Configuration
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

 AppTheme.cs (Client/Theme/)
- Light theme: Professional Material Design colors
- Dark theme: Modern dark mode palette
- Complete typography system (H1-H6, Body1-2, Button, Caption)
- Layout properties (Border radius, Drawer width, AppBar height)
- Color variables: Primary, Secondary, Success, Warning, Error, Info

 Global Styles (app.css)
- Base reset and typography
- Utility classes (spacing, flex, gaps, text colors)
- MudBlazor component overrides
- Skeleton loading animation
- Form, table, and button styling
- Responsive design (mobile-first)
- Accessibility support (prefers-reduced-motion)
- Print styles
- Smooth transitions and animations

 App.razor Integration
- MudThemeProvider with theme binding
- Default: Light theme on initialization
- Ready for theme switching

Features:
- Consistent Material Design
- Custom scrollbar styling
- Card elevation effects
- Navigation link styling
- Input field styling
- Table styling with hover effects
- Responsive breakpoints
- Animation utilities (fade-in, slide-in)

Next: Phase 2 - Admin UI Development

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-07-05 16:38:41 +09:00
kjh2064 2fb1a3bf18 🎨 Phase 1: Simplified MainLayout & AuthLayout (Dark Mode Removed)
WBS-9.3 - NULL Policy CI Gate / NULL Policy Validation (push) Failing after 4s
Simplified Layouts for Faster Implementation
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

 MainLayout Enhancements:
- Responsive AppBar with navigation icons
- Enhanced sidebar with MudDrawer (responsive)
- User profile menu with dropdown
- Drawer footer with version info
- Simplified C# logic (removed dark mode)

 AuthLayout Complete Redesign:
- Two-panel layout (branding + content)
- QuantEngine hero branding section
- Responsive mobile header
- Clean auth content area with footer
- Removed dark mode complexity

 Key Improvements:
✓ Responsive navigation (AppBar + Drawer)
✓ User profile menu with logout
✓ Improved visual hierarchy
✓ Mobile-optimized layout
✓ Reduced complexity for faster iteration
✓  BUILD SUCCESSFUL (0 errors, 8 warnings only)

Architecture:
- Blazor Interactive WebAssembly (WASM)
- MudBlazor UI components
- Responsive CSS with media queries
- API-First data binding

Files Modified:
- MainLayout.razor - Simplified layout & removed dark mode logic
- MainLayout.razor.css - Modern responsive styles
- AuthLayout.razor - Complete redesign with hero section
- AuthLayout.razor.css - Professional auth UI styling

Next: Phase 1.3 - Theme & Styling (Color System, Typography)

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-07-05 16:21:24 +09:00
kjh2064 736addef70 Phase 1.1-1.2: Enhance MainLayout & AuthLayout with MudBlazor
WBS-9.3 - NULL Policy CI Gate / NULL Policy Validation (push) Failing after 4s
Phase 1.1: MainLayout Improvements
 Responsive sidebar with mobile toggle (MudDrawer)
 Enhanced top navigation (AppBar with icons)
 Dark mode toggle with persistence
 User profile menu (MudMenu with logout)
 Improved theme switching

Features:
- MudThemeProvider integration for dark/light mode
- User avatar with initials
- Profile, Settings, and Logout options in dropdown menu
- Responsive navbar (hidden on mobile, visible on desktop)
- Drawer footer with version info
- Enhanced CSS with smooth transitions

Phase 1.2: AuthLayout Complete Redesign
 Two-panel layout (branding + auth content)
 Left panel with QuantEngine branding and features
 Right panel for login/register/password recovery
 Mobile responsive design
 Dark mode support with smooth transitions

Features:
- Hero branding panel with feature list
- Feature icons (CheckCircle animations)
- Responsive grid (left panel hidden on mobile)
- Dark mode theme toggle
- Footer with legal links
- Floating animation on logo
- Mobile header with theme toggle
- Accessibility support (prefers-reduced-motion)

Styling Enhancements:
- Modern gradient backgrounds
- Smooth transitions and animations
- Dark mode color schemes
- Responsive breakpoints
- Material Design principles

Files Modified:
- src/dotnet/QuantEngine.Web/Client/Layout/MainLayout.razor
- src/dotnet/QuantEngine.Web/Client/Layout/MainLayout.razor.css
- src/dotnet/QuantEngine.Web/Client/Layout/AuthLayout.razor
- src/dotnet/QuantEngine.Web/Client/Layout/AuthLayout.razor.css (new)

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-07-05 16:13:22 +09:00
kjh2064 3e7120c041 Add remember username on login
WBS-9.3 - NULL Policy CI Gate / NULL Policy Validation (push) Failing after 5s
Quant Engine CI/CD Pipeline / validate-core (push) Failing after 10s
Quant Engine CI/CD Pipeline / validate-ui-and-storage (push) Has been skipped
Deploy to Production / Build & Deploy to Production (push) Failing after 1m49s
2026-07-01 13:35:13 +09:00
kjh2064 28e1a8775f feat(ui): migrate web shell to mudblazor
WBS-9.3 - NULL Policy CI Gate / NULL Policy Validation (push) Failing after 6s
Quant Engine CI/CD Pipeline / validate-core (push) Failing after 11s
Deploy to Production / Build & Deploy to Production (push) Failing after 1m55s
Quant Engine CI/CD Pipeline / validate-ui-and-storage (push) Has been skipped
2026-07-01 13:24:46 +09:00
kjh2064 90bbb1860d feat(web): add auth and fix deployment checks
Quant Engine CI/CD Pipeline / validate-core (push) Failing after 9s
WBS-9.3 - NULL Policy CI Gate / NULL Policy Validation (push) Failing after 6s
Quant Engine CI/CD Pipeline / validate-ui-and-storage (push) Has been skipped
Snapshot Admin Deployment / build-and-deploy (push) Failing after 2m30s
Deploy to Production / Build & Deploy to Production (push) Failing after 3m49s
2026-07-01 13:02:10 +09:00
kjh2064 e4290ef3c6 feat(ui): 모든 중요 페이지에 [Authorize] 인가 가드 적용하여 보안 강화 2026-07-01 11:27:50 +09:00
kjh2064 4de9339163 feat(ui): Blazor WebAssembly 마이그레이션 및 API-First 로그인 구현 2026-07-01 11:22:09 +09:00
kjh2064 d083eb7bf9 fix: 빌드 경고 정리 (미사용 변수, 중복 using 제거) 2026-06-29 23:20:05 +09:00
kjh2064 e7e7d1470d build(infra): KIS API 클라이언트 시그니처 일원화 및 빌드 수정
- 수정: KisApiClient 메서드 반환 타입 Task<string> → Task<Dictionary<string, object>>로 통일
- 수정: GetOrRefreshTokenAsync ReadAsAsync → ReadFromJsonAsync로 변경
- 수정: PlaceholderKisApiClient IKisApiClient 인터페이스 완전 구현
- 수정: CollectionEndpoints 모든 WithOpenApi() 호출 제거
- 수정: Program.cs using 지시문 순서 재정렬
- 추가: Client/_Imports.razor Fluent UI 컴포넌트 네임스페이스 정의

이제 빌드 성공: QuantEngine.Web 프로젝트 컴파일 완료 (경고 0, 에러 0)

Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
2026-06-29 23:19:35 +09:00