daef7ea190
Helper functions (matrix-mas capability group): - mas_client_register_bash_infra: register/sync OAuth clients via mas-cli - mas_syn2mas_migration_bash_infra: dry-run + apply user migration to MAS - synapse_msc3861_enable_go_infra: edit homeserver.yaml MSC3861 block (with diff) - wellknown_oidc_patch_go_infra: patch well-known JSON with msc2965.authentication - synapse_login_flows_check_go_infra: health-check post-migration login flows Flows + issues for custom Matrix clients (PC + Android): - 0010 matrix-client-pc: Wails + React+Mantine (issues 0147-0153) - 0011 matrix-client-android: Kotlin + Compose (issues 0154-0161) - 0162 enable MAS as auth provider (Synapse delegate) — EXECUTED on VPS - 0163 custom admin panel propio (sustituye synapse-admin) Production state (organic-machine.com): - Synapse migrated SQLite -> Postgres - MSC3861 active, password_config disabled - 21 users + 41 access_tokens migrated via syn2mas - 4 MAS clients registered (element, matrix_pc, matrix_android, admin_panel) - synapse-admin container removed + Coolify route deleted - well-known patched with org.matrix.msc2965.authentication Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2.6 KiB
2.6 KiB
id, title, status, priority, created, related_flows, related_issues, dependencies, tags
| id | title | status | priority | created | related_flows | related_issues | dependencies | tags | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0148 | matrix-client-pc rooms list + timeline con sync incremental | pending | high | 2026-05-24 |
|
|
|
|
Objetivo
Sidebar con rooms (DMs + spaces + grupos) + panel central con timeline del room activo. Sync incremental con Synapse via long-poll /sync. Stream eventos backend -> frontend via SSE (http_sse_server_go_infra). Pagination scroll-up (cargar mensajes anteriores). Optimistic UI al enviar.
Tareas
- Backend Go:
MatrixService.StartSync()— long-poll/synccon since token persistido.MatrixService.SubscribeEvents() -> chan Event— broadcaster events a frontend.- SSE endpoint
http://127.0.0.1:<puerto>/events(autenticado con cookie session local). - Persistir state en SQLite (
store.db): rooms, members, last_event_id por room.
- Frontend React:
- Hook
useMatrixRooms()— devuelveRoom[]ordenadas por last_activity. - Hook
useMatrixTimeline(roomId, limit=50)— devuelve eventos +loadMore(). - Componente
RoomList(sidebar con avatar, nombre, last_msg preview, unread badge). - Componente
Timelineconreact-virtuosopara scroll perf con miles de msgs. - Componente
EventBubble(text, image, file, redacted, reaction agregada). - Reconnect automatico si SSE/sync cae (exponential backoff).
- Hook
- Tests:
e2e/test_sync_basic.sh— login + verificar que 3 rooms aparecen en sidebar.e2e/test_pagination.sh— scroll-up carga mensajes anteriores sin gap.
Funciones del registry a crear
matrix_room_subscribe_go_infra— SSE wrapper: subscribe events de Synapse y push a clientes.useMatrixTimeline_ts_ui— hook React con dedupe + pagination + optimistic.useMatrixRooms_ts_ui— hook React rooms list.RoomList_ts_ui— componente sidebar Mantine.EventBubble_ts_ui— componente burbuja msg.
Acceptance
- Sidebar lista rooms del usuario test, ordenados por actividad.
- Click en room muestra timeline ultimos 50 msgs.
- Scroll arriba carga msgs anteriores sin duplicar.
- Mensaje enviado desde Element Web aparece en <2s en la timeline.
- Cerrar app + abrir: state restaurado desde SQLite, no re-sync completo.
- Network kill + restore: sync se reanuda sin perder mensajes.
Notas
- DMs vs rooms grupales: detectar via
m.directaccount data. - Spaces (
m.space): mostrar como grupos colapsables en sidebar. - Edits + redactions: aplicar in-place, no duplicar bubble.
- Read receipts: TBD en otro issue, no bloquea este.