Introduce client-side emoji picker and richer reaction UX, and propagate user IDs for reactions over the WS protocol. Backend: include user_id in reaction events. Frontend: add EmojiPicker component; update useChatSocket types to include user_id; handle "reaction" events in ChatRoomPage to update cached messages (add/remove/switch reactions). Message component: UI overhaul — action menu with slide-out actions, toggle button (⋮→✕), emoji picker trigger, grouped reaction buttons that show counts and indicate "mine" state, and various layout/cleanups. Media: defer video loading by setting preload="none" in ChatMediaGallery, MediaGallery and PostComposer to improve performance.
vontor.cz
Czech e-marketplace — Django backend + React frontend.
Requirements
- Docker Desktop
- Node.js 22+ (frontend dev)
- Python 3.12+ (backend dev)
Running locally
docker-compose up
Frontend dev server:
cd frontend && npm install && npm run dev
Docker — corporate / custom CA certificates
If your network uses SSL inspection (corporate proxy, Tailscale, etc.) the Docker build will fail with SSL errors when fetching packages.
Fix: export your Windows Root CA store into the build context once:
New-Item -Force -ItemType Directory backend\certs | Out-Null; $s = [Security.Cryptography.X509Certificates.X509Store]::new("Root","LocalMachine"); $s.Open("ReadOnly"); $s.Certificates | % { "-----BEGIN CERTIFICATE-----`n" + [Convert]::ToBase64String($_.RawData,"InsertLineBreaks") + "`n-----END CERTIFICATE-----" } | Out-File -Encoding ascii backend\certs\windows-ca-bundle.crt; $s.Close()
The file is git-ignored. Re-run the command whenever your CA store changes.
Description
Languages
CSS
44.4%
Python
25.7%
JavaScript
18.4%
HTML
11.5%