File size: 2,254 Bytes
20f83d9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | import type { BriefEnvelope } from '../../shared/brief-envelope.js';
/**
* Render options.
*
* - `publicMode`: when true, personal fields (user.name, per-story
* `whyMatters`) are replaced with generic placeholders, the back
* cover swaps to a Subscribe CTA, a top Subscribe strip is added,
* and the Share button + script are suppressed. Used by the
* unauth'd /api/brief/public/{hash} route.
*
* - `refCode`: optional referral code; interpolated into the public
* Subscribe CTAs as `?ref=<code>` for signup attribution. Shape-
* validated at the route boundary; still HTML-escaped here.
*
* - `shareUrl`: absolute URL that the Share button will invoke via
* `navigator.share` / clipboard fallback. Derived server-side by
* the per-user magazine route so the click handler makes no
* network calls and does not require Clerk session context. When
* omitted (or empty) the Share button is suppressed entirely
* (graceful degrade if BRIEF_SHARE_SECRET is unconfigured). Always
* ignored under publicMode.
*/
export interface RenderBriefMagazineOptions {
publicMode?: boolean;
refCode?: string;
shareUrl?: string;
/**
* ISO-2 country codes the recipient currently follows. Optional;
* the renderer accepts an empty / missing list as "no follows
* known" and stamps every story with `data-followed="0"`. Used
* solely to bake the `followed` flag into the U11 `brief-thread-open`
* telemetry event emitted from the magazine — never affects layout
* or visible content. Public-mode (`/api/brief/public/{hash}`) MUST
* NOT pass this; the public mirror has no recipient identity.
*/
followedCountries?: readonly string[];
}
export function renderBriefMagazine(
envelope: BriefEnvelope,
options?: RenderBriefMagazineOptions,
): string;
/**
* Validates the entire envelope (closed-key contract, field shapes,
* version, and the `surfaced === stories.length` cross-field rule).
* Shared between the renderer (call site: `renderBriefMagazine`) and
* preview readers that must honour the same contract so a "ready"
* preview never points at an envelope the renderer will reject.
*/
export function assertBriefEnvelope(envelope: unknown): asserts envelope is BriefEnvelope;
|