senke
d2bf96d136
error-propagation: fix retry handlers and mark Action 3.4.1.3 complete
2026-01-11 17:40:21 +01:00
senke
274c3fdd99
error-propagation: implement retry for failed mutations (remaining handlers)
2026-01-11 17:39:51 +01:00
senke
bb9a0e655c
error-propagation: implement retry for failed mutations (ShareDialog, CommentSection)
2026-01-11 17:38:54 +01:00
senke
6e16fce1b9
error-propagation: implement retry for failed mutations (MarketplaceHome, RolesPage, SettingsPage)
2026-01-11 17:38:15 +01:00
senke
f929e8ebd0
error-propagation: implement retry for failed mutations (AccountSettings)
2026-01-11 17:37:04 +01:00
senke
aee6624e2e
error-propagation: implement retry for failed mutations (Cart)
2026-01-11 17:36:33 +01:00
senke
318ea5e06e
error-propagation: implement retry for failed mutations (ProfileForm, LibraryPage)
2026-01-11 17:35:38 +01:00
senke
fccc2db5e1
error-propagation: highlight form fields on validation errors
2026-01-11 17:31:12 +01:00
senke
828c396bcf
error-propagation: fix leftover toast.error in LibraryPage confirmBulkDelete
2026-01-11 17:13:00 +01:00
senke
a1e6211391
error-propagation: replace toast.error with ErrorDisplay in Cart component
2026-01-11 17:12:27 +01:00
senke
f602baf67b
error-propagation: replace toast.error with ErrorDisplay in AccountSettings
2026-01-11 17:11:51 +01:00
senke
6db443a8e7
error-propagation: replace toast.error with ErrorDisplay in ProfileForm
2026-01-11 17:11:03 +01:00
senke
28c7266115
error-propagation: replace toast.error with ErrorDisplay in ChatSidebar and CreateRoomDialog
2026-01-11 17:10:27 +01:00
senke
a0fe095a99
error-propagation: replace toast.error with ErrorDisplay in SharePlaylistModal and AddCollaboratorModal
2026-01-11 17:08:58 +01:00
senke
9b1f84a8d5
error-propagation: replace toast.error with ErrorDisplay in ShareDialog and CommentSection
2026-01-11 17:08:04 +01:00
senke
d783c69290
error-propagation: replace toast.error with ErrorDisplay in SettingsPage (query and mutation errors)
2026-01-11 17:07:02 +01:00
senke
856bb348cf
error-propagation: replace toast.error with ErrorDisplay in RolesPage (query and mutation errors)
2026-01-11 17:06:30 +01:00
senke
bd72718e6e
error-propagation: replace toast.error and inline error with ErrorDisplay in TrackDetailPage
2026-01-11 17:05:23 +01:00
senke
c5cbdd99d0
error-propagation: update PlaylistErrorBoundary to use ErrorDisplay component
2026-01-11 17:04:42 +01:00
senke
6d265aaa3e
error-propagation: update PlayerError to use ErrorDisplay component
2026-01-11 17:03:55 +01:00
senke
2bbb04c2c7
error-propagation: fix AuthErrorMessage tests for ErrorDisplay integration
2026-01-11 17:03:00 +01:00
senke
83e7cdd901
error-propagation: update AuthErrorMessage to use ErrorDisplay component
2026-01-11 17:02:34 +01:00
senke
4c441740d9
error-propagation: replace toast errors with ErrorDisplay in LibraryPage
2026-01-11 17:00:25 +01:00
senke
39d3007cbf
data-flow: remove unnecessary client-side filter pass-through
...
- Completed Action 2.2.1.1: Removed client-side filter logic from LibraryPage
- Removed unnecessary useMemo that was just passing through tracksData?.tracks
- Simplified to direct assignment: filteredTracks = tracksData?.tracks || []
- Backend handles all filtering (verified in Action 2.2.1.2)
- No actual filtering was happening - useMemo was just a pass-through
- Code simplified, behavior unchanged
2026-01-11 16:53:06 +01:00
senke
4e2b43037a
data-flow: remove duplicate LibraryPagePremium.tsx file
...
- Completed Action 2.2.1.3: Handled LibraryPage.tsx vs LibraryPagePremium.tsx duplication
- Updated LIBRARY_PAGE_AUDIT.md with file comparison
- Verified LibraryPage.tsx is active (imported via LazyLibrary in routing)
- Verified LibraryPagePremium.tsx is duplicate/unused (not imported anywhere)
- LibraryPagePremium.tsx is older version without debounce improvements
- Removed LibraryPagePremium.tsx - safe deletion, no references found
- Routing continues to use LibraryPage.tsx, no breakage
2026-01-11 16:51:47 +01:00
senke
57e3edbdc9
data-flow: standardize debounce across all search inputs
...
- Completed Action 2.4.1.3: Audited and standardized search input debouncing
- Created SEARCH_DEBOUNCE_AUDIT.md documenting all search components
- Found 7 search components: 5 using useDebounce, 1 manual setTimeout, 1 manual search
- Standardized AddTrackToPlaylistModal to use useDebounce hook instead of manual setTimeout
- All automatic search inputs now use consistent debouncing (300-500ms delays)
- MessageSearch uses manual search (intentional, no debounce needed)
2026-01-11 16:51:23 +01:00
senke
ff589b73c5
data-flow: add debounce to LibraryPage search and fix race condition
...
- Completed Actions 2.4.1.1, 2.4.1.2, and 2.4.1.4
- Action 2.4.1.1: Verified custom useDebounce hook exists (no external package needed)
- Action 2.4.1.2: Added useDebounce hook with 300ms delay to LibraryPage search
- Action 2.4.1.4: Fixed race condition by using debouncedSearchTerm for page reset
- Search now fires 300ms after typing stops, reducing API calls
- Page reset now waits for debounce to complete, preventing race conditions
2026-01-11 16:49:13 +01:00
senke
cff3e13136
data-flow: remove obsolete LibraryPage.tsx.old file
...
- Completed Action 2.2.1.5: Removed LibraryPage.tsx.old
- File verified as safe to delete (no imports/references found in Action 2.2.1.4)
- Cleanup of obsolete backup file
- Active LibraryPage.tsx remains unchanged
2026-01-11 16:43:47 +01:00
senke
4168509a67
api-contracts: install openapi-generator-cli and create type generation script
...
- Completed Action 1.1.2.1: Installed @openapitools/openapi-generator-cli
- Completed Action 1.1.2.2: Created generate-types.sh script
- Added swagger annotations to cmd/modern-server/main.go
- Regenerated swagger.yaml with proper info section
- Successfully generated TypeScript types to src/types/generated/
The script generates types from veza-backend-api/openapi.yaml using
typescript-axios generator and creates barrel exports.
2026-01-11 16:30:43 +01:00
senke
e127a6a48c
feat(ui): complete chat interface overhaul
...
- Replaced all basic Tailwind components with Premium Glassmorphism design
- Implemented neon accents and custom scrollbars
- Added typing indicators and file upload UI polish
- Integrated Chat Page with the new Layout system
2026-01-11 03:20:52 +01:00
senke
ed011ddd45
feat: Visual masterpiece - true light mode & premium UI
...
🎨 **True Light/Dark Mode**
- Implemented proper light mode with inverted color scheme
- Smooth theme transitions (0.3s ease)
- Light mode colors: white backgrounds, dark text, vibrant accents
- System theme detection with proper class application
🌈 **Enhanced Theme System**
- 4 color themes work in both light and dark modes
- Cyber (cyan/magenta), Ocean (blue/teal), Forest (green/lime), Sunset (orange/purple)
- Theme-specific glassmorphism effects
- Proper contrast in light mode
✨ **Premium Animations**
- Float, glow-pulse, slide-in, scale-in, rotate-in animations
- Smooth page transitions
- Hover effects with depth (lift, glow, scale)
- Micro-interactions on all interactive elements
🎯 **Visual Polish**
- Enhanced glassmorphism for light/dark modes
- Custom scrollbar with theme colors
- Beautiful text selection
- Focus indicators for accessibility
- Premium utility classes
🔧 **Technical Improvements**
- Updated UIStore to properly apply light/dark classes
- Added data-theme attribute for CSS targeting
- Smooth scroll behavior
- Optimized transitions
The app is now a visual masterpiece with perfect light/dark mode support!
2026-01-11 02:32:21 +01:00
senke
38e83296b3
stabilisation commit A
2026-01-07 19:39:21 +01:00
senke
f035cad46e
chore: resolve property mismatches and type conflicts for snake_case alignment
2026-01-07 11:15:48 +01:00
senke
beb3b78b61
chore: remove production logs in features
2026-01-07 10:32:53 +01:00
senke
fd65510544
stabilisation commit
2026-01-04 01:44:23 +01:00
senke
0e55c454c8
fix: use correct WebSocket URL from env config for chat connection
...
- ChatPage now uses env.WS_URL (ws://127.0.0.1:8081/ws) instead of API response
- API response returns relative path /ws which was causing connection errors
- This fixes WebSocket connection errors in browser console
2026-01-04 01:44:23 +01:00
senke
7224a5f580
fix: resolve stream server compilation errors and integrate chat stability fixes
2026-01-04 01:44:22 +01:00
senke
f5eaa0034a
[T0-003] fix(frontend): Corriger erreurs TypeScript/React
...
- Variables non utilisées préfixées avec _
- Badge variants corrigés (outline -> default/secondary)
- Types ApiError corrigés (rate_limit supprimé)
- Logger errors corrigés (LogContext au lieu de Error)
- Types PaginatedResponse corrigés (items au lieu de data)
- Types génériques complexes corrigés (stateCleanup, undoRedo)
- Fichiers .example.ts exclus du typecheck
- Status undefined vérifié dans client.ts
Résultats:
- npm run build ✅ (réussit)
- npm run typecheck ✅ (0 erreurs)
- npm run lint ⚠️ (1521 erreurs restantes - style/variables non utilisées)
Files: 35 fichiers modifiés
Hours: 6 estimated, 6 actual
2026-01-04 01:44:20 +01:00
senke
00083690fb
[FIX] PROD-010: Corriger ENUM PostgreSQL dans modèle User - Tests E2E passent
...
- Ajout de type:user_role dans le tag GORM du champ Role
- Amélioration de la détection d'erreurs ENUM dans le service Register
- L'endpoint /auth/register retourne maintenant 201 OK avec tokens
- Score production: 52/70 → 58/70
- PROD-010 marqué comme fixed (P0 blocker résolu)
2026-01-04 01:44:19 +01:00
senke
08172c868a
[FIX] PROD-007: Corriger erreurs TypeScript critiques (types, signatures, chemins de code)
2026-01-04 01:44:19 +01:00
senke
b57ab358ae
[FIX] PROD-007: Corriger erreurs TypeScript critiques - imports et exports manquants
2026-01-04 01:44:18 +01:00
senke
32b5d90fa1
[FIX] PROD-007: Corriger erreurs TypeScript - ajouter override modifiers
2026-01-04 01:44:18 +01:00
senke
5cb722234f
[FIX] Update password minimum length validation to match backend
...
- Change password minimum length from 8 to 12 characters in RegisterForm
- Matches backend requirement (min=12 in RegisterRequest)
- Prevents validation errors when submitting registration form
- RegisterPage already had correct validation (12 chars)
2026-01-04 01:44:13 +01:00
senke
02c6583a40
[INT-V2-003] Update documentation with id: string
...
- Replace id: number with id: string in player/README.md
- Replace id: number with id: string in Table.test.tsx
- Update test data to use string IDs
- Aligns with UUID standard (id: string everywhere)
2025-12-26 09:54:51 +01:00
senke
dc09f05153
[INT-ENDPOINT-001] Add frontend service for GET /api/v1/sessions/stats
2025-12-26 09:26:50 +01:00
senke
ef599a6f8c
[INT-CLEANUP-004] Add barrel exports for clean imports
2025-12-26 09:25:52 +01:00
senke
af0fa76855
[INT-CLEANUP-002] Consolidate type definitions in single location
2025-12-26 09:22:05 +01:00
senke
c85d7ffaa3
[INT-AUTH-002] Remove duplicate auth store - migrate to features/auth/store/authStore.ts
2025-12-26 09:11:46 +01:00
senke
6bb5cccdfa
[INT-API-004] Add request timeout configuration per endpoint type
2025-12-25 22:42:56 +01:00
senke
936ed41619
[INT-API-003] Standardize error handling across all services
2025-12-25 22:42:07 +01:00