Some checks failed
Architecture Governance / architecture (push) Has been cancelled
Sprint A: storefront header profile control (login/logout only, no menu), wired to existing customer Telegram auth (AuthService). Sprint B: backoffice/reports page, reuses AdminAnalyticsFacade (Sales, Top Products, Marketplace Health cards + CSV export). Sprint C: backoffice/settings page, admin UI density preference (comfortable/compact), localStorage-persisted, applied to app-table across all admin list pages. Sprint D: admin bottom-nav Help -> mailto using existing supportEmail, Documentation -> external link via new TenantConfig.documentationUrl. AdminNavLink gains externalHref for non-routerLink nav entries. Docs: docs/GLOBAL-SPRINT-PLAN.md tracks the full sprint breakdown. docs/COMING-SOON-AUDIT.md removed, folded into docs/KNOWN-ISSUES.md. docs/BACKEND.md updated with the new documentationUrl bootstrap field. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
4.0 KiB
4.0 KiB
Known Issues
Real, reproducible, currently-open frontend bugs only. Everything that needed a product/business decision moved to docs/PRODUCT_BACKLOG.md; everything nice-to-have moved to docs/FUTURE_FEATURES.md; everything backend-shaped moved to docs/BACKEND.md. Re-verified against source 2026-07-26.
Open
- Ed25519 admin-auth error codes
session-expiredandinvalid-signatureare unreachable — dead UI.AuthError.codeis documented as routing to a dedicated recovery screen per code (core/auth/models/auth-error.model.ts:1-4), buttoAuthErrorShape()incore/auth/services/auth.service.ts:110-118derives the code for any realHttpErrorResponseexclusively fromauthErrorCodeFromStatus(error.status)(line 112) — it never reads the caller-suppliedfallbackCodeparameter for real HTTP errors, and never reads any body-level error code from the response.authErrorCodeFromStatus()(auth-error.model.ts:21-32) only ever returns'unauthorized','forbidden', or'backend-unavailable'— there is no status or body condition anywhere in the codebase that produces'session-expired'or'invalid-signature'. Both screens exist and are wired, but are permanently unreachable from any real backend response today.- Fix requires both sides: a backend that returns a distinguishable
error.codein the response body (seedocs/BACKEND.md§6 Error Model), and a small frontend change totoAuthErrorShape()to prefer that body code over the blanket status-based fallback. - Found: 2026-07-26, Backend Finalization Sprint documentation pass (traced while
writing
docs/BACKEND.md§4 Authentication / §6 Error Model).
- Fix requires both sides: a backend that returns a distinguishable
Fixed (this cycle)
Condensed — full detail in commit history and docs/RELEASE_REPORT.md.
- App-wide query-param routing broken (P0) —
language.guard.tslegacy redirect percent-encoded query strings into the path. - Backoffice Categories CRUD broken end-to-end (P0) — wrong provider-mode fallback always picked the real HTTP gateway with no backend present.
- Cart/builder native
confirm()/alert()(16 call sites) replaced with sharedapp-confirm-dialog/ toast service. getMainImage()no-photo fallback and footer payment-icon assets referenced files that didn't exist — both fixed,onerrorfallback added everywhere.- Backoffice Monitoring showed raw HTTP/queue/webhook strings by default — now friendly wording with technical detail collapsed behind a
<details>. - Category/subcategory empty states used apology wording ("Oops!") for a normal zero-results state.
pages/category,pages/search,pages/item-detail,pages/info/**,pages/legal/**(40+ files) were unrouted dead code — deleted.dynamic-renderer/was believed unwired — verified it's the live homepage rendering pipeline, no action needed.admin/products/:id/editmissingcanDeactivateguard — added, mirrors categories.primeng/primeiconsunused dependency — removed.- Builder static-page body editor hidden inside a mislabeled collapsed section — un-hidden, relabeled.
- Several project-editor/admin-categories correctness bugs (footer icon id collisions, features toggle only driving one flag, languages silent duplicate no-op, static-pages slug collision, branding
socialImageUrlnever read, media-picker facade filter leakage between dialogs, categories draft-recovery/drag-reorder bugs, hardcoded locale-tab order) — see git history for the full per-bug list. HeaderConfig.showProfiledead toggle — wired up (login/logout only, no dropdown), reuses the existing customer TelegramAuthService.- Admin
reportsnav stub — real page (backoffice/reports), reusesAdminAnalyticsFacadefor Sales/Top Products/Marketplace Health cards with CSV export. - Admin
settingsnav stub — real page (backoffice/settings), UI density preference (comfortable/compact), persisted tolocalStorage, applied to admin list tables. - Admin
documentation/helpnav stubs — both wired to real external links (mailto:support email,tenant.documentationUrl).