Layout defcomps are now fully self-contained via IO-primitive auto-fetch macros, eliminating Python layout functions that manually threaded context values through SxExpr wrappers. Services converted: - Federation (1 layout): social - Blog (7 layouts): blog, blog-settings, blog-cache, blog-snippets, blog-menu-items, blog-tag-groups, blog-tag-group-edit - SX docs (2 layouts): sx, sx-section - Cart (2 layouts): cart-page, cart-admin + orders/order-detail - Events (9 layouts): calendar-admin, slots, slot, day-admin, entry, entry-admin, ticket-types, ticket-type, markets - Market (2 layouts): market, market-admin New IO primitives added to shared/sx/primitives_io.py: - federation-actor-ctx, cart-page-ctx, request-view-args - events-calendar-ctx, events-day-ctx, events-entry-ctx, events-slot-ctx, events-ticket-type-ctx - market-header-ctx (pre-builds desktop/mobile nav as SxExpr) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
48 lines
1.7 KiB
Python
48 lines
1.7 KiB
Python
"""Federation page utilities — serializers, actor helpers, social page builder."""
|
|
from __future__ import annotations
|
|
|
|
|
|
def _serialize_actor(actor) -> dict | None:
|
|
"""Serialize an actor profile to a dict for sx defcomps."""
|
|
from services.federation_page import _serialize_actor as _impl
|
|
return _impl(actor)
|
|
|
|
|
|
def _serialize_timeline_item(item) -> dict:
|
|
"""Serialize a timeline item DTO to a dict for sx defcomps."""
|
|
from services.federation_page import _serialize_timeline_item as _impl
|
|
return _impl(item)
|
|
|
|
|
|
def _serialize_remote_actor(a) -> dict:
|
|
"""Serialize a remote actor DTO to a dict for sx defcomps."""
|
|
from services.federation_page import _serialize_remote_actor as _impl
|
|
return _impl(a)
|
|
|
|
|
|
async def _social_page(ctx: dict, actor, *, content: str,
|
|
title: str = "Rose Ash", meta_html: str = "") -> str:
|
|
"""Build a full social page with social header (non-defpage routes)."""
|
|
from shared.sx.helpers import render_to_sx_with_env, full_page_sx
|
|
from markupsafe import escape
|
|
|
|
env = {"actor": _serialize_actor(actor) if actor else None}
|
|
header_rows = await render_to_sx_with_env("social-layout-full", env)
|
|
return await full_page_sx(ctx, header_rows=header_rows, content=content,
|
|
meta_html=meta_html or f'<title>{escape(title)}</title>')
|
|
|
|
|
|
def _get_actor():
|
|
"""Return current user's actor or None."""
|
|
from quart import g
|
|
return getattr(g, "_social_actor", None)
|
|
|
|
|
|
def _require_actor():
|
|
"""Return current user's actor or abort 403."""
|
|
from quart import abort
|
|
actor = _get_actor()
|
|
if not actor:
|
|
abort(403, "You need to choose a federation username first")
|
|
return actor
|