Replace Python GET page handlers with declarative defpage definitions in .sx files across all 8 apps (sx docs, orders, account, market, cart, federation, events, blog). Each app now has sxc/pages/ with setup functions, layout registrations, page helpers, and .sx defpage declarations. Core infrastructure: add g I/O primitive, PageDef support for auth/layout/ data/content/filter/aside/menu slots, post_author auth level, and custom layout registration. Remove ~1400 lines of render_*_page/render_*_oob boilerplate. Update all endpoint references in routes, sx_components, and templates to defpage_* naming. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
22 lines
531 B
Python
22 lines
531 B
Python
from __future__ import annotations
|
|
|
|
from quart import (
|
|
request, Blueprint, g
|
|
)
|
|
|
|
|
|
def register():
|
|
bp = Blueprint("admin", __name__, url_prefix='/admin')
|
|
|
|
@bp.before_request
|
|
async def _prepare_page_data():
|
|
if "defpage_" not in (request.endpoint or ""):
|
|
return
|
|
from sx.sx_components import _day_admin_main_panel_html
|
|
g.day_admin_content = _day_admin_main_panel_html({})
|
|
|
|
from shared.sx.pages import mount_pages
|
|
mount_pages(bp, "events", names=["day-admin"])
|
|
|
|
return bp
|