@betterportal/theme-runtime
v10.6.22
Published
Backend-assembled BetterPortal browser runtime for theme packages
Readme
@betterportal/theme-runtime
Shared backend and browser-shell runtime for BetterPortal Node shell packages.
The package assembles one JavaScript asset on the backend in this order:
- HTMX core from the installed
htmx.orgpackage. - The shell's typed presentation adapter.
- The BetterPortal
bp-shellruntime. - The bundled HTMX SSE extension.
The browser never discovers or loads extensions dynamically. Required assets are resolved by the backend and missing assets fail bundle creation.
Shell adapters are authored as TSX with jsx-htmx's js() helper:
/** @jsxImportSource jsx-htmx */
import { js } from "jsx-htmx";
import {
buildBetterPortalShellRuntimeAsset,
type BetterPortalShellAdapter
} from "@betterportal/theme-runtime";
const adapterSource = js(() => {
window.BetterPortalShellAdapter = {
setLoading(loading, outlet) {
outlet?.toggleAttribute("data-bp-loading", loading);
}
} satisfies BetterPortalShellAdapter;
});
const asset = await buildBetterPortalShellRuntimeAsset({
adapterSource
});js() returns safe RawText. Pass it directly to the runtime builder or place it directly inside a <script> element. Do not call .toString() and do not wrap it with raw().
The shared runtime owns service/app URL rewriting, managed BP headers, header-aware preload, HTMX lifecycle handling, downloads, history, authentication failures, SSE, bp-element states, and route chrome state. It never discovers service schemas in the browser.
Managed BP headers are sent only to registered app service origins over HTTPS. Local development may use HTTP on localhost, 127.0.0.1, or [::1]; other HTTP service URLs must migrate to HTTPS. Shells publish origins for enabled route, slot, fragment, auth, and shell bindings. Legacy origin-based header ownership and scopes remain supported.
Preload is speculative: disabled controls and the configured auth origin are excluded, HTTP redirects are not followed, and response directives/UI changes wait for explicit activation. Rewritten links retain the tenant URL in href and use the service URL in hx-get. Initial content loaders are one-shot; empty loader URLs are inert. On a main-content 401, the shell owns login navigation and bounds header refresh to five seconds; a late refresh cannot override a newer navigation.
Plain internal <a href="/route"> links and forms using native GET or POST are automatically upgraded to HTMX and routed through the owning service. For default #bp-main navigation, the configured app UI route is authoritative for href and history; the runtime never pushes an unconfigured service path. A bare <form> posts to its current service view. Use bp-no-override (or data-bp-no-override) on an element or ancestor to keep native browser behavior; data-bp-no-route remains supported for shell-owned elements.
Runtime-managed HTMX requests automatically declare Accept: text/html; mode=page|fragment; SSE connects are always marked HX-Request-Type: partial, retain the SSE media type, and receive the same scoped BP auth/context headers as other self-service requests. Explicit non-HTML Accept headers are preserved.
It also reads <meta name="betterportal:session-id" content="<uuidv7>"> and adds bp.session_id to W3C baggage on every runtime-managed request. The ID lasts for one document load, is exposed as document.documentElement.dataset.bpSessionId, and is correlation-only. Shells should render the framework-provided request session; the runtime generates a fallback when the meta tag is missing.
For initial shell rendering, spread betterPortalChromeAttributes(route.chrome) onto the element marked data-bp-shell-root. After route responses, the runtime parses every bp-chrome-* content-type parameter, updates the corresponding data-bp-chrome-* attributes, removes stale attributes, and calls the optional typed applyChrome(chrome, previousChrome, root) adapter hook. Themes should normally use CSS against the data attributes and reserve applyChrome for presentation that cannot be expressed in CSS. Themes must not register duplicate HTMX chrome listeners or infer authentication state from chrome values.
Shell adapters are presentation-only. They may implement loading/error UI, component initialization and disposal, overlay cleanup, scrolling, and optional chrome presentation. A shell package does not add htmx.org; this runtime owns and bundles it. This runtime also imports jsx-htmx, but a shell that imports jsx-htmx directly for TSX must declare it as its own dependency. Do not bundle the stock preload extension: BetterPortal's preload implementation is part of bp-shell so it can attach scoped BP headers and reuse the prefetched response. The fixed HTMX extension allowlist is bp-shell, sse.
The runtime tests include a headless Chromium preload regression. From the workspace root, run npx playwright install chromium once before npm test (Linux CI uses --with-deps).
