create-kywi-app 0.18.0 → 0.19.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +20 -9
- package/lib/templates.mjs +266 -1789
- package/package.json +1 -1
package/lib/templates.mjs
CHANGED
|
@@ -44,12 +44,15 @@ const CORE_RANGE = (v) => `^${v}`
|
|
|
44
44
|
|
|
45
45
|
/** @param {Answers} a */
|
|
46
46
|
function packageJson(a) {
|
|
47
|
-
// Coupled mode's front-of-site editor (
|
|
48
|
-
// design system's stylesheet
|
|
49
|
-
// (/kywi-admin.css) — it is injected via a
|
|
50
|
-
// JS import (kywi-cms#130 follow-up: an
|
|
51
|
-
// ships the stylesheet on every public route
|
|
52
|
-
//
|
|
47
|
+
// Coupled mode's front-of-site editor (core's `KywiFrontEdit`, from
|
|
48
|
+
// @kywi-software/core/next/client) needs the admin design system's stylesheet
|
|
49
|
+
// available at a plain, fetchable URL (/kywi-admin.css) — it is injected via a
|
|
50
|
+
// runtime <link> tag rather than a JS import (kywi-cms#130 follow-up: an
|
|
51
|
+
// import, even a dynamic one, still ships the stylesheet on every public route
|
|
52
|
+
// — see `ensureAdminStylesheet` in core's front-edit.tsx). The SYNC stays
|
|
53
|
+
// project-owned even though the overlay is core's: core fetches
|
|
54
|
+
// /kywi-admin.css.version at runtime, and only the app can put a file in its
|
|
55
|
+
// own public/. Unlike public/kywi.js (opt-in, manually placed when
|
|
53
56
|
// personalization.clientRuntime is enabled — see README), this is a CORE
|
|
54
57
|
// feature every coupled-mode app has, so the sync is automatic.
|
|
55
58
|
const syncScripts =
|
|
@@ -333,9 +336,11 @@ function tsconfig() {
|
|
|
333
336
|
* Ambient declaration for stylesheet imports.
|
|
334
337
|
*
|
|
335
338
|
* WHY THIS FILE EXISTS (found by the scaffold compile gate, kywi-cms#147 T6;
|
|
336
|
-
* history below).
|
|
337
|
-
*
|
|
338
|
-
*
|
|
339
|
+
* history below). The front-edit overlay — then emitted as
|
|
340
|
+
* `app/(site)/kywi-front-edit.tsx`, since plan E1 core's own
|
|
341
|
+
* `@kywi-software/core/next/client` — originally pulled the admin design system
|
|
342
|
+
* in via `await import('@kywi-software/core/admin/styles.css')` inside
|
|
343
|
+
* `next/dynamic`'s factory. TypeScript treats a
|
|
339
344
|
* *dynamic* import of a non-code file as an ordinary module import and
|
|
340
345
|
* reports TS2307 for it, unlike a top-level `import 'x.css'` statement, which
|
|
341
346
|
* it lets through as a resource import. Next type-checks during `next
|
|
@@ -344,11 +349,15 @@ function tsconfig() {
|
|
|
344
349
|
* reference app imported that stylesheet in statement form and the
|
|
345
350
|
* scaffold's own output had never been type-checked at all.
|
|
346
351
|
*
|
|
352
|
+
* (The overlay moved into core in plan E1; the reasoning is kept here because
|
|
353
|
+
* this declaration is still what makes a stylesheet import type-check in a
|
|
354
|
+
* generated app.)
|
|
355
|
+
*
|
|
347
356
|
* kywi-cms#130 follow-up: that dynamic import turned out to ship the
|
|
348
357
|
* stylesheet to every public route regardless of the `next/dynamic`
|
|
349
358
|
* wrapping (Next's App Router CSS collection bundles every css import it can
|
|
350
359
|
* see in the reachable module graph, dynamic or not) — see
|
|
351
|
-
* `ensureAdminStylesheet` in `
|
|
360
|
+
* `ensureAdminStylesheet` in core's `next/client/front-edit.tsx`, which replaced it with a
|
|
352
361
|
* runtime `<link>` tag. This ambient declaration is no longer load-bearing
|
|
353
362
|
* for that one case, but it costs nothing to keep as a general-purpose `*.css`
|
|
354
363
|
* declaration for any future dynamic stylesheet import.
|
|
@@ -359,11 +368,12 @@ function tsconfig() {
|
|
|
359
368
|
function cssTypes() {
|
|
360
369
|
return `// Stylesheet imports. CSS Modules are typed by Next itself — the more
|
|
361
370
|
// specific pattern wins. (History: originally required for a dynamic
|
|
362
|
-
// \`await import('…/styles.css')\` in
|
|
363
|
-
//
|
|
364
|
-
//
|
|
365
|
-
// kywi-
|
|
366
|
-
// this declaration — kept for any future
|
|
371
|
+
// \`await import('…/styles.css')\` in the front-edit overlay, which TypeScript
|
|
372
|
+
// checks like any other module — see cssTypes' doc comment in templates.mjs.
|
|
373
|
+
// That import was replaced by a runtime \`<link>\` tag, kywi-cms#130 follow-up,
|
|
374
|
+
// and the overlay itself now lives in @kywi-software/core/next, so nothing in
|
|
375
|
+
// this generated app currently needs this declaration — kept for any future
|
|
376
|
+
// dynamic stylesheet import.)
|
|
367
377
|
declare module '*.css'
|
|
368
378
|
`
|
|
369
379
|
}
|
|
@@ -455,924 +465,149 @@ public/kywi-admin.css.version
|
|
|
455
465
|
`
|
|
456
466
|
}
|
|
457
467
|
|
|
458
|
-
// ──
|
|
459
|
-
|
|
460
|
-
function libKywi() {
|
|
461
|
-
return `import { cache } from 'react'
|
|
462
|
-
import { headers } from 'next/headers'
|
|
463
|
-
import {
|
|
464
|
-
createDb,
|
|
465
|
-
createKywiApiHandler,
|
|
466
|
-
createStorageProvider,
|
|
467
|
-
resolveDatabaseUrl,
|
|
468
|
-
resolveAuthSecret,
|
|
469
|
-
} from '@kywi-software/core/server'
|
|
470
|
-
import type { KywiApiHandler, KywiDb } from '@kywi-software/core/server'
|
|
471
|
-
import { createKywiScope } from '@kywi-software/core/scope'
|
|
472
|
-
import type { KywiScope } from '@kywi-software/core/scope'
|
|
473
|
-
import { resolveActiveSite } from '@kywi-software/core/host'
|
|
474
|
-
import config from '../kywi.config'
|
|
468
|
+
// ── the generated render path: version stamp + landmarks ─────────────────────
|
|
475
469
|
|
|
476
470
|
/**
|
|
477
|
-
*
|
|
478
|
-
*
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
db: KywiDb
|
|
484
|
-
/**
|
|
485
|
-
* DB UUID of the DEFAULT site (\`config.sites[0]\`), resolved once at init.
|
|
486
|
-
*
|
|
487
|
-
* This is a process-level fallback, NOT the site a request is for. Public
|
|
488
|
-
* render code must use \`getActiveSite()\` below, which resolves from the
|
|
489
|
-
* request's Host header — keying a public query on this instead is what makes
|
|
490
|
-
* a multi-site app serve the first site's content on every domain.
|
|
491
|
-
*/
|
|
492
|
-
siteId: string
|
|
493
|
-
config: typeof config
|
|
494
|
-
}
|
|
495
|
-
|
|
496
|
-
let _runtime: KywiRuntime | null = null
|
|
497
|
-
let _init: Promise<KywiRuntime> | null = null
|
|
498
|
-
|
|
499
|
-
async function init(): Promise<KywiRuntime> {
|
|
500
|
-
const { url: dbUrl } = resolveDatabaseUrl(config.db.url)
|
|
501
|
-
const db = createDb(dbUrl, config.db.provider)
|
|
502
|
-
const authSecret = resolveAuthSecret(config.auth.secret)
|
|
503
|
-
const storage = createStorageProvider(config.media ?? { provider: 'local', localPath: './uploads' })
|
|
504
|
-
const handler = await createKywiApiHandler({ config, db, authSecret, storage })
|
|
505
|
-
const scope = createKywiScope(config, db, undefined, { mediaBaseUrl: '/api/v1' })
|
|
506
|
-
|
|
507
|
-
// Resolve the DB UUID for the DEFAULT configured site (its \`id\` is the slug).
|
|
508
|
-
// Per-request site resolution lives in \`getActiveSite()\`, not here.
|
|
509
|
-
const sites = await scope.site.list()
|
|
510
|
-
const match = sites.find((s) => (s as { slug?: string }).slug === config.sites[0]?.id) // DEFAULT-SITE FALLBACK: boot-time default, not a per-request resolution
|
|
511
|
-
const siteId = (match?.['id'] as string | undefined) ?? config.sites[0]?.id ?? 'default' // DEFAULT-SITE FALLBACK: boot-time default, not a per-request resolution
|
|
512
|
-
|
|
513
|
-
return { handler, scope, db, siteId, config }
|
|
514
|
-
}
|
|
515
|
-
|
|
516
|
-
export async function getKywi(): Promise<KywiRuntime> {
|
|
517
|
-
if (_runtime) return _runtime
|
|
518
|
-
if (!_init) _init = init().then((r) => (_runtime = r))
|
|
519
|
-
return _init
|
|
520
|
-
}
|
|
521
|
-
|
|
522
|
-
export async function getKywiHandler(): Promise<KywiApiHandler> {
|
|
523
|
-
return (await getKywi()).handler
|
|
524
|
-
}
|
|
525
|
-
|
|
526
|
-
// ─── Host → site resolution ─────────────────────────────────────────────────
|
|
527
|
-
|
|
528
|
-
/** One configured site (config uses the slug as \`id\`). */
|
|
529
|
-
export type SiteConfig = (typeof config.sites)[number]
|
|
530
|
-
|
|
531
|
-
/** The site the current public request is for: config entry + its DB UUID. */
|
|
532
|
-
export interface ActiveSite {
|
|
533
|
-
runtime: KywiRuntime
|
|
534
|
-
/** Resolved config site (matched by request Host, else the default site). */
|
|
535
|
-
site: SiteConfig
|
|
536
|
-
/** DB UUID of that site (what the scope/queries key on). */
|
|
537
|
-
siteId: string
|
|
538
|
-
}
|
|
539
|
-
|
|
540
|
-
// Config-slug → DB-UUID map, cached for the process. Sites are reconciled at
|
|
541
|
-
// boot and static thereafter; a miss falls back to the slug.
|
|
542
|
-
let _slugToUuid: Record<string, string> | null = null
|
|
543
|
-
async function slugToUuid(runtime: KywiRuntime): Promise<Record<string, string>> {
|
|
544
|
-
if (_slugToUuid) return _slugToUuid
|
|
545
|
-
const rows = (await runtime.scope.site.list()) as Array<{ id?: string; slug?: string }>
|
|
546
|
-
const map: Record<string, string> = {}
|
|
547
|
-
for (const r of rows) if (r.slug && r.id) map[r.slug] = r.id
|
|
548
|
-
_slugToUuid = map
|
|
549
|
-
return map
|
|
550
|
-
}
|
|
551
|
-
|
|
552
|
-
/**
|
|
553
|
-
* Which configured site is this request for? Resolved from the request's HOST
|
|
554
|
-
* header, so \`docs.example.com\` serves the docs site and \`example.com\` serves
|
|
555
|
-
* the marketing site from one app and one database.
|
|
471
|
+
* Version of the GENERATED RENDER PATH's SHAPE — the four thin delegating files
|
|
472
|
+
* below (`lib/kywi.ts`, `app/(site)/layout.tsx`,
|
|
473
|
+
* `app/(site)/[[...slug]]/page.tsx`, `middleware.ts`), independent of the
|
|
474
|
+
* package version. Bump it when their shape changes in a way an existing
|
|
475
|
+
* project should pick up, so a project can compare its stamp against a newer
|
|
476
|
+
* create-kywi-app and know its render path is stale.
|
|
556
477
|
*
|
|
557
|
-
*
|
|
558
|
-
*
|
|
559
|
-
*
|
|
560
|
-
*
|
|
561
|
-
*
|
|
562
|
-
* (localhost), which would defeat host-based routing entirely.
|
|
478
|
+
* Exactly the {@link GUIDANCE_VERSION} / {@link guidanceStamp} convention, one
|
|
479
|
+
* namespace over: `kywi-render` where the guidance files say
|
|
480
|
+
* `kywi-agent-guidance`. `layered-architecture DESIGN.md` §6 names that
|
|
481
|
+
* mechanism as the one `create-kywi-app upgrade` (plan E3) extends to these
|
|
482
|
+
* files — this is the half E1 owns, the emission of a detectable stamp.
|
|
563
483
|
*/
|
|
564
|
-
export const
|
|
565
|
-
const runtime = await getKywi()
|
|
566
|
-
const host = (await headers()).get('host')
|
|
567
|
-
const map = await slugToUuid(runtime)
|
|
568
|
-
const { site, siteId } = resolveActiveSite(runtime.config.sites, map, host)
|
|
569
|
-
return { runtime, site, siteId }
|
|
570
|
-
})
|
|
571
|
-
`
|
|
572
|
-
}
|
|
573
|
-
|
|
574
|
-
function libConfig() {
|
|
575
|
-
return `/** Re-export the Kywi config for use throughout the app (single import path). */
|
|
576
|
-
import config from '../kywi.config'
|
|
577
|
-
export default config
|
|
578
|
-
`
|
|
579
|
-
}
|
|
580
|
-
|
|
581
|
-
// ── public-render helpers (lib/site.ts) ───────────────────────────────────────
|
|
484
|
+
export const RENDER_VERSION = 1
|
|
582
485
|
|
|
583
486
|
/**
|
|
584
|
-
*
|
|
585
|
-
*
|
|
586
|
-
*
|
|
587
|
-
*
|
|
487
|
+
* The staleness stamp every generated render-path file opens with. A `//`
|
|
488
|
+
* comment rather than the guidance files' `<!-- … -->` (these are .ts/.tsx),
|
|
489
|
+
* so it is inert to the compiler but greppable by tooling and by an agent
|
|
490
|
+
* asking "is this project's render path current?".
|
|
491
|
+
* @returns {string}
|
|
588
492
|
*/
|
|
589
|
-
function
|
|
590
|
-
return
|
|
591
|
-
import type {
|
|
592
|
-
LayoutDocument,
|
|
593
|
-
FeedItemsResolver,
|
|
594
|
-
PersonalizationState,
|
|
595
|
-
} from '@kywi-software/core/layout'
|
|
596
|
-
import {
|
|
597
|
-
collectComponentRefs,
|
|
598
|
-
componentDetachSource,
|
|
599
|
-
resolveComponentPlacements,
|
|
600
|
-
applyPageVariant,
|
|
601
|
-
collectLayoutExperimentIds,
|
|
602
|
-
} from '@kywi-software/core/layout'
|
|
603
|
-
import { resolveContentByPath, normalizePath } from '@kywi-software/core/nav'
|
|
604
|
-
import { getFeedBySlug, getComponentById, resolveLocaleFromRequest } from '@kywi-software/core'
|
|
605
|
-
import {
|
|
606
|
-
evaluateActiveAudiences,
|
|
607
|
-
getSelfIdWidgetConfig,
|
|
608
|
-
listSelfIdFields,
|
|
609
|
-
COOKIE_NAMES,
|
|
610
|
-
} from '@kywi-software/core/audiences'
|
|
611
|
-
import { cookieAllowedByHeader } from '@kywi-software/core/audiences/consent'
|
|
612
|
-
import type {
|
|
613
|
-
Audience,
|
|
614
|
-
VisitorSignals,
|
|
615
|
-
SelfIdField,
|
|
616
|
-
SelfIdWidgetConfig,
|
|
617
|
-
SelfIdTrigger,
|
|
618
|
-
} from '@kywi-software/core/audiences/types'
|
|
619
|
-
import { listRunningExperiments, resolveExperimentForContainer } from '@kywi-software/core/experiments'
|
|
620
|
-
import { getActiveSite, type KywiRuntime, type SiteConfig } from './kywi'
|
|
621
|
-
|
|
622
|
-
/** A resolved content node is a flat record of its columns (base + custom fields). */
|
|
623
|
-
export type ContentNode = Record<string, unknown>
|
|
624
|
-
|
|
625
|
-
// Absolute base for media/OG URLs. Set NEXT_PUBLIC_SITE_URL in production so
|
|
626
|
-
// crawlers and structured data get absolute image URLs.
|
|
627
|
-
const SITE_URL = process.env.NEXT_PUBLIC_SITE_URL ?? 'http://localhost:3000'
|
|
628
|
-
|
|
629
|
-
/** Public URL for a media file served by the API handler, or null. */
|
|
630
|
-
export function mediaUrl(id: unknown): string | null {
|
|
631
|
-
return typeof id === 'string' && id ? \`\${SITE_URL}/api/v1/media/\${id}/file\` : null
|
|
632
|
-
}
|
|
633
|
-
|
|
634
|
-
/** Absolute origin of the current request, for structured-data (JSON-LD) URLs. */
|
|
635
|
-
export async function requestBaseUrl(): Promise<string> {
|
|
636
|
-
const h = await headers()
|
|
637
|
-
const host = h.get('host') ?? 'localhost'
|
|
638
|
-
const isLocal = host.startsWith('localhost') || host.startsWith('127.') || host.startsWith('0.0.0.0')
|
|
639
|
-
const proto = h.get('x-forwarded-proto') ?? (isLocal ? 'http' : 'https')
|
|
640
|
-
return \`\${proto}://\${host}\`
|
|
493
|
+
export function renderStamp() {
|
|
494
|
+
return `// kywi-render v${RENDER_VERSION} (create-kywi-app ${packageVersion()})`
|
|
641
495
|
}
|
|
642
496
|
|
|
643
|
-
// ─── Locale routing (#51) ────────────────────────────────────────────────────
|
|
644
|
-
|
|
645
497
|
/**
|
|
646
|
-
*
|
|
647
|
-
*
|
|
648
|
-
*
|
|
649
|
-
* Omitting it falls back to the default site, which is right only for a
|
|
650
|
-
* single-site app — a second site would otherwise be served site one's locales.
|
|
498
|
+
* Parses a {@link renderStamp} back out of a file's text:
|
|
499
|
+
* `[, renderVersion, cliVersion]`. Anchored to a whole line so a mention of the
|
|
500
|
+
* stamp inside prose cannot match.
|
|
651
501
|
*/
|
|
652
|
-
export
|
|
653
|
-
runtime: KywiRuntime,
|
|
654
|
-
activeSite?: SiteConfig,
|
|
655
|
-
): { defaultLocale: string; locales: string[] } {
|
|
656
|
-
const site = activeSite ?? runtime.config.sites[0] // DEFAULT-SITE FALLBACK: Host matched no site
|
|
657
|
-
const defaultLocale = site?.defaultLocale ?? 'en'
|
|
658
|
-
const configured = site?.locales && site.locales.length > 0 ? site.locales : [defaultLocale]
|
|
659
|
-
const locales = configured.includes(defaultLocale) ? configured : [defaultLocale, ...configured]
|
|
660
|
-
return { defaultLocale, locales }
|
|
661
|
-
}
|
|
502
|
+
export const RENDER_STAMP_RE = /^\/\/ kywi-render v(\d+) \(create-kywi-app ([^)]+)\)$/m
|
|
662
503
|
|
|
663
504
|
/**
|
|
664
|
-
*
|
|
665
|
-
*
|
|
666
|
-
*
|
|
667
|
-
*
|
|
668
|
-
*
|
|
505
|
+
* Landmark → its relative path, for the RENDER PATH: one entry per thin,
|
|
506
|
+
* version-stamped file the scaffold emits at a path Next demands. Same role as
|
|
507
|
+
* {@link AGENTS_LANDMARK_PATHS} — one source of truth for the path strings —
|
|
508
|
+
* shared by the emitter ({@link buildFileSet}), the E8 drift guard
|
|
509
|
+
* (`__tests__/render-drift.test.mjs`) and, in plan E3, the `upgrade` command.
|
|
510
|
+
* @type {Record<'runtime'|'middleware'|'siteLayout'|'sitePage', string>}
|
|
669
511
|
*/
|
|
670
|
-
export
|
|
671
|
-
runtime:
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
): { locale: string; slugPath: string[] } {
|
|
676
|
-
const { defaultLocale, locales } = siteLocales(runtime, activeSite)
|
|
677
|
-
const pathname = '/' + slugSegments.join('/')
|
|
678
|
-
const locale = resolveLocaleFromRequest(pathname, acceptLanguage ?? null, defaultLocale, locales)
|
|
679
|
-
const first = slugSegments[0]
|
|
680
|
-
const slugPath = first && locales.includes(first) ? slugSegments.slice(1) : slugSegments
|
|
681
|
-
return { locale, slugPath }
|
|
512
|
+
export const RENDER_LANDMARK_PATHS = {
|
|
513
|
+
runtime: 'lib/kywi.ts',
|
|
514
|
+
middleware: 'middleware.ts',
|
|
515
|
+
siteLayout: 'app/(site)/layout.tsx',
|
|
516
|
+
sitePage: 'app/(site)/[[...slug]]/page.tsx',
|
|
682
517
|
}
|
|
683
518
|
|
|
684
519
|
/**
|
|
685
|
-
*
|
|
686
|
-
*
|
|
520
|
+
* Which render-path files a FRESH scaffold of the given mode emits — derived
|
|
521
|
+
* statically from the mode, never from the filesystem ({@link
|
|
522
|
+
* scaffoldLandmarks}'s counterpart for the render path). The wiring runtime and
|
|
523
|
+
* the middleware exist in every mode; the two `app/(site)` routes are coupled
|
|
524
|
+
* mode only.
|
|
525
|
+
* @param {'coupled'|'headless'|'decoupled'} mode
|
|
526
|
+
* @returns {Record<'runtime'|'middleware'|'siteLayout'|'sitePage', boolean>}
|
|
687
527
|
*/
|
|
688
|
-
export
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
// Async because the alternates belong to the site THIS request is for: a
|
|
692
|
-
// two-locale docs site and a single-locale marketing site share this app, and
|
|
693
|
-
// reading the default site's locales here would emit the wrong hreflang set
|
|
694
|
-
// (or none) on the other host.
|
|
695
|
-
const { runtime, site } = await getActiveSite()
|
|
696
|
-
const { defaultLocale, locales } = siteLocales(runtime, site)
|
|
697
|
-
if (locales.length <= 1) return undefined
|
|
698
|
-
const { slugPath } = resolveRequestLocale(runtime, slugSegments, null, site)
|
|
699
|
-
const rel = slugPath.join('/')
|
|
700
|
-
const out: Record<string, string> = {}
|
|
701
|
-
for (const loc of locales) {
|
|
702
|
-
const base = loc === defaultLocale ? \`/\${rel}\` : \`/\${loc}/\${rel}\`
|
|
703
|
-
out[loc] = base.length > 1 ? base.replace(/\\/$/, '') : base
|
|
704
|
-
}
|
|
705
|
-
return out
|
|
528
|
+
export function renderLandmarks(mode) {
|
|
529
|
+
const coupled = mode === 'coupled'
|
|
530
|
+
return { runtime: true, middleware: true, siteLayout: coupled, sitePage: coupled }
|
|
706
531
|
}
|
|
707
532
|
|
|
708
|
-
// ─── Content resolution (#30 full path + #51 locale) ─────────────────────────
|
|
709
|
-
|
|
710
533
|
/**
|
|
711
|
-
*
|
|
712
|
-
*
|
|
713
|
-
*
|
|
714
|
-
*
|
|
715
|
-
*
|
|
716
|
-
*
|
|
534
|
+
* Read the render-path stamps out of an EXISTING project. Mirrors {@link
|
|
535
|
+
* detectAgentsLandmarks} (presence on disk) and adds the parsed stamp, because
|
|
536
|
+
* a render file is REPLACEABLE where a guidance file is only skip-or-force: a
|
|
537
|
+
* file carrying a stamp is create-kywi-app's own output and safe to overwrite,
|
|
538
|
+
* while an unstamped one was hand-written or predates the layered shape
|
|
539
|
+
* (`layered-architecture DESIGN.md` §8) and must be ejected, not clobbered.
|
|
540
|
+
* E1 only emits and detects; E3 acts on it.
|
|
541
|
+
* @param {string} projectDir absolute path to the project root
|
|
542
|
+
* @returns {Record<string, { path: string, present: boolean, version: number|null, cliVersion: string|null }>}
|
|
717
543
|
*/
|
|
718
|
-
export
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
let node = await scope.content.getBySlug(slug, siteId, { locale })
|
|
731
|
-
if (!node && locale !== defaultLocale) {
|
|
732
|
-
node = await scope.content.getBySlug(slug, siteId, { locale: defaultLocale })
|
|
544
|
+
export function detectRenderLandmarks(projectDir) {
|
|
545
|
+
/** @type {Record<string, { path: string, present: boolean, version: number|null, cliVersion: string|null }>} */
|
|
546
|
+
const out = {}
|
|
547
|
+
for (const [key, rel] of Object.entries(RENDER_LANDMARK_PATHS)) {
|
|
548
|
+
const abs = join(projectDir, rel)
|
|
549
|
+
const present = existsSync(abs)
|
|
550
|
+
const match = present ? RENDER_STAMP_RE.exec(readFileSync(abs, 'utf8')) : null
|
|
551
|
+
out[key] = {
|
|
552
|
+
path: rel,
|
|
553
|
+
present,
|
|
554
|
+
version: match ? Number(match[1]) : null,
|
|
555
|
+
cliVersion: match ? match[2] : null,
|
|
733
556
|
}
|
|
734
|
-
return (node as ContentNode | null) ?? null
|
|
735
|
-
}
|
|
736
|
-
|
|
737
|
-
// Home ("/"): the seeded root node (slug "home", path "/").
|
|
738
|
-
if (slugPath.length === 0) return bySlug('home')
|
|
739
|
-
|
|
740
|
-
// Structural resolution by the full path enforces the parent chain (#30) and
|
|
741
|
-
// picks the locale-correct row that shares that path (#51).
|
|
742
|
-
const fullPath = normalizePath('/' + slugPath.join('/'))
|
|
743
|
-
let structural = await resolveContentByPath(db, fullPath, siteId, { locale })
|
|
744
|
-
if (!structural && locale !== defaultLocale) {
|
|
745
|
-
structural = await resolveContentByPath(db, fullPath, siteId, { locale: defaultLocale })
|
|
746
|
-
}
|
|
747
|
-
if (structural) {
|
|
748
|
-
return (await scope.content.getById(structural.id)) as ContentNode | null
|
|
749
|
-
}
|
|
750
|
-
|
|
751
|
-
// Flat-slug fallback ONLY for a single-segment URL whose target has no parent
|
|
752
|
-
// chain (a top-level node whose \`path\` column was never materialized). A nested
|
|
753
|
-
// node is never reachable at a wrong prefix — that is the #30 fix.
|
|
754
|
-
if (slugPath.length === 1) {
|
|
755
|
-
const node = await bySlug(slugPath[0]!)
|
|
756
|
-
if (node && !node['parentId']) return node
|
|
757
|
-
}
|
|
758
|
-
return null
|
|
759
|
-
}
|
|
760
|
-
|
|
761
|
-
// ─── Feed hydration (#28) ────────────────────────────────────────────────────
|
|
762
|
-
|
|
763
|
-
/**
|
|
764
|
-
* Build the {@link FeedItemsResolver} \`hydrateLayoutFeeds\` calls for each Feed
|
|
765
|
-
* Display module: resolve the saved feed by slug, run its query (published-only,
|
|
766
|
-
* per-module limit) through the feed engine, and pre-map each row's media id to a
|
|
767
|
-
* URL so the (client) module can render images. Core owns the walk + item shape;
|
|
768
|
-
* this owns the data access.
|
|
769
|
-
*/
|
|
770
|
-
export function buildFeedResolver(runtime: KywiRuntime, siteId: string): FeedItemsResolver {
|
|
771
|
-
const { scope, db } = runtime
|
|
772
|
-
return async (feedSlug, { limit }) => {
|
|
773
|
-
const feed = await getFeedBySlug(db, feedSlug, siteId)
|
|
774
|
-
if (!feed) return []
|
|
775
|
-
const result = await scope.feeds.query({
|
|
776
|
-
...(feed.query as Record<string, unknown>),
|
|
777
|
-
siteId,
|
|
778
|
-
status: 'published',
|
|
779
|
-
limit,
|
|
780
|
-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
781
|
-
} as any)
|
|
782
|
-
return result.items.map((row) => ({
|
|
783
|
-
...row,
|
|
784
|
-
image: mediaUrl(row['featuredImageId']) ?? undefined,
|
|
785
|
-
}))
|
|
786
|
-
}
|
|
787
|
-
}
|
|
788
|
-
|
|
789
|
-
// ─── Linked components: server-side pre-resolution (#46, #69, #147) ──────────
|
|
790
|
-
|
|
791
|
-
/** Fetch a set of component rows once and index them by id. */
|
|
792
|
-
async function loadComponents(ids: string[], runtime: KywiRuntime, siteId: string) {
|
|
793
|
-
const { db } = runtime
|
|
794
|
-
const entries = await Promise.all(
|
|
795
|
-
ids.map(async (id) => [id, await getComponentById(db, id, siteId)] as const),
|
|
796
|
-
)
|
|
797
|
-
return new Map(entries)
|
|
798
|
-
}
|
|
799
|
-
|
|
800
|
-
/**
|
|
801
|
-
* Resolve every linked component (\`componentId\`) the layout places, ON THE
|
|
802
|
-
* SERVER, before the document reaches the renderer.
|
|
803
|
-
*
|
|
804
|
-
* This is the ONLY way a Server Component can render linked components.
|
|
805
|
-
* \`KywiLayout\` is a client component and its \`componentResolver\` /
|
|
806
|
-
* \`sectionComponentResolver\` / \`variantContainerComponentResolver\` props are
|
|
807
|
-
* FUNCTIONS: passing them from here throws "Functions cannot be passed directly
|
|
808
|
-
* to Client Components" and the page 500s. Pre-resolution hands the renderer a
|
|
809
|
-
* plain document instead — only data crosses the boundary — and produces exactly
|
|
810
|
-
* the markup the resolvers were meant to produce, \`data-component-id\` included.
|
|
811
|
-
*
|
|
812
|
-
* \`collectComponentRefs\` is the engine's own link walker, the same one the
|
|
813
|
-
* instance index and detach-all use, so this never falls behind on where a link
|
|
814
|
-
* may live. It also knows that a connected section's inline columns are fallback
|
|
815
|
-
* copy rather than placements, so links buried in one are not fetched — they
|
|
816
|
-
* only render when that section's own component has gone missing.
|
|
817
|
-
*
|
|
818
|
-
* Definitions are read per request with no cache, so editing a component is live
|
|
819
|
-
* on the next page view.
|
|
820
|
-
*/
|
|
821
|
-
export async function resolveLayoutComponents(
|
|
822
|
-
layout: LayoutDocument,
|
|
823
|
-
runtime: KywiRuntime,
|
|
824
|
-
siteId: string,
|
|
825
|
-
): Promise<LayoutDocument> {
|
|
826
|
-
const refs = collectComponentRefs(layout)
|
|
827
|
-
if (refs.length === 0) return layout
|
|
828
|
-
const map = await loadComponents([...new Set(refs.map((ref) => ref.componentId))], runtime, siteId)
|
|
829
|
-
return resolveComponentPlacements(layout, (componentId) =>
|
|
830
|
-
componentDetachSource(map.get(componentId) ?? null),
|
|
831
|
-
)
|
|
832
|
-
}
|
|
833
|
-
|
|
834
|
-
// ─── Personalization + experiments (#50) ─────────────────────────────────────
|
|
835
|
-
|
|
836
|
-
/** Server-resolved personalization for one public request. */
|
|
837
|
-
export interface PublicPersonalization {
|
|
838
|
-
/** Threaded into <KywiLayout personalization=…> for variantContainer nodes. */
|
|
839
|
-
personalization: PersonalizationState
|
|
840
|
-
/** Winning audience id (null = default / opted out / no match). */
|
|
841
|
-
audienceId: string | null
|
|
842
|
-
/** Stable visitor id (middleware cookie/header); keys A/B assignment. */
|
|
843
|
-
visitorId: string
|
|
844
|
-
/**
|
|
845
|
-
* True when \`visitorId\` is a durable identity this visitor consented to
|
|
846
|
-
* (kywi-cms#91). False means it was minted for this request alone — nothing
|
|
847
|
-
* may be written against it, including an A/B exposure.
|
|
848
|
-
*/
|
|
849
|
-
tracked: boolean
|
|
850
|
-
/** Active audiences evaluated — handed to the client runtime for re-eval. */
|
|
851
|
-
audiences: Audience[]
|
|
852
|
-
/** Server-resolved signals — handed to the client runtime as serverSignals. */
|
|
853
|
-
signals: Partial<VisitorSignals>
|
|
854
|
-
}
|
|
855
|
-
|
|
856
|
-
/** Is the winning audience id one of the currently active audiences? */
|
|
857
|
-
function isActiveAudience(id: string | null, audiences: Audience[]): boolean {
|
|
858
|
-
return id != null && audiences.some((a) => a.id === id)
|
|
859
|
-
}
|
|
860
|
-
|
|
861
|
-
/**
|
|
862
|
-
* Evaluate the site's active audiences for this request, exactly once, and pick
|
|
863
|
-
* the visitor's A/B arms — the two server seams that make page variants,
|
|
864
|
-
* variantContainers and experiments resolve per-visitor with NO client runtime
|
|
865
|
-
* (kywi-cms#50). The request the audience engine reads (URL + cookies + referrer)
|
|
866
|
-
* is reconstructed from next/headers, so this is safe from any (site) Server
|
|
867
|
-
* Component. A \`kywi_preview_init=<audienceId>\` cookie (set by the admin preview
|
|
868
|
-
* link) forces that audience, so an editor previews it without matching its live
|
|
869
|
-
* conditions.
|
|
870
|
-
*/
|
|
871
|
-
export async function resolvePersonalization(
|
|
872
|
-
runtime: KywiRuntime,
|
|
873
|
-
layout: LayoutDocument | null | undefined,
|
|
874
|
-
): Promise<PublicPersonalization> {
|
|
875
|
-
const [h, cookieStore] = await Promise.all([headers(), cookies()])
|
|
876
|
-
// Evaluate against the HOST-resolved site, so a visitor on site B is matched
|
|
877
|
-
// only against site B's audiences and gated by site B's theme flags.
|
|
878
|
-
const { site, siteId } = await getActiveSite()
|
|
879
|
-
// One resolution of \`theme.personalization.requireConsent\` for the whole
|
|
880
|
-
// request, handed to every gate below — the visitor-id read AND the audience
|
|
881
|
-
// engine's own collectors. They read the same cookies; disagreeing about
|
|
882
|
-
// whether consent is required would personalize half a page.
|
|
883
|
-
const gate = { requireConsent: requireConsentEnabled(runtime, site) }
|
|
884
|
-
// \`kywi_visitor\` is a \`personalization\` cookie, so without consent it is
|
|
885
|
-
// neither written nor read (kywi-cms#91) — the middleware hands this request a
|
|
886
|
-
// THROWAWAY id instead, freshly minted and different on the next request.
|
|
887
|
-
// \`tracked\` carries that fact to everything downstream that would otherwise
|
|
888
|
-
// write the id to the database.
|
|
889
|
-
const tracked = cookieAllowedByHeader(COOKIE_NAMES.VISITOR, h.get('cookie'), gate)
|
|
890
|
-
// The stored cookie is read THROUGH that gate too, not just written through
|
|
891
|
-
// it: a visitor who accepted last month and has since rejected still carries
|
|
892
|
-
// one, and honouring it would re-identify them under the identity they
|
|
893
|
-
// revoked. The header bridge is unaffected — the middleware already applied
|
|
894
|
-
// the same rule when it minted the id this request carries.
|
|
895
|
-
const visitorId =
|
|
896
|
-
h.get('x-kywi-visitor') ??
|
|
897
|
-
(tracked ? cookieStore.get(COOKIE_NAMES.VISITOR)?.value : undefined) ??
|
|
898
|
-
'vis-anon'
|
|
899
|
-
const host = h.get('host') ?? 'localhost'
|
|
900
|
-
const url = h.get('x-kywi-url') ?? \`http://\${host}/\`
|
|
901
|
-
|
|
902
|
-
const reqHeaders = new Headers()
|
|
903
|
-
h.forEach((value, key) => reqHeaders.set(key, value))
|
|
904
|
-
const request = new Request(url, { headers: reqHeaders })
|
|
905
|
-
|
|
906
|
-
const { db } = runtime
|
|
907
|
-
// \`gate\` reaches the engine's server collectors, so a site whose consent is
|
|
908
|
-
// owned by an external CMP (\`requireConsent: false\`) has its stored UTM /
|
|
909
|
-
// visitor / known / pinned-audience cookies read here too, not just by the
|
|
910
|
-
// middleware and the runtime routes.
|
|
911
|
-
const { result, audiences } = await evaluateActiveAudiences(db, siteId, request, gate)
|
|
912
|
-
|
|
913
|
-
const previewId = cookieStore.get(COOKIE_NAMES.PREVIEW_INIT)?.value || null
|
|
914
|
-
const audienceId = isActiveAudience(previewId, audiences) ? previewId : result.winningAudienceId
|
|
915
|
-
|
|
916
|
-
const experimentAssignments = await resolveExperimentAssignments(
|
|
917
|
-
runtime,
|
|
918
|
-
siteId,
|
|
919
|
-
layout,
|
|
920
|
-
audienceId,
|
|
921
|
-
visitorId,
|
|
922
|
-
tracked,
|
|
923
|
-
)
|
|
924
|
-
|
|
925
|
-
return {
|
|
926
|
-
personalization: { resolvedAudienceId: audienceId, experimentAssignments },
|
|
927
|
-
audienceId,
|
|
928
|
-
visitorId,
|
|
929
|
-
tracked,
|
|
930
|
-
audiences,
|
|
931
|
-
signals: result.signals,
|
|
932
557
|
}
|
|
558
|
+
return out
|
|
933
559
|
}
|
|
934
560
|
|
|
935
|
-
|
|
936
|
-
* Deterministically assign this visitor to a variant of every running A/B
|
|
937
|
-
* experiment the (audience-resolved) layout actually shows, and record the
|
|
938
|
-
* exposure. Stable on visitorId → the visitor keeps the same arm across requests;
|
|
939
|
-
* the write is idempotent on (experiment, visitor). Returns experimentId →
|
|
940
|
-
* chosen variant key for <KywiLayout personalization.experimentAssignments>.
|
|
941
|
-
*
|
|
942
|
-
* \`tracked\` is the consent gate (kywi-cms#91): false means \`visitorId\` is a
|
|
943
|
-
* throwaway the middleware minted for this request alone, and the idempotent
|
|
944
|
-
* write stops being idempotent — every anonymous page view would insert another
|
|
945
|
-
* assignment row. The ARM IS STILL CHOSEN, so the page renders exactly as it
|
|
946
|
-
* does for anyone else; only the counting stops.
|
|
947
|
-
*
|
|
948
|
-
* Experiment ids come from \`collectLayoutExperimentIds\` — the engine's own
|
|
949
|
-
* walker, the same one \`<KywiLayout>\` and the reference app use. It descends
|
|
950
|
-
* into every section's columns as well as the top-level regions, so a
|
|
951
|
-
* module-level \`moduleVariantContainer\` (an ab_test placed inside a section,
|
|
952
|
-
* not a bare section-level band) is bucketed exactly like one — a hand-rolled
|
|
953
|
-
* walker here previously stopped at the top level and silently never assigned
|
|
954
|
-
* those (kywi-cms#221).
|
|
955
|
-
*/
|
|
956
|
-
async function resolveExperimentAssignments(
|
|
957
|
-
runtime: KywiRuntime,
|
|
958
|
-
siteId: string,
|
|
959
|
-
layout: LayoutDocument | null | undefined,
|
|
960
|
-
audienceId: string | null,
|
|
961
|
-
visitorId: string,
|
|
962
|
-
tracked: boolean,
|
|
963
|
-
): Promise<Record<string, string | null>> {
|
|
964
|
-
if (!layout) return {}
|
|
965
|
-
// Pre-resolve FIRST, then read the containers. A container component saved
|
|
966
|
-
// with \`mode: 'ab_test'\` keeps its experiment in the DEFINITION; a placement
|
|
967
|
-
// that carries only a \`componentId\` would otherwise look like a plain
|
|
968
|
-
// container to this pass, no assignment would be made, and every visitor would
|
|
969
|
-
// see the Default arm of a live experiment. After pre-resolution there are no
|
|
970
|
-
// unresolved placements left to special-case — the containers here are the
|
|
971
|
-
// containers that render.
|
|
972
|
-
const resolved = await resolveLayoutComponents(applyPageVariant(layout, audienceId), runtime, siteId)
|
|
973
|
-
const experimentIds = collectLayoutExperimentIds(resolved)
|
|
974
|
-
if (experimentIds.length === 0) return {}
|
|
975
|
-
|
|
976
|
-
const running = await listRunningExperiments(runtime.db, siteId)
|
|
977
|
-
const byId = new Map(running.map((e) => [e.id, e]))
|
|
978
|
-
const assignments: Record<string, string | null> = {}
|
|
979
|
-
for (const id of experimentIds) {
|
|
980
|
-
const exp = byId.get(id)
|
|
981
|
-
if (!exp) continue
|
|
982
|
-
const res = await resolveExperimentForContainer(runtime.db, exp, visitorId, { recordExposure: tracked })
|
|
983
|
-
assignments[id] = res.variantKey
|
|
984
|
-
}
|
|
985
|
-
return assignments
|
|
986
|
-
}
|
|
987
|
-
|
|
988
|
-
/**
|
|
989
|
-
* Return the audience-resolved layout: page variants (audience → whole-page
|
|
990
|
-
* region override) applied, and \`pageVariants\`/\`abExperiments\` stripped so no
|
|
991
|
-
* other audience's content is serialized to this visitor.
|
|
992
|
-
*
|
|
993
|
-
* This is only the PAGE-level half. Container-level arms (variantContainer /
|
|
994
|
-
* moduleVariantContainer) are stripped by \`pruneLayoutToServedArms\` as the last
|
|
995
|
-
* pass before \`<KywiLayout>\` — see the public page (#167). Run both, or the
|
|
996
|
-
* losing arms are still readable in the page's RSC flight payload.
|
|
997
|
-
*/
|
|
998
|
-
export function personalizeLayout(
|
|
999
|
-
layout: LayoutDocument,
|
|
1000
|
-
audienceId: string | null,
|
|
1001
|
-
): LayoutDocument {
|
|
1002
|
-
return applyPageVariant(layout, audienceId)
|
|
1003
|
-
}
|
|
1004
|
-
|
|
1005
|
-
/** Is the @kywi-software/js client runtime enabled for the ACTIVE site's theme? */
|
|
1006
|
-
export function clientRuntimeEnabled(runtime: KywiRuntime, activeSite?: SiteConfig): boolean {
|
|
1007
|
-
const themeName = (activeSite ?? runtime.config.sites[0])?.theme // DEFAULT-SITE FALLBACK: Host matched no site
|
|
1008
|
-
const theme = runtime.config.themes.find((t) => t.name === themeName) ?? runtime.config.themes[0]
|
|
1009
|
-
return theme?.personalization?.clientRuntime === true
|
|
1010
|
-
}
|
|
1011
|
-
|
|
1012
|
-
/**
|
|
1013
|
-
* Is the global transparency surface (the automatic pill/panel showing which
|
|
1014
|
-
* audience the page was personalized for, with a switcher and opt-out) enabled
|
|
1015
|
-
* for this site's theme? \`personalization.transparencyNotice.enabled\` — unset
|
|
1016
|
-
* defaults to true; only an explicit \`false\` suppresses the surface from
|
|
1017
|
-
* appearing on its own. Even then a \`personalizationBadge\` module can still
|
|
1018
|
-
* open it deliberately.
|
|
1019
|
-
*/
|
|
1020
|
-
export function transparencyNoticeEnabled(runtime: KywiRuntime, activeSite?: SiteConfig): boolean {
|
|
1021
|
-
const themeName = (activeSite ?? runtime.config.sites[0])?.theme // DEFAULT-SITE FALLBACK: Host matched no site
|
|
1022
|
-
const theme = runtime.config.themes.find((t) => t.name === themeName) ?? runtime.config.themes[0]
|
|
1023
|
-
return theme?.personalization?.transparencyNotice?.enabled !== false
|
|
1024
|
-
}
|
|
561
|
+
// ── the wiring runtime (lib/kywi.ts) ──────────────────────────────────────────
|
|
1025
562
|
|
|
1026
563
|
/**
|
|
1027
|
-
*
|
|
1028
|
-
*
|
|
1029
|
-
*
|
|
1030
|
-
*
|
|
1031
|
-
* external tooling (kywi-cms#91).
|
|
1032
|
-
*
|
|
1033
|
-
* \`middleware.ts\` runs on the edge and cannot read this config, so it mirrors
|
|
1034
|
-
* the same flag with \`KYWI_REQUIRE_CONSENT=false\`. Set both, or neither.
|
|
564
|
+
* The app's ONE config seam, and the only render-path file that exists in every
|
|
565
|
+
* mode. Before plan E1 this was 111 lines of connection-pool, singleton and
|
|
566
|
+
* Host→site-resolution code copied into every project; it is now four lines
|
|
567
|
+
* over `createKywiNextRuntime`, which core owns and `pnpm up` upgrades.
|
|
1035
568
|
*
|
|
1036
|
-
*
|
|
1037
|
-
*
|
|
1038
|
-
*
|
|
1039
|
-
*
|
|
1040
|
-
* second site silently inherit the first site's privacy default. A per-host
|
|
1041
|
-
* mirror map would lift that constraint and is deferred
|
|
1042
|
-
* (\`docs-site DESIGN.md §3.4\`).
|
|
569
|
+
* It cannot collapse further: core cannot import an app's `kywi.config.ts`
|
|
570
|
+
* (there is no import path from a published package back into the app that
|
|
571
|
+
* installed it, and a config may pull in project plugins), so the app hands the
|
|
572
|
+
* config in — see `packages/core/src/next/runtime.ts`'s header.
|
|
1043
573
|
*/
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
/** The self-ID widget config in the serializable shape the client runtime reads. */
|
|
1053
|
-
export interface PublicSelfIdWidget {
|
|
1054
|
-
fields: Array<{
|
|
1055
|
-
id: string
|
|
1056
|
-
label: string
|
|
1057
|
-
type: 'select'
|
|
1058
|
-
options?: Array<{ value: string; label: string }>
|
|
1059
|
-
required?: boolean
|
|
1060
|
-
}>
|
|
1061
|
-
headline: string
|
|
1062
|
-
subheadline?: string
|
|
1063
|
-
submitLabel: string
|
|
1064
|
-
skipLabel?: string
|
|
1065
|
-
displayMode: 'modal' | 'inline' | 'slide-in' | 'hello_bar_top' | 'hello_bar_bottom' | 'drawer'
|
|
1066
|
-
frequency: 'once' | 'session' | 'always'
|
|
1067
|
-
trigger: SelfIdTrigger
|
|
1068
|
-
}
|
|
1069
|
-
|
|
1070
|
-
// The admin's five display modes (SelfIdWidgetConfig['displayMode']) and the
|
|
1071
|
-
// client runtime's (PublicSelfIdWidget['displayMode'], @kywi-software/js) are the
|
|
1072
|
-
// same set — the runtime implements hello_bar_top/hello_bar_bottom/drawer as
|
|
1073
|
-
// their own layouts, not folded into slide-in (kywi-cms#97) — so this is a
|
|
1074
|
-
// passthrough. Kept as a named function (rather than assigning displayMode
|
|
1075
|
-
// directly) so the two types stay checked against each other at compile time.
|
|
1076
|
-
function mapDisplayMode(mode: SelfIdWidgetConfig['displayMode']): PublicSelfIdWidget['displayMode'] {
|
|
1077
|
-
return mode
|
|
1078
|
-
}
|
|
1079
|
-
|
|
1080
|
-
function mapFrequency(freq: SelfIdWidgetConfig['frequency']): PublicSelfIdWidget['frequency'] {
|
|
1081
|
-
if (freq === 'once_visitor') return 'once'
|
|
1082
|
-
if (freq === 'once_session') return 'session'
|
|
1083
|
-
return 'always'
|
|
1084
|
-
}
|
|
574
|
+
function libKywi() {
|
|
575
|
+
return `${renderStamp()}
|
|
576
|
+
// This app's ONE Kywi wiring point. The render path lives in
|
|
577
|
+
// @kywi-software/core/next and reads kywi.config.ts THROUGH this runtime — a
|
|
578
|
+
// package cannot import your config itself. Regenerated by
|
|
579
|
+
// \`create-kywi-app upgrade\`: make your changes in kywi.config.ts, not here.
|
|
580
|
+
import { createKywiNextRuntime } from '@kywi-software/core/next'
|
|
581
|
+
import config from '../kywi.config'
|
|
1085
582
|
|
|
1086
|
-
|
|
1087
|
-
* Resolve the site's stored self-ID widget config into the runtime shape, its
|
|
1088
|
-
* picklist fields hydrated. Returns null when there is no config or it references
|
|
1089
|
-
* no resolvable fields, so the caller can skip mounting the widget entirely.
|
|
1090
|
-
*/
|
|
1091
|
-
export async function resolveSelfIdWidget(
|
|
1092
|
-
runtime: KywiRuntime,
|
|
1093
|
-
siteId: string,
|
|
1094
|
-
): Promise<PublicSelfIdWidget | null> {
|
|
1095
|
-
const [widget, allFields] = await Promise.all([
|
|
1096
|
-
getSelfIdWidgetConfig(runtime.db, siteId),
|
|
1097
|
-
listSelfIdFields(runtime.db, siteId),
|
|
1098
|
-
])
|
|
1099
|
-
if (!widget) return null
|
|
1100
|
-
|
|
1101
|
-
const byId = new Map<string, SelfIdField>(allFields.map((f) => [f.id, f]))
|
|
1102
|
-
const fields = widget.fieldIds
|
|
1103
|
-
.map((id) => byId.get(id))
|
|
1104
|
-
.filter((f): f is SelfIdField => f != null)
|
|
1105
|
-
.map((f) => ({
|
|
1106
|
-
id: f.id,
|
|
1107
|
-
label: f.label,
|
|
1108
|
-
type: 'select' as const,
|
|
1109
|
-
// {value, label} pairs, not bare values — the client runtime renders the
|
|
1110
|
-
// label and submits the value (kywi-cms#96); dropping the label here is
|
|
1111
|
-
// what made every option render as its raw value.
|
|
1112
|
-
options: f.picklist,
|
|
1113
|
-
required: f.required,
|
|
1114
|
-
}))
|
|
1115
|
-
if (fields.length === 0) return null
|
|
583
|
+
export const kywi = createKywiNextRuntime(config)
|
|
1116
584
|
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
...(widget.subheadline ? { subheadline: widget.subheadline } : {}),
|
|
1121
|
-
submitLabel: widget.submitLabel,
|
|
1122
|
-
...(widget.skipLabel ? { skipLabel: widget.skipLabel } : {}),
|
|
1123
|
-
displayMode: mapDisplayMode(widget.displayMode),
|
|
1124
|
-
frequency: mapFrequency(widget.frequency),
|
|
1125
|
-
trigger: widget.trigger,
|
|
1126
|
-
}
|
|
1127
|
-
}
|
|
585
|
+
// Named accessors for the API + AX route handlers, which want the handler
|
|
586
|
+
// rather than the whole runtime.
|
|
587
|
+
export const { getKywi, getKywiHandler, getActiveSite } = kywi
|
|
1128
588
|
`
|
|
1129
589
|
}
|
|
1130
590
|
|
|
1131
|
-
// ── middleware.ts (
|
|
1132
|
-
|
|
1133
|
-
function middleware() {
|
|
1134
|
-
return `import { NextResponse, type NextRequest } from 'next/server'
|
|
1135
|
-
import {
|
|
1136
|
-
ACCESS_COOKIE,
|
|
1137
|
-
REFRESH_COOKIE,
|
|
1138
|
-
assertProductionAuthSecret,
|
|
1139
|
-
classifyAccessToken,
|
|
1140
|
-
setAccessCookie,
|
|
1141
|
-
clearSessionCookies,
|
|
1142
|
-
} from '@kywi-software/core/host'
|
|
1143
|
-
// Edge-safe leaf helper: builds the kywi_utm cookie value core's collectUtm reads
|
|
1144
|
-
// back. Its own dependency-free entry (never the DB-backed audiences barrel), so
|
|
1145
|
-
// it is importable from this edge middleware.
|
|
1146
|
-
import { UTM_COOKIE, utmCookieValue } from '@kywi-software/core/audiences/utm-persistence'
|
|
1147
|
-
// Same kind of edge-safe leaf: the kywi_entry writer, whose value core reads
|
|
1148
|
-
// back as \`session.entryPage\` (kywi-cms#196).
|
|
1149
|
-
import { ENTRY_COOKIE, entryPageCookieValue } from '@kywi-software/core/audiences/entry-page'
|
|
1150
|
-
// Same kind of edge-safe leaf entry: the cookie-consent category map + gate. The
|
|
1151
|
-
// visitor's decision (written by the \`cookieConsent\` layout module) decides
|
|
1152
|
-
// whether the personalization cookies below may be persisted at all.
|
|
1153
|
-
import { cookieAllowedByHeader } from '@kywi-software/core/audiences/consent'
|
|
591
|
+
// ── middleware.ts (a re-export of core's own) ─────────────────────────────────
|
|
1154
592
|
|
|
1155
593
|
/**
|
|
1156
|
-
* The
|
|
1157
|
-
*
|
|
1158
|
-
*
|
|
1159
|
-
* flag that lives in config is mirrored here as an env var.
|
|
1160
|
-
* \`KYWI_REQUIRE_CONSENT=false\` turns the gate off for the two cookies this file
|
|
1161
|
-
* writes. Set it together with the theme flag, never one alone —
|
|
1162
|
-
* createKywiApiHandler THROWS at startup when the two disagree, so a mismatch
|
|
1163
|
-
* fails the deploy instead of silently making the middleware and the API
|
|
1164
|
-
* disagree about whether a visitor is tracked.
|
|
1165
|
-
*/
|
|
1166
|
-
const REQUIRE_CONSENT = process.env.KYWI_REQUIRE_CONSENT !== 'false'
|
|
1167
|
-
|
|
1168
|
-
/**
|
|
1169
|
-
* Server-side auth enforcement + transparent session refresh for /admin and the
|
|
1170
|
-
* versioned API. The security-critical logic (JWT verify, cookie contract) lives
|
|
1171
|
-
* in @kywi-software/core/host; this file is only the Next.js wiring:
|
|
1172
|
-
*
|
|
1173
|
-
* 1. Refresh a stale access cookie from the 7-day refresh cookie, so an admin
|
|
1174
|
-
* is never bounced to /admin/login mid-session.
|
|
1175
|
-
* 2. Bridge the httpOnly access cookie onto \`Authorization: Bearer\` for
|
|
1176
|
-
* /api/v1/* — core reads credentials only from that header, and the browser
|
|
1177
|
-
* cannot attach it (the token is httpOnly).
|
|
1178
|
-
* 3. Gate /admin/* (except /admin/login): no usable session → redirect to login.
|
|
594
|
+
* The auth gate, transparent session refresh, cookie→bearer bridge, visitor /
|
|
595
|
+
* UTM / entry-page cookies and `.md` content negotiation were 242 lines of
|
|
596
|
+
* emitted code; they are now `@kywi-software/core/next/middleware`.
|
|
1179
597
|
*
|
|
1180
|
-
*
|
|
1181
|
-
*
|
|
598
|
+
* It has its OWN core entry rather than living on the `/next` barrel because
|
|
599
|
+
* Next compiles this file for the EDGE runtime: the barrel reaches the
|
|
600
|
+
* database, sharp and the AWS SDK, and re-exporting the middleware from it
|
|
601
|
+
* would drag all of that into the edge bundle. Same precedent as core's
|
|
602
|
+
* `./host` split (see that file's header in core).
|
|
1182
603
|
*/
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
//
|
|
1186
|
-
//
|
|
1187
|
-
//
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
const AUTH_SECRET = process.env.AUTH_SECRET ?? 'dev-secret-change-in-production'
|
|
1191
|
-
|
|
1192
|
-
// Token/session endpoints are pass-through: never guarded, refreshed, or bridged
|
|
1193
|
-
// (they establish a session rather than require one; the refresh call below is
|
|
1194
|
-
// itself a POST to /auth/refresh and must not recurse).
|
|
1195
|
-
function isAuthEndpoint(pathname: string): boolean {
|
|
1196
|
-
return pathname.startsWith('/api/v1/auth/') &&
|
|
1197
|
-
!pathname.startsWith('/api/v1/auth/oauth-clients') &&
|
|
1198
|
-
!pathname.startsWith('/api/v1/auth/api-keys')
|
|
1199
|
-
}
|
|
1200
|
-
|
|
1201
|
-
// Anonymous visitor identity for personalization/experiments. A/B assignment is
|
|
1202
|
-
// deterministic on this id, so persisting it (2y cookie) is what gives a visitor
|
|
1203
|
-
// a STABLE experiment arm across requests without any client runtime (#50). Name
|
|
1204
|
-
// matches @kywi-software/core/audiences COOKIE_NAMES.VISITOR; kept as a literal
|
|
1205
|
-
// here so the edge middleware never imports the (server-only) audiences module.
|
|
1206
|
-
const VISITOR_COOKIE = 'kywi_visitor'
|
|
1207
|
-
const VISITOR_MAX_AGE = 60 * 60 * 24 * 365 * 2 // 2 years
|
|
1208
|
-
|
|
1209
|
-
/**
|
|
1210
|
-
* Public (non-admin, non-API) request: never auth-gated. Ensure a stable
|
|
1211
|
-
* \`kywi_visitor\` id — mint one on first visit — and forward it to the render as
|
|
1212
|
-
* \`x-kywi-visitor\` so the page sees it on this very request (the freshly set
|
|
1213
|
-
* cookie is not yet readable via cookies()). Also forward the full request URL
|
|
1214
|
-
* as \`x-kywi-url\` (query string included) so the server render can read UTM
|
|
1215
|
-
* params off the very first request — without it, campaign personalization
|
|
1216
|
-
* would never fire on the landing page. Everything else passes through.
|
|
1217
|
-
*/
|
|
1218
|
-
function handlePublicRequest(req: NextRequest): NextResponse {
|
|
1219
|
-
// Both cookies below are \`personalization\` cookies in core's consent map, so
|
|
1220
|
-
// neither is written OR READ until the visitor accepts. The header bridge is
|
|
1221
|
-
// unaffected — this request still gets a visitor id and still personalizes off
|
|
1222
|
-
// its own URL — so a site with no consent banner still renders, it just serves
|
|
1223
|
-
// default content instead of tracking anyone. Place the \`cookieConsent\`
|
|
1224
|
-
// module to let visitors turn personalization on.
|
|
1225
|
-
const cookieHeader = req.headers.get('cookie')
|
|
1226
|
-
const gate = { requireConsent: REQUIRE_CONSENT }
|
|
1227
|
-
const mayPersonalize = cookieAllowedByHeader(VISITOR_COOKIE, cookieHeader, gate)
|
|
1228
|
-
// Without consent the stored id is IGNORED, not just left un-refreshed: a
|
|
1229
|
-
// visitor who accepted last month and rejected today still carries the cookie,
|
|
1230
|
-
// and reading it would keep them tracked under the identity they just revoked.
|
|
1231
|
-
const existing = mayPersonalize ? req.cookies.get(VISITOR_COOKIE)?.value : undefined
|
|
1232
|
-
const visitorId = existing ?? crypto.randomUUID()
|
|
1233
|
-
const headers = new Headers(req.headers)
|
|
1234
|
-
headers.set('x-kywi-visitor', visitorId)
|
|
1235
|
-
headers.set('x-kywi-url', req.nextUrl.href)
|
|
1236
|
-
const res = NextResponse.next({ request: { headers } })
|
|
1237
|
-
if (!existing && mayPersonalize) {
|
|
1238
|
-
res.cookies.set(VISITOR_COOKIE, visitorId, { path: '/', maxAge: VISITOR_MAX_AGE, sameSite: 'lax' })
|
|
1239
|
-
}
|
|
1240
|
-
// Persist campaign UTM params so audience matching survives internal
|
|
1241
|
-
// navigation: core's collectUtm reads this cookie when the URL has no utm_*
|
|
1242
|
-
// query string. Only written when the request carries utm_* params, so an
|
|
1243
|
-
// ordinary page view never clobbers a persisted campaign (utmCookieValue
|
|
1244
|
-
// returns null → the existing cookie is left in place) — and only once the
|
|
1245
|
-
// visitor has consented, which utmCookieValue reads off the header we pass.
|
|
1246
|
-
const utmValue = utmCookieValue(req.nextUrl.href, { cookieHeader, ...gate })
|
|
1247
|
-
if (utmValue) {
|
|
1248
|
-
res.cookies.set(UTM_COOKIE, utmValue, { path: '/', maxAge: 60 * 60 * 24 * 30, sameSite: 'lax' })
|
|
1249
|
-
}
|
|
1250
|
-
// Record the session's ENTRY page (path + query) so rules on
|
|
1251
|
-
// \`session.entryPage\` keep matching once the visitor navigates on
|
|
1252
|
-
// (kywi-cms#196). Written once, consent-gated like the two above, and with no
|
|
1253
|
-
// maxAge — a new visit is a new entry page. The landing request needs no
|
|
1254
|
-
// cookie: core falls back to the request's own path, so \`?from=marketer\`
|
|
1255
|
-
// personalizes the page it links to on that very request.
|
|
1256
|
-
// Sec-Fetch-Dest / Accept are passed so ONLY a document request can name the
|
|
1257
|
-
// entry page: a subresource that happens to be the session's first request
|
|
1258
|
-
// (\`/kywi.js\`, a font, a route handler) would otherwise record itself as the
|
|
1259
|
-
// page the visitor arrived on, and every entry-page rule would match an asset.
|
|
1260
|
-
const entryValue = entryPageCookieValue(req.nextUrl.href, {
|
|
1261
|
-
cookieHeader,
|
|
1262
|
-
secFetchDest: req.headers.get('sec-fetch-dest'),
|
|
1263
|
-
accept: req.headers.get('accept'),
|
|
1264
|
-
...gate,
|
|
1265
|
-
})
|
|
1266
|
-
if (entryValue) {
|
|
1267
|
-
res.cookies.set(ENTRY_COOKIE, entryValue, { path: '/', sameSite: 'lax' })
|
|
1268
|
-
}
|
|
1269
|
-
return res
|
|
1270
|
-
}
|
|
1271
|
-
|
|
1272
|
-
async function fetchFreshAccessToken(origin: string, refreshToken: string): Promise<string | undefined> {
|
|
1273
|
-
try {
|
|
1274
|
-
const res = await fetch(origin + '/api/v1/auth/refresh', {
|
|
1275
|
-
method: 'POST',
|
|
1276
|
-
headers: { 'content-type': 'application/json' },
|
|
1277
|
-
body: JSON.stringify({ refreshToken }),
|
|
1278
|
-
})
|
|
1279
|
-
if (!res.ok) return undefined
|
|
1280
|
-
const body = (await res.json().catch(() => null)) as { data?: { accessToken?: unknown } } | null
|
|
1281
|
-
const token = body?.data?.accessToken
|
|
1282
|
-
return typeof token === 'string' && token.length > 0 ? token : undefined
|
|
1283
|
-
} catch {
|
|
1284
|
-
return undefined
|
|
1285
|
-
}
|
|
1286
|
-
}
|
|
1287
|
-
|
|
1288
|
-
// Markdown content negotiation by URL suffix. Core serves markdown at
|
|
1289
|
-
// \`/api/v1/ax/md/slug/<slug>\` and the AX layer enables it (ax.markdown), but the
|
|
1290
|
-
// scaffold never wires the friendly \`/<path>.md\` URL the AX pitch (and the
|
|
1291
|
-
// developer copy) names — so it 404s despite the feature being on. Rewrite any
|
|
1292
|
-
// GET/HEAD for \`/<path>.md\` onto the core route so the named URL actually
|
|
1293
|
-
// resolves. Nested paths keep their full slug (e.g. /docs/foo.md -> docs/foo).
|
|
1294
|
-
// Never intercepts Next internals or the API — those never carry this suffix,
|
|
1295
|
-
// but are excluded explicitly since the matcher's own exclusion is broad.
|
|
1296
|
-
function handleMarkdownNegotiation(req: NextRequest): NextResponse | null {
|
|
1297
|
-
const { pathname } = req.nextUrl
|
|
1298
|
-
if (req.method !== 'GET' && req.method !== 'HEAD') return null
|
|
1299
|
-
if (!pathname.endsWith('.md')) return null
|
|
1300
|
-
if (pathname.startsWith('/api/') || pathname.startsWith('/_next/')) return null
|
|
1301
|
-
const slug = pathname.replace(/^\\//, '').replace(/\\.md$/, '')
|
|
1302
|
-
if (!slug) return null
|
|
1303
|
-
const url = req.nextUrl.clone()
|
|
1304
|
-
url.pathname = '/api/v1/ax/md/slug/' + slug
|
|
1305
|
-
return NextResponse.rewrite(url)
|
|
1306
|
-
}
|
|
1307
|
-
|
|
1308
|
-
export async function middleware(req: NextRequest): Promise<NextResponse> {
|
|
1309
|
-
const { pathname } = req.nextUrl
|
|
1310
|
-
if (isAuthEndpoint(pathname)) return NextResponse.next()
|
|
1311
|
-
|
|
1312
|
-
const md = handleMarkdownNegotiation(req)
|
|
1313
|
-
if (md) return md
|
|
1314
|
-
|
|
1315
|
-
// Public pages are never auth-gated — just give them a stable visitor id.
|
|
1316
|
-
const isAdmin = pathname === '/admin' || pathname.startsWith('/admin/')
|
|
1317
|
-
const isApi = pathname.startsWith('/api/v1/')
|
|
1318
|
-
if (!isAdmin && !isApi) return handlePublicRequest(req)
|
|
1319
|
-
|
|
1320
|
-
const accessToken = req.cookies.get(ACCESS_COOKIE)?.value
|
|
1321
|
-
const refreshToken = req.cookies.get(REFRESH_COOKIE)?.value
|
|
1322
|
-
const status = await classifyAccessToken(accessToken, AUTH_SECRET)
|
|
1323
|
-
|
|
1324
|
-
let freshAccess: string | undefined
|
|
1325
|
-
if (status !== 'valid' && refreshToken) {
|
|
1326
|
-
freshAccess = await fetchFreshAccessToken(req.nextUrl.origin, refreshToken)
|
|
1327
|
-
}
|
|
1328
|
-
const usableToken = status === 'valid' ? accessToken : freshAccess
|
|
1329
|
-
|
|
1330
|
-
// /api/v1/*: bridge cookie → Authorization header.
|
|
1331
|
-
if (pathname.startsWith('/api/v1/')) {
|
|
1332
|
-
if (usableToken && !req.headers.get('authorization')) {
|
|
1333
|
-
const headers = new Headers(req.headers)
|
|
1334
|
-
headers.set('authorization', 'Bearer ' + usableToken)
|
|
1335
|
-
const res = NextResponse.next({ request: { headers } })
|
|
1336
|
-
if (freshAccess) setAccessCookie(res, freshAccess)
|
|
1337
|
-
return res
|
|
1338
|
-
}
|
|
1339
|
-
const res = NextResponse.next()
|
|
1340
|
-
if (status !== 'valid' && refreshToken && !freshAccess) clearSessionCookies(res)
|
|
1341
|
-
return res
|
|
1342
|
-
}
|
|
1343
|
-
|
|
1344
|
-
// /admin/*: server-side gate. Login must stay reachable while anonymous.
|
|
1345
|
-
if (pathname === '/admin/login') return NextResponse.next()
|
|
1346
|
-
if (status === 'valid') return NextResponse.next()
|
|
1347
|
-
if (freshAccess) {
|
|
1348
|
-
const res = NextResponse.next()
|
|
1349
|
-
setAccessCookie(res, freshAccess)
|
|
1350
|
-
return res
|
|
1351
|
-
}
|
|
1352
|
-
|
|
1353
|
-
const loginUrl = req.nextUrl.clone()
|
|
1354
|
-
loginUrl.pathname = '/admin/login'
|
|
1355
|
-
loginUrl.search = ''
|
|
1356
|
-
loginUrl.searchParams.set('next', pathname + req.nextUrl.search)
|
|
1357
|
-
const res = NextResponse.redirect(loginUrl)
|
|
1358
|
-
clearSessionCookies(res)
|
|
1359
|
-
return res
|
|
1360
|
-
}
|
|
1361
|
-
|
|
1362
|
-
export const config = {
|
|
1363
|
-
matcher: [
|
|
1364
|
-
'/admin/:path*',
|
|
1365
|
-
'/api/v1/:path*',
|
|
1366
|
-
// Public pages, for the visitor-id cookie above. Excludes Next internals and
|
|
1367
|
-
// any path with a file extension (static assets, /favicon.ico, /kywi.js, and
|
|
1368
|
-
// the AX files /robots.txt, /sitemap.xml, /llms*.txt).
|
|
1369
|
-
'/((?!_next/|.*\\\\..*).*)',
|
|
1370
|
-
// \`/<path>.md\` — the markdown-negotiation URL. The extension-excluding
|
|
1371
|
-
// pattern above skips it, so it needs its own entry to reach
|
|
1372
|
-
// handleMarkdownNegotiation.
|
|
1373
|
-
'/((?!_next/|api/).*\\\\.md)',
|
|
1374
|
-
],
|
|
1375
|
-
}
|
|
604
|
+
function middleware() {
|
|
605
|
+
return `${renderStamp()}
|
|
606
|
+
// Auth gate, session refresh, the cookie→bearer bridge, the visitor/UTM/entry
|
|
607
|
+
// cookies and .md content negotiation — all core's, all upgraded with the
|
|
608
|
+
// package. Imported from its OWN entry, never the \`/next\` barrel: that barrel
|
|
609
|
+
// reaches the database and sharp, which no edge bundle can carry.
|
|
610
|
+
export { middleware, config } from '@kywi-software/core/next/middleware'
|
|
1376
611
|
`
|
|
1377
612
|
}
|
|
1378
613
|
|
|
@@ -1442,113 +677,42 @@ export function SiteNav({ items, variant, ariaLabel, depth }: SiteNavProps) {
|
|
|
1442
677
|
`
|
|
1443
678
|
}
|
|
1444
679
|
|
|
1445
|
-
/**
|
|
680
|
+
/**
|
|
681
|
+
* The public site shell — a thin delegate over `createSiteLayout`.
|
|
682
|
+
*
|
|
683
|
+
* Three things stay in the generated file, and only three:
|
|
684
|
+
*
|
|
685
|
+
* 1. **Both CSS imports.** Next admits a global stylesheet only from a file
|
|
686
|
+
* inside `app/`, and a published package cannot import the project's own
|
|
687
|
+
* `site.css` at all (`layered-architecture DESIGN.md` §4.1).
|
|
688
|
+
* 2. **The brand label**, because the scaffold bakes the project name in.
|
|
689
|
+
* Core defaults it to the ACTIVE site's configured `name`; passing it
|
|
690
|
+
* explicitly preserves what the template has always emitted.
|
|
691
|
+
* 3. **The nav component**, wired explicitly to `components/site-nav.tsx`.
|
|
692
|
+
* Core ships an identical default, so this line is redundant at runtime —
|
|
693
|
+
* it is here so the customization point is VISIBLE in the generated code:
|
|
694
|
+
* a project restyling its header edits that file and nothing else.
|
|
695
|
+
* @param {Answers} a
|
|
696
|
+
*/
|
|
1446
697
|
function siteLayout(a) {
|
|
1447
|
-
return
|
|
1448
|
-
|
|
1449
|
-
|
|
1450
|
-
|
|
1451
|
-
//
|
|
1452
|
-
//
|
|
1453
|
-
//
|
|
698
|
+
return `${renderStamp()}
|
|
699
|
+
// The public site shell — header, footer, data-driven nav and the active site's
|
|
700
|
+
// theme tokens, all resolved per request. It lives in @kywi-software/core/next;
|
|
701
|
+
// this file wires in THIS app's runtime, brand and nav component, and imports
|
|
702
|
+
// the stylesheets (Next takes a global stylesheet only from a file in app/, and
|
|
703
|
+
// a package cannot import yours). Restyle via site.css, theme tokens
|
|
704
|
+
// (kywi.config.ts) and components/site-nav.tsx — not by editing this file.
|
|
705
|
+
import { createSiteLayout } from '@kywi-software/core/next'
|
|
1454
706
|
import '@kywi-software/core/site/styles.css'
|
|
1455
|
-
// This app's OWN chrome (header / footer / page wrapper). Yours to edit freely.
|
|
1456
707
|
import './site.css'
|
|
1457
|
-
import {
|
|
708
|
+
import { kywi } from '../../lib/kywi'
|
|
1458
709
|
import { SiteNav } from '../../components/site-nav'
|
|
1459
|
-
import { KywiJsLoader } from '../../components/kywi-js-loader'
|
|
1460
710
|
|
|
1461
|
-
|
|
1462
|
-
* Public site shell. Header + footer carry this project's brand; edit them (and
|
|
1463
|
-
* site.css) freely — this is your app's own layer over the DB-backed content
|
|
1464
|
-
* that ${'app/(site)/[[...slug]]'} renders.
|
|
1465
|
-
*
|
|
1466
|
-
* The header/footer nav is DATA-DRIVEN, never hand-typed: it renders the
|
|
1467
|
-
* owner-managed \`'main'\` menu (Admin → Menus) when one exists, falling back to
|
|
1468
|
-
* the published Site Tree (\`isNav\` pages) so a fresh site has working nav out
|
|
1469
|
-
* of the box — and the footer renders a \`'footer'\` menu when one exists. NEVER
|
|
1470
|
-
* hardcode this list: a menu item's href resolves from its linked page and
|
|
1471
|
-
* can never drift the way a pasted URL can (see AGENTS.md → Navigation).
|
|
1472
|
-
* Rendered through core's shared nav renderer via the generated
|
|
1473
|
-
* \`components/site-nav.tsx\` (a \`'use client'\` wrapper — see that file for why)
|
|
1474
|
-
* rather than bespoke markup, so it gets the same CSS and \`@kywi-software/js\`
|
|
1475
|
-
* enhancement as a \`navigation\` module placed in the page body.
|
|
1476
|
-
*
|
|
1477
|
-
* The active site's theme tokens (kywi.config.ts → themes[].tokens) are flattened
|
|
1478
|
-
* into a \`:root { --kywi-* }\` block by \`themeTokenStyleBlock\` and injected below,
|
|
1479
|
-
* so kywi.config.ts is the single source of truth for the palette and spacing and
|
|
1480
|
-
* both site.css and core's default styles resolve against those variables.
|
|
1481
|
-
*
|
|
1482
|
-
* Everything it renders — the menus, the nav-tree fallback and the theme block —
|
|
1483
|
-
* is keyed on the site the REQUEST resolved to, so one app serves each of its
|
|
1484
|
-
* configured domains its own nav and its own palette.
|
|
1485
|
-
*/
|
|
711
|
+
const layout = createSiteLayout({ runtime: kywi, brand: { label: '${escapeJsString(a.projectName)}' }, nav: SiteNav })
|
|
1486
712
|
|
|
1487
|
-
|
|
1488
|
-
//
|
|
713
|
+
export default layout.default
|
|
714
|
+
// A LITERAL — same reason as the page route below it in the tree.
|
|
1489
715
|
export const dynamic = 'force-dynamic'
|
|
1490
|
-
|
|
1491
|
-
export default async function SiteLayout({ children }: { children: React.ReactNode }) {
|
|
1492
|
-
// The site this request is FOR (resolved from its Host header), never the
|
|
1493
|
-
// default site: the menus, the nav tree and the theme below are all keyed on
|
|
1494
|
-
// it, so a second domain gets its own nav and its own palette.
|
|
1495
|
-
const { runtime, site, siteId } = await getActiveSite()
|
|
1496
|
-
const { scope } = runtime
|
|
1497
|
-
|
|
1498
|
-
// Resolved PER REQUEST, not at module scope: a module-scope constant is
|
|
1499
|
-
// evaluated once at import, so every host would emit the first site's tokens
|
|
1500
|
-
// and a second site could not be themed at all.
|
|
1501
|
-
const siteTheme =
|
|
1502
|
-
runtime.config.themes.find((t) => t.name === site.theme) ?? runtime.config.themes[0]
|
|
1503
|
-
const themeVars = themeTokenStyleBlock(siteTheme?.tokens)
|
|
1504
|
-
|
|
1505
|
-
// The middleware forwards the full request URL as \`x-kywi-url\` (see
|
|
1506
|
-
// middleware.ts) so this shared layout can resolve which page is current —
|
|
1507
|
-
// without it, isActive/isAncestor on nav items would have nothing to match.
|
|
1508
|
-
const h = await headers()
|
|
1509
|
-
const url = h.get('x-kywi-url')
|
|
1510
|
-
const currentPath = normalizePath(url ? new URL(url).pathname : '/')
|
|
1511
|
-
|
|
1512
|
-
const mainMenu = await scope.menus.getResolved(siteId, 'main', currentPath)
|
|
1513
|
-
const headerItems = mainMenu ?? navTreeToMenuItems(await scope.nav.getTree(siteId, currentPath))
|
|
1514
|
-
const footerItems = await scope.menus.getResolved(siteId, 'footer', currentPath)
|
|
1515
|
-
|
|
1516
|
-
return (
|
|
1517
|
-
<div className="site-shell">
|
|
1518
|
-
{themeVars ? <style dangerouslySetInnerHTML={{ __html: themeVars }} /> : null}
|
|
1519
|
-
{/* /kywi.js for the nav's hover-intent/keyboard/viewport-flip enhancement
|
|
1520
|
-
(kywi-cms#114) — independent of personalization, gated on the exact
|
|
1521
|
-
same condition <SiteNav> renders on below (a non-empty header menu),
|
|
1522
|
-
so it loads whenever a \`[data-kywi-nav]\` root actually exists. Shares
|
|
1523
|
-
its dedup with <PersonalizationRuntime> (lib/kywi-js-loader.ts), so a
|
|
1524
|
-
page with both nav AND the client runtime enabled loads it once. */}
|
|
1525
|
-
{headerItems.length > 0 && <KywiJsLoader />}
|
|
1526
|
-
|
|
1527
|
-
<header className="site-header">
|
|
1528
|
-
<div className="site-header__inner">
|
|
1529
|
-
<a className="site-brand" href="/">${escapeJsxText(a.projectName)}</a>
|
|
1530
|
-
<div className="site-nav">
|
|
1531
|
-
{headerItems.length > 0 && (
|
|
1532
|
-
<SiteNav items={headerItems} variant="horizontal" ariaLabel="Primary" depth={2} />
|
|
1533
|
-
)}
|
|
1534
|
-
<a className="site-nav__admin" href="/admin">Admin →</a>
|
|
1535
|
-
</div>
|
|
1536
|
-
</div>
|
|
1537
|
-
</header>
|
|
1538
|
-
|
|
1539
|
-
<main className="site-main">{children}</main>
|
|
1540
|
-
|
|
1541
|
-
<footer className="site-footer">
|
|
1542
|
-
<div className="site-footer__inner">
|
|
1543
|
-
{footerItems && footerItems.length > 0 && (
|
|
1544
|
-
<SiteNav items={footerItems} variant="footer" ariaLabel="Footer" />
|
|
1545
|
-
)}
|
|
1546
|
-
<p className="site-footer__credit">Powered by <a href="https://kywi.dev">Kywi CMS</a></p>
|
|
1547
|
-
</div>
|
|
1548
|
-
</footer>
|
|
1549
|
-
</div>
|
|
1550
|
-
)
|
|
1551
|
-
}
|
|
1552
716
|
`
|
|
1553
717
|
}
|
|
1554
718
|
|
|
@@ -1654,758 +818,38 @@ function siteStyles(a) {
|
|
|
1654
818
|
`
|
|
1655
819
|
}
|
|
1656
820
|
|
|
1657
|
-
/** Coupled catch-all: renders home ("/") and any published page at its path. */
|
|
1658
|
-
function siteSlugPage() {
|
|
1659
|
-
return `import React, { cache } from 'react'
|
|
1660
|
-
import type { Metadata } from 'next'
|
|
1661
|
-
import { notFound } from 'next/navigation'
|
|
1662
|
-
import { cookies, headers } from 'next/headers'
|
|
1663
|
-
import { KywiBody, KywiEditableAttribute, KywiEditableRegion } from '@kywi-software/core/scope-client'
|
|
1664
|
-
import {
|
|
1665
|
-
KywiLayout,
|
|
1666
|
-
KywiRegion,
|
|
1667
|
-
AudienceMetaTags,
|
|
1668
|
-
hydrateLayoutFeeds,
|
|
1669
|
-
hydrateLayoutNav,
|
|
1670
|
-
pruneLayoutToServedArms,
|
|
1671
|
-
type LayoutDocument,
|
|
1672
|
-
} from '@kywi-software/core/layout'
|
|
1673
|
-
import { KywiJsonLd } from '@kywi-software/core/scope'
|
|
1674
|
-
import { ACCESS_COOKIE, canAccessContent, readSessionClaims } from '@kywi-software/core/host'
|
|
1675
|
-
import config from '../../../lib/config'
|
|
1676
|
-
import { getActiveSite } from '../../../lib/kywi'
|
|
1677
|
-
import {
|
|
1678
|
-
resolvePublicContent,
|
|
1679
|
-
resolvePersonalization,
|
|
1680
|
-
personalizeLayout,
|
|
1681
|
-
resolveSelfIdWidget,
|
|
1682
|
-
clientRuntimeEnabled,
|
|
1683
|
-
transparencyNoticeEnabled,
|
|
1684
|
-
requireConsentEnabled,
|
|
1685
|
-
buildFeedResolver,
|
|
1686
|
-
resolveLayoutComponents,
|
|
1687
|
-
localeAlternates,
|
|
1688
|
-
mediaUrl,
|
|
1689
|
-
requestBaseUrl,
|
|
1690
|
-
} from '../../../lib/site'
|
|
1691
|
-
import { moduleComponents } from '../../../lib/modules'
|
|
1692
|
-
import { PersonalizationRuntime } from '../../../components/personalization-runtime'
|
|
1693
|
-
import { KywiFrontEdit } from '../kywi-front-edit'
|
|
1694
|
-
|
|
1695
|
-
// Every page comes from the database, so this route is always dynamic.
|
|
1696
|
-
export const dynamic = 'force-dynamic'
|
|
1697
|
-
|
|
1698
|
-
type Params = { params: Promise<{ slug?: string[] }> }
|
|
1699
|
-
type Search = { searchParams: Promise<Record<string, string | string[] | undefined>> }
|
|
1700
|
-
|
|
1701
|
-
// One resolution shared by generateMetadata and the page render (React.cache
|
|
1702
|
-
// dedupes within a request). Keyed on stable primitives so the two calls dedupe:
|
|
1703
|
-
// the slug segments joined (segments never contain "/") and the Accept-Language
|
|
1704
|
-
// header, which selects the locale variant.
|
|
1705
|
-
const getNode = cache((key: string, acceptLanguage: string | null) =>
|
|
1706
|
-
resolvePublicContent(key ? key.split('/') : [], { acceptLanguage }),
|
|
1707
|
-
)
|
|
1708
|
-
|
|
1709
|
-
// SEO: map the admin's SEO-tab fields — Meta Title / Description / Keywords, the
|
|
1710
|
-
// OG Image (metaImageId, falling back to the page's Featured Image), Canonical,
|
|
1711
|
-
// Robots index/follow, and (on a multi-locale site) hreflang alternates — onto
|
|
1712
|
-
// Next's Metadata. The sitemap-only fields (changeFreq, sitemapPriority) are not
|
|
1713
|
-
// <head> metadata.
|
|
1714
|
-
export async function generateMetadata({ params }: Params): Promise<Metadata> {
|
|
1715
|
-
const { slug } = await params
|
|
1716
|
-
const acceptLanguage = (await headers()).get('accept-language')
|
|
1717
|
-
const node = await getNode((slug ?? []).join('/'), acceptLanguage)
|
|
1718
|
-
if (!node || node['status'] !== 'published') return {}
|
|
1719
|
-
|
|
1720
|
-
const title = (node['metaTitle'] as string) || String(node['title'] ?? 'Untitled')
|
|
1721
|
-
const description = (node['metaDescription'] as string) || undefined
|
|
1722
|
-
const keywords = (node['metaKeywords'] as string) || undefined
|
|
1723
|
-
const image = mediaUrl(node['metaImageId']) ?? mediaUrl(node['featuredImageId'])
|
|
1724
|
-
const images = image ? [image] : undefined
|
|
1725
|
-
const canonical = (node['canonicalUrl'] as string) || undefined
|
|
1726
|
-
const languages = await localeAlternates(slug ?? [])
|
|
1727
|
-
const alternates =
|
|
1728
|
-
canonical || languages
|
|
1729
|
-
? { ...(canonical ? { canonical } : {}), ...(languages ? { languages } : {}) }
|
|
1730
|
-
: undefined
|
|
1731
|
-
|
|
1732
|
-
return {
|
|
1733
|
-
title,
|
|
1734
|
-
description,
|
|
1735
|
-
keywords,
|
|
1736
|
-
...(alternates ? { alternates } : {}),
|
|
1737
|
-
robots: { index: node['robotsIndex'] !== 'noindex', follow: node['robotsFollow'] !== 'nofollow' },
|
|
1738
|
-
openGraph: { title, description, images, type: 'website' },
|
|
1739
|
-
twitter: { card: images ? 'summary_large_image' : 'summary', title, description, images },
|
|
1740
|
-
}
|
|
1741
|
-
}
|
|
1742
|
-
|
|
1743
|
-
// True once the Layout editor has placed at least one section into any region.
|
|
1744
|
-
// A page with an empty layout document falls back to its Body rich text.
|
|
1745
|
-
function hasRenderableLayout(layout: LayoutDocument | null | undefined): layout is LayoutDocument {
|
|
1746
|
-
if (!layout || typeof layout !== 'object' || !layout.regions) return false
|
|
1747
|
-
return Object.values(layout.regions).some(
|
|
1748
|
-
(sections) => Array.isArray(sections) && sections.length > 0,
|
|
1749
|
-
)
|
|
1750
|
-
}
|
|
1751
|
-
|
|
1752
|
-
// Is the current visitor a signed-in admin who may edit? The public route is
|
|
1753
|
-
// outside the middleware's auth matcher, so verify the httpOnly session cookie
|
|
1754
|
-
// here and derive the content permissions the overlay needs. Returns null for
|
|
1755
|
-
// anyone who cannot edit — no edit DOM (not even the browse-mode toolbar) is
|
|
1756
|
-
// emitted for them. Called on EVERY request (not just ?kywi-edit=1 ones) so the
|
|
1757
|
-
// toolbar can surface itself for a signed-in admin who is just browsing — this
|
|
1758
|
-
// is a cookie read + JWT verify, no DB round-trip, so the cost on an anonymous
|
|
1759
|
-
// visitor's fast path is a fast null return (\`readSessionClaims\` bails
|
|
1760
|
-
// immediately when there's no cookie).
|
|
1761
|
-
async function resolveEditPermissions() {
|
|
1762
|
-
const token = (await cookies()).get(ACCESS_COOKIE)?.value
|
|
1763
|
-
const claims = await readSessionClaims(token, config.auth.secret)
|
|
1764
|
-
if (!claims || !canAccessContent(claims.role, 'write')) return null
|
|
1765
|
-
return { canEdit: true, canPublish: canAccessContent(claims.role, 'publish'), role: claims.role }
|
|
1766
|
-
}
|
|
1767
|
-
|
|
1768
|
-
// "/" resolves the seeded Home node; any other URL resolves the published node at
|
|
1769
|
-
// that FULL Site Tree path (locale-aware), so /a/b/<slug> cannot serve a
|
|
1770
|
-
// top-level <slug> (#30, #51). Draft / missing content 404s.
|
|
1771
|
-
export default async function PublicPage({ params, searchParams }: Params & Search) {
|
|
1772
|
-
const { slug } = await params
|
|
1773
|
-
const acceptLanguage = (await headers()).get('accept-language')
|
|
1774
|
-
const node = await getNode((slug ?? []).join('/'), acceptLanguage)
|
|
1775
|
-
if (!node || node['status'] !== 'published') notFound()
|
|
1776
|
-
|
|
1777
|
-
// The site this request is FOR, resolved from its Host header. \`siteId\` (not
|
|
1778
|
-
// \`runtime.siteId\`, which is the DEFAULT site) keys every site-scoped call
|
|
1779
|
-
// below; \`site\` selects the theme the flag helpers read.
|
|
1780
|
-
const { runtime, site, siteId } = await getActiveSite()
|
|
1781
|
-
const contentId = String(node['id'] ?? '')
|
|
1782
|
-
const contentType = String(node['contentTypeName'] ?? 'page')
|
|
1783
|
-
const title = String(node['title'] ?? 'Untitled')
|
|
1784
|
-
const body = (node['body'] as string) || ''
|
|
1785
|
-
const featured = mediaUrl(node['featuredImageId'])
|
|
1786
|
-
const layout = node['layout'] as LayoutDocument | null | undefined
|
|
1787
|
-
|
|
1788
|
-
// Resolved on every request so a signed-in admin gets the persistent browse
|
|
1789
|
-
// toolbar even when just browsing — ?kywi-edit=1 only decides whether the
|
|
1790
|
-
// page auto-enters the full overlay editor on mount (kywi-cms#93). An
|
|
1791
|
-
// anonymous/read-only visitor resolves to perms === null: zero extra client
|
|
1792
|
-
// JS, identical output to before this route ever heard of the overlay.
|
|
1793
|
-
const editRequested = (await searchParams)['kywi-edit'] === '1'
|
|
1794
|
-
const perms = await resolveEditPermissions()
|
|
1795
|
-
|
|
1796
|
-
// Server-side personalization (#50), evaluated once: the winning audience (or a
|
|
1797
|
-
// kywi_preview_init preview) drives page variants + variantContainers, and this
|
|
1798
|
-
// visitor's A/B arms are assigned deterministically. Opted-out / anonymous
|
|
1799
|
-
// visitors resolve to the default experience.
|
|
1800
|
-
const perso = await resolvePersonalization(runtime, layout)
|
|
1801
|
-
const selfIdWidget = await resolveSelfIdWidget(runtime, siteId)
|
|
1802
|
-
|
|
1803
|
-
// <head> injections (React hoists these): per-page JSON-LD gated on the
|
|
1804
|
-
// AX/JSON-LD setting, mapping the SAME node so page and schema agree (#56); the
|
|
1805
|
-
// Comments module's content-id anchor (#29); the audience/visitor ids for
|
|
1806
|
-
// client tooling (#50); and — when the theme opts in — the optional client
|
|
1807
|
-
// runtime that mounts the self-ID widget and re-evaluates audiences.
|
|
1808
|
-
//
|
|
1809
|
-
// \`head\` is a FUNCTION because JSON-LD must describe the layout THIS visitor
|
|
1810
|
-
// is served (#195): the served document only exists after the arms are pruned
|
|
1811
|
-
// below, and building the description from the STORED layout would ship the
|
|
1812
|
-
// DEFAULT arm's copy to a matched visitor — the #167 leak, through structured
|
|
1813
|
-
// data. The no-layout branch passes nothing, and JSON-LD then describes the
|
|
1814
|
-
// node's body/metaDescription/summary alone.
|
|
1815
|
-
const baseUrl = await requestBaseUrl()
|
|
1816
|
-
const headFor = (servedLayout?: unknown) => (
|
|
1817
|
-
<>
|
|
1818
|
-
<meta name="kywi:content-id" content={contentId} />
|
|
1819
|
-
<KywiJsonLd
|
|
1820
|
-
node={node}
|
|
1821
|
-
config={runtime.config}
|
|
1822
|
-
baseUrl={baseUrl}
|
|
1823
|
-
siteId={siteId}
|
|
1824
|
-
{...(servedLayout ? { layout: servedLayout } : {})}
|
|
1825
|
-
/>
|
|
1826
|
-
<AudienceMetaTags audienceId={perso.audienceId} visitorId={perso.visitorId} />
|
|
1827
|
-
{clientRuntimeEnabled(runtime, site) && perso.audiences.length > 0 ? (
|
|
1828
|
-
<PersonalizationRuntime
|
|
1829
|
-
audiences={perso.audiences}
|
|
1830
|
-
serverSignals={perso.signals}
|
|
1831
|
-
selfIdWidget={selfIdWidget}
|
|
1832
|
-
transparencyNotice={transparencyNoticeEnabled(runtime, site)}
|
|
1833
|
-
requireConsent={requireConsentEnabled(runtime, site)}
|
|
1834
|
-
/>
|
|
1835
|
-
) : null}
|
|
1836
|
-
</>
|
|
1837
|
-
)
|
|
1838
|
-
|
|
1839
|
-
// When the Layout tab has designed the page, render its region-based document
|
|
1840
|
-
// through core's own layout renderer (KywiLayout / KywiRegion). Before that:
|
|
1841
|
-
// hydrate every Feed Display module (#28), resolve connected reusable
|
|
1842
|
-
// components (#46), and supply the custom-module renderers (#48). Otherwise
|
|
1843
|
-
// fall back to the built-in Body rich text (+ any Featured Image).
|
|
1844
|
-
let content: React.ReactNode
|
|
1845
|
-
if (hasRenderableLayout(layout)) {
|
|
1846
|
-
// Apply the audience's page variant (and strip the other variants), then
|
|
1847
|
-
// hydrate feeds and resolve components on the layout THIS visitor sees.
|
|
1848
|
-
// variantContainer arms resolve at render time from \`personalization\`.
|
|
1849
|
-
const personalized = personalizeLayout(layout, perso.audienceId)
|
|
1850
|
-
const feedsHydrated = await hydrateLayoutFeeds(personalized, buildFeedResolver(runtime, siteId))
|
|
1851
|
-
// Resolve every navMenu/navigation/siteMap module placed in THIS layout
|
|
1852
|
-
// (menuSlug → a real menu; the tree otherwise) — the same seam as feeds,
|
|
1853
|
-
// so a nav module dropped into any region/section just works (#112).
|
|
1854
|
-
const currentPath = String(node['path'] ?? '/')
|
|
1855
|
-
const navHydrated = await hydrateLayoutNav(
|
|
1856
|
-
feedsHydrated,
|
|
1857
|
-
runtime.scope.menus.createHydrationResolver(siteId, currentPath),
|
|
1858
|
-
)
|
|
1859
|
-
// Linked components resolve HERE, on the server, into the document itself:
|
|
1860
|
-
// KywiLayout is a client component and the renderer's resolver props are
|
|
1861
|
-
// functions, which cannot cross the RSC boundary (#147).
|
|
1862
|
-
const hydrated = await resolveLayoutComponents(navHydrated, runtime, siteId)
|
|
1863
|
-
// LAST pass before the client boundary (#167): keep ONLY the arm this
|
|
1864
|
-
// visitor is served in every variantContainer / moduleVariantContainer.
|
|
1865
|
-
// KywiLayout is a client component, so anything still on the document here
|
|
1866
|
-
// is serialized into the page's RSC flight payload — arm SELECTION was
|
|
1867
|
-
// always server-side, but the losing arms crossed with it and were readable
|
|
1868
|
-
// in view-source. Pruning uses the same \`perso.personalization\` the
|
|
1869
|
-
// renderer is handed, so the markup is unchanged.
|
|
1870
|
-
//
|
|
1871
|
-
// Order matters: after component resolution (a container that is only a
|
|
1872
|
-
// \`componentId\` has no arms of its own to prune yet) and after the feed/nav
|
|
1873
|
-
// hydration passes. The front-edit overlay below is given the STORED
|
|
1874
|
-
// \`layout\`, never this — an editor needs every arm.
|
|
1875
|
-
const served = pruneLayoutToServedArms(hydrated, perso.personalization)
|
|
1876
|
-
content = (
|
|
1877
|
-
<article className="page page--layout" data-kywi-content-id={contentId}>
|
|
1878
|
-
{headFor(served)}
|
|
1879
|
-
<KywiLayout
|
|
1880
|
-
layout={served}
|
|
1881
|
-
personalization={perso.personalization}
|
|
1882
|
-
moduleComponents={moduleComponents}
|
|
1883
|
-
>
|
|
1884
|
-
{Object.keys(served.regions).map((name) => (
|
|
1885
|
-
<KywiRegion key={name} name={name} />
|
|
1886
|
-
))}
|
|
1887
|
-
</KywiLayout>
|
|
1888
|
-
</article>
|
|
1889
|
-
)
|
|
1890
|
-
} else {
|
|
1891
|
-
content = (
|
|
1892
|
-
<article className="page" data-kywi-content-id={contentId}>
|
|
1893
|
-
{headFor()}
|
|
1894
|
-
{featured ? <img className="page__featured" src={featured} alt="" /> : null}
|
|
1895
|
-
<h1 className="page__title">{title}</h1>
|
|
1896
|
-
{perms ? (
|
|
1897
|
-
<KywiEditableRegion region="main">
|
|
1898
|
-
<KywiEditableAttribute field="body" type="richtext" contentId={contentId}>
|
|
1899
|
-
{body ? <KywiBody content={body} /> : <p className="page__empty">This page has no content yet.</p>}
|
|
1900
|
-
</KywiEditableAttribute>
|
|
1901
|
-
</KywiEditableRegion>
|
|
1902
|
-
) : body ? (
|
|
1903
|
-
<KywiBody content={body} />
|
|
1904
|
-
) : (
|
|
1905
|
-
<p className="page__empty">This page has no content yet.</p>
|
|
1906
|
-
)}
|
|
1907
|
-
</article>
|
|
1908
|
-
)
|
|
1909
|
-
}
|
|
1910
|
-
|
|
1911
|
-
// Mount the overlay (client) for any authenticated admin (write role+) —
|
|
1912
|
-
// browse mode renders just the slim toolbar; ?kywi-edit=1 (editRequested)
|
|
1913
|
-
// additionally auto-starts the full overlay editor. Nothing mounts for an
|
|
1914
|
-
// anonymous or read-only visitor.
|
|
1915
|
-
if (perms) {
|
|
1916
|
-
return (
|
|
1917
|
-
<KywiFrontEdit
|
|
1918
|
-
canEdit={perms.canEdit}
|
|
1919
|
-
canPublish={perms.canPublish}
|
|
1920
|
-
editRequested={editRequested}
|
|
1921
|
-
contentId={contentId}
|
|
1922
|
-
contentType={contentType}
|
|
1923
|
-
pageTitle={title}
|
|
1924
|
-
pageStatus={String(node['status'] ?? '')}
|
|
1925
|
-
initialLayout={layout ?? { regions: { main: [] } }}
|
|
1926
|
-
adminHref={\`/admin/content/\${contentType}/\${contentId}\`}
|
|
1927
|
-
moduleComponents={moduleComponents}
|
|
1928
|
-
hostModules={config.modules ?? []}
|
|
1929
|
-
>
|
|
1930
|
-
{content}
|
|
1931
|
-
</KywiFrontEdit>
|
|
1932
|
-
)
|
|
1933
|
-
}
|
|
1934
|
-
|
|
1935
|
-
return content
|
|
1936
|
-
}
|
|
1937
|
-
`
|
|
1938
|
-
}
|
|
1939
|
-
|
|
1940
|
-
/**
|
|
1941
|
-
* Front-of-site edit overlay (client). Mounted by the public page for ANY
|
|
1942
|
-
* authenticated admin (write role+) — the page verifies the session cookie
|
|
1943
|
-
* server-side first (resolveEditPermissions, called unconditionally) and only
|
|
1944
|
-
* mounts this when that check passes, so canEdit is always true here.
|
|
1945
|
-
*
|
|
1946
|
-
* Two modes, same component:
|
|
1947
|
-
* - **Browse** (default) — core's slim `KywiEditToolbar`, a persistent
|
|
1948
|
-
* WordPress-admin-bar-style strip over the live page (page title, draft/
|
|
1949
|
-
* published status, "Edit this page", "Go to admin") — this is the
|
|
1950
|
-
* discoverability fix (kywi-cms#93): an admin browsing the public site
|
|
1951
|
-
* normally, with no query param, now sees the entry point. The editable
|
|
1952
|
-
* regions are also outlined via the `data-kywi-*` protocol.
|
|
1953
|
-
* - **Edit** (the toolbar's "Edit this page", or landing with
|
|
1954
|
-
* `?kywi-edit=1`) — the FULL `OverlayShell` layout editor, the same one the
|
|
1955
|
-
* admin app mounts, rendered from the same core module registry + custom
|
|
1956
|
-
* renderers. Save PUTs the layout document; Publish PUTs the layout then
|
|
1957
|
-
* flips status — exactly the API the admin editor uses. Entering/leaving
|
|
1958
|
-
* edit mode keeps `?kywi-edit=1` in sync via history.replaceState, so a
|
|
1959
|
-
* reload (or a shared link) lands back in the same mode.
|
|
1960
|
-
*
|
|
1961
|
-
* The OverlayShell is lazy-loaded (`next/dynamic`, client-only): its weight
|
|
1962
|
-
* (dnd-kit, canvas, side panels) is only fetched when an editor actually enters
|
|
1963
|
-
* edit mode, so the public browse bundle stays light.
|
|
1964
|
-
*/
|
|
1965
|
-
function frontEditOverlay() {
|
|
1966
|
-
return `'use client'
|
|
1967
|
-
import React from 'react'
|
|
1968
|
-
import dynamic from 'next/dynamic'
|
|
1969
|
-
import { KywiEditToolbar, useKywiEditMode } from '@kywi-software/core/scope-client'
|
|
1970
|
-
import { adminFetch } from '@kywi-software/core/host-client'
|
|
1971
|
-
import {
|
|
1972
|
-
createModuleRegistry,
|
|
1973
|
-
createThemeRegistry,
|
|
1974
|
-
BUILT_IN_MODULE_COMPONENTS,
|
|
1975
|
-
type LayoutDocument,
|
|
1976
|
-
type ModuleComponentMap,
|
|
1977
|
-
type ModuleConfig,
|
|
1978
|
-
} from '@kywi-software/core/layout'
|
|
1979
|
-
import type { SaveAction } from '@kywi-software/core/admin'
|
|
1980
|
-
|
|
1981
|
-
/**
|
|
1982
|
-
* Injects the admin design system's stylesheet as a plain \`<link>\` tag rather
|
|
1983
|
-
* than an ES \`import\` (kywi-cms#130 follow-up). A dynamic \`import('…/admin/
|
|
1984
|
-
* styles.css')\` still shipped the stylesheet on every public route that
|
|
1985
|
-
* reaches this factory, regardless of the \`next/dynamic\` wrapping around
|
|
1986
|
-
* it. A \`<link>\` created imperatively at runtime has no \`import\` statement
|
|
1987
|
-
* for Next's CSS collector to see, so it never enters the build's CSS graph.
|
|
1988
|
-
*
|
|
1989
|
-
* VERIFIED (in the reference app this template mirrors) against a real
|
|
1990
|
-
* \`next build && next start\`: an anonymous fetch of a real published content
|
|
1991
|
-
* page shows zero OverlayShell/editor.css/admin.css references in any of its
|
|
1992
|
-
* fetched resources. Fetching the SAME page against \`next dev\` still shows
|
|
1993
|
-
* every one of those markers regardless of this fix — \`next dev\` bundles far
|
|
1994
|
-
* more eagerly than a production build, for ALL routes, independent of any
|
|
1995
|
-
* dynamic()/runtime-injection technique. A generated app's own e2e coverage
|
|
1996
|
-
* of this (if any) needs to build for real, not assert against \`next dev\`.
|
|
1997
|
-
*
|
|
1998
|
-
* Two follow-ups from review:
|
|
1999
|
-
* - CACHE-BUSTING: \`/kywi-admin.css\` and \`/kywi-admin.css.version\` are both
|
|
2000
|
-
* synced from the installed \`@kywi-software/core\` package
|
|
2001
|
-
* (scripts/sync-kywi-admin-css.mjs, run via package.json's
|
|
2002
|
-
* \`sync:kywi-admin-css\` on every \`predev\`/\`prebuild\`) — mirroring how
|
|
2003
|
-
* \`public/kywi.js\` is synced from \`@kywi-software/js\`. The version
|
|
2004
|
-
* file's content becomes the \`?v=\` query string below, so a core upgrade
|
|
2005
|
-
* that changes the stylesheet always serves a URL a CDN/browser has never
|
|
2006
|
-
* cached, instead of a stale \`/kywi-admin.css\` response.
|
|
2007
|
-
* - FOUC: returns a Promise that resolves once the tag has actually loaded
|
|
2008
|
-
* (or failed to) — an existing, already-loaded tag resolves immediately;
|
|
2009
|
-
* a fresh or still-loading one resolves on its \`load\`/\`error\` event. The
|
|
2010
|
-
* dynamic() factory below awaits this ALONGSIDE the OverlayShell JS
|
|
2011
|
-
* import, so the editor's first paint never races its own stylesheet.
|
|
2012
|
-
*/
|
|
2013
|
-
function ensureAdminStylesheet(): Promise<void> {
|
|
2014
|
-
if (typeof document === 'undefined') return Promise.resolve()
|
|
2015
|
-
const existing = document.querySelector<HTMLLinkElement>('link[data-kywi-admin-css]')
|
|
2016
|
-
if (existing) {
|
|
2017
|
-
// \`.sheet\` is non-null only once the stylesheet has actually parsed —
|
|
2018
|
-
// resolve immediately rather than re-attaching listeners to an event
|
|
2019
|
-
// that already fired.
|
|
2020
|
-
if (existing.sheet) return Promise.resolve()
|
|
2021
|
-
return new Promise((resolve) => {
|
|
2022
|
-
existing.addEventListener('load', () => resolve(), { once: true })
|
|
2023
|
-
existing.addEventListener('error', () => resolve(), { once: true })
|
|
2024
|
-
})
|
|
2025
|
-
}
|
|
2026
|
-
return fetch('/kywi-admin.css.version')
|
|
2027
|
-
.then((res) => (res.ok ? res.text() : ''))
|
|
2028
|
-
.catch(() => '')
|
|
2029
|
-
.then(
|
|
2030
|
-
(version) =>
|
|
2031
|
-
new Promise<void>((resolve) => {
|
|
2032
|
-
const link = document.createElement('link')
|
|
2033
|
-
link.rel = 'stylesheet'
|
|
2034
|
-
const v = version.trim()
|
|
2035
|
-
link.href = v ? \`/kywi-admin.css?v=\${encodeURIComponent(v)}\` : '/kywi-admin.css'
|
|
2036
|
-
link.dataset.kywiAdminCss = 'true'
|
|
2037
|
-
// A load OR error either way lets the caller proceed — a stylesheet
|
|
2038
|
-
// that 404s must never permanently block the editor from opening.
|
|
2039
|
-
link.addEventListener('load', () => resolve(), { once: true })
|
|
2040
|
-
link.addEventListener('error', () => resolve(), { once: true })
|
|
2041
|
-
document.head.appendChild(link)
|
|
2042
|
-
}),
|
|
2043
|
-
)
|
|
2044
|
-
}
|
|
2045
|
-
|
|
2046
|
-
// Lazy-load the full layout editor bundle: the shell's JS (dnd-kit, canvas,
|
|
2047
|
-
// panels) is pulled INSIDE this factory, so it enters the module graph only
|
|
2048
|
-
// when an editor opens the overlay — never in the public browse bundle a
|
|
2049
|
-
// visitor downloads. The stylesheet is handled separately — see
|
|
2050
|
-
// \`ensureAdminStylesheet\` above — since a css import here, even a dynamic
|
|
2051
|
-
// one, does not behave like the JS import right below it. Both are awaited
|
|
2052
|
-
// together so the editor never paints ahead of its own stylesheet (FOUC).
|
|
2053
|
-
const OverlayShell = dynamic(
|
|
2054
|
-
async () => {
|
|
2055
|
-
const [, mod] = await Promise.all([
|
|
2056
|
-
ensureAdminStylesheet(),
|
|
2057
|
-
import('@kywi-software/core/admin'),
|
|
2058
|
-
])
|
|
2059
|
-
return mod.OverlayShell
|
|
2060
|
-
},
|
|
2061
|
-
{ ssr: false },
|
|
2062
|
-
)
|
|
2063
|
-
|
|
2064
|
-
export interface KywiFrontEditProps {
|
|
2065
|
-
canEdit: boolean
|
|
2066
|
-
canPublish: boolean
|
|
2067
|
-
/** True when the page was requested with \`?kywi-edit=1\` — auto-starts the full overlay editor on mount. */
|
|
2068
|
-
editRequested: boolean
|
|
2069
|
-
contentId: string
|
|
2070
|
-
contentType: string
|
|
2071
|
-
pageTitle: string
|
|
2072
|
-
pageStatus: string
|
|
2073
|
-
/** The page's saved layout document (empty regions when it has none yet). */
|
|
2074
|
-
initialLayout: LayoutDocument
|
|
2075
|
-
/** Deep link to this page in the full admin editor. */
|
|
2076
|
-
adminHref: string
|
|
2077
|
-
/** Custom (defineModule) renderers, shared with the public layout + admin (#48). */
|
|
2078
|
-
moduleComponents?: ModuleComponentMap
|
|
2079
|
-
/** Custom (defineModule) module CONFIGS from kywi.config.ts — gives the overlay
|
|
2080
|
-
* editor each custom module's prop definitions, so the props rail and inline
|
|
2081
|
-
* text editing work for them exactly as in the admin editor (kywi-cms#118). */
|
|
2082
|
-
hostModules?: ModuleConfig[]
|
|
2083
|
-
children: React.ReactNode
|
|
2084
|
-
}
|
|
2085
|
-
|
|
2086
|
-
/**
|
|
2087
|
-
* Wraps the public page with the front-of-site edit affordance. The page
|
|
2088
|
-
* renders this for ANY signed-in admin (write role+) — canEdit is always true
|
|
2089
|
-
* here, since the page only mounts KywiFrontEdit once resolveEditPermissions
|
|
2090
|
-
* has already confirmed it server-side. Browse mode shows the persistent
|
|
2091
|
-
* KywiEditToolbar (the primary discoverability fix, kywi-cms#93); the full
|
|
2092
|
-
* OverlayShell editor only mounts once edit mode actually starts — either the
|
|
2093
|
-
* toolbar's "Edit this page" button, or landing with \`?kywi-edit=1\`
|
|
2094
|
-
* (editRequested), which auto-starts it once on mount.
|
|
2095
|
-
*/
|
|
2096
|
-
export function KywiFrontEdit({
|
|
2097
|
-
canEdit,
|
|
2098
|
-
canPublish,
|
|
2099
|
-
editRequested,
|
|
2100
|
-
contentId,
|
|
2101
|
-
contentType,
|
|
2102
|
-
pageTitle,
|
|
2103
|
-
pageStatus,
|
|
2104
|
-
initialLayout,
|
|
2105
|
-
adminHref,
|
|
2106
|
-
moduleComponents = {},
|
|
2107
|
-
hostModules = [],
|
|
2108
|
-
children,
|
|
2109
|
-
}: KywiFrontEditProps) {
|
|
2110
|
-
const edit = useKywiEditMode({ canEdit, canPublish })
|
|
2111
|
-
|
|
2112
|
-
// ?kywi-edit=1 (editRequested) means "enter edit mode now" — flip it on once
|
|
2113
|
-
// after mount. Without it the page mounts straight into browse mode (the
|
|
2114
|
-
// persistent toolbar), which is the common case now that KywiFrontEdit
|
|
2115
|
-
// renders for every signed-in admin, not only deep-linked ones.
|
|
2116
|
-
const { startEdit, endEdit } = edit
|
|
2117
|
-
React.useEffect(() => {
|
|
2118
|
-
if (editRequested) startEdit()
|
|
2119
|
-
}, [editRequested, startEdit])
|
|
2120
|
-
|
|
2121
|
-
// Registries + renderers for the editor: the module registry carries each
|
|
2122
|
-
// module's prop definitions (built-ins + this app's kywi.config.ts modules —
|
|
2123
|
-
// without the host list, custom modules render but are uneditable, kywi-cms#118),
|
|
2124
|
-
// merged with the custom renderers from lib/modules (#48).
|
|
2125
|
-
const moduleRegistry = React.useMemo(
|
|
2126
|
-
() => createModuleRegistry(hostModules ?? []),
|
|
2127
|
-
[hostModules],
|
|
2128
|
-
)
|
|
2129
|
-
const themeRegistry = React.useMemo(() => createThemeRegistry(), [])
|
|
2130
|
-
const editorComponents = React.useMemo(
|
|
2131
|
-
() => ({ ...BUILT_IN_MODULE_COMPONENTS, ...moduleComponents }),
|
|
2132
|
-
[moduleComponents],
|
|
2133
|
-
)
|
|
2134
|
-
|
|
2135
|
-
// Persist the edited layout to the same content API the admin editor uses.
|
|
2136
|
-
const persistLayout = React.useCallback(
|
|
2137
|
-
async (next: LayoutDocument) => {
|
|
2138
|
-
const res = await fetch(\`/api/v1/content/\${contentType}/\${contentId}/layout\`, {
|
|
2139
|
-
method: 'PUT',
|
|
2140
|
-
credentials: 'same-origin',
|
|
2141
|
-
headers: { 'Content-Type': 'application/json' },
|
|
2142
|
-
body: JSON.stringify(next),
|
|
2143
|
-
})
|
|
2144
|
-
return res.ok
|
|
2145
|
-
},
|
|
2146
|
-
[contentType, contentId],
|
|
2147
|
-
)
|
|
2148
|
-
|
|
2149
|
-
const handleSave = React.useCallback(
|
|
2150
|
-
async (next: LayoutDocument, _action: SaveAction) => {
|
|
2151
|
-
await persistLayout(next)
|
|
2152
|
-
endEdit()
|
|
2153
|
-
},
|
|
2154
|
-
[persistLayout, endEdit],
|
|
2155
|
-
)
|
|
2156
|
-
|
|
2157
|
-
const handlePublish = React.useCallback(
|
|
2158
|
-
async (next: LayoutDocument, _action: SaveAction) => {
|
|
2159
|
-
const ok = await persistLayout(next)
|
|
2160
|
-
if (ok) {
|
|
2161
|
-
// Best-effort status flip; the layout itself is already persisted above.
|
|
2162
|
-
await fetch(\`/api/v1/content/\${contentType}/\${contentId}\`, {
|
|
2163
|
-
method: 'PUT',
|
|
2164
|
-
credentials: 'same-origin',
|
|
2165
|
-
headers: { 'Content-Type': 'application/json' },
|
|
2166
|
-
body: JSON.stringify({ status: 'published' }),
|
|
2167
|
-
}).catch(() => undefined)
|
|
2168
|
-
}
|
|
2169
|
-
endEdit()
|
|
2170
|
-
},
|
|
2171
|
-
[persistLayout, contentType, contentId, endEdit],
|
|
2172
|
-
)
|
|
2173
|
-
|
|
2174
|
-
// Browse-mode one-click publish from the toolbar (no editor needed).
|
|
2175
|
-
const handleToolbarPublish = React.useCallback(async () => {
|
|
2176
|
-
const res = await adminFetch(\`/api/v1/content/by-id/\${contentId}/publish\`, { method: 'POST' })
|
|
2177
|
-
if (res.ok) window.location.reload()
|
|
2178
|
-
}, [contentId])
|
|
2179
|
-
|
|
2180
|
-
// Edit mode: the full layout editor, in place, over the live page.
|
|
2181
|
-
// NOTE: no \`kywi-admin-shell\` here (kywi-cms#94). That class is the admin
|
|
2182
|
-
// design system's base+reset — font family, font size, colours, heading
|
|
2183
|
-
// resets — and wrapping the page in it re-typesets the very content the
|
|
2184
|
-
// owner is trying to judge at real width. The editor chrome carries its own
|
|
2185
|
-
// styling; the page keeps the site's.
|
|
2186
|
-
if (edit.isEditMode && edit.canEdit) {
|
|
2187
|
-
return (
|
|
2188
|
-
<div className="kywi-frontend-edit">
|
|
2189
|
-
<OverlayShell
|
|
2190
|
-
editMode={edit}
|
|
2191
|
-
initialLayout={initialLayout}
|
|
2192
|
-
contentId={contentId}
|
|
2193
|
-
contentType={contentType}
|
|
2194
|
-
pageTitle={pageTitle}
|
|
2195
|
-
/* The page's own body wrapper, so the site's page-level CSS (width,
|
|
2196
|
-
gutters, rhythm) still applies while editing in place. */
|
|
2197
|
-
pageClassName="page page--layout"
|
|
2198
|
-
themeName="default"
|
|
2199
|
-
themeRegistry={themeRegistry}
|
|
2200
|
-
moduleRegistry={moduleRegistry}
|
|
2201
|
-
moduleComponents={editorComponents}
|
|
2202
|
-
onSave={handleSave}
|
|
2203
|
-
onPublish={handlePublish}
|
|
2204
|
-
/>
|
|
2205
|
-
</div>
|
|
2206
|
-
)
|
|
2207
|
-
}
|
|
2208
|
-
|
|
2209
|
-
// Browse mode: slim toolbar + editable-region outlines over the live page.
|
|
2210
|
-
return (
|
|
2211
|
-
<>
|
|
2212
|
-
<KywiEditToolbar
|
|
2213
|
-
isEditMode={edit.isEditMode}
|
|
2214
|
-
canEdit={edit.canEdit}
|
|
2215
|
-
canPublish={edit.canPublish}
|
|
2216
|
-
onToggleEdit={edit.toggleEdit}
|
|
2217
|
-
onPublish={handleToolbarPublish}
|
|
2218
|
-
pageTitle={pageTitle}
|
|
2219
|
-
pageStatus={pageStatus}
|
|
2220
|
-
adminHref={adminHref}
|
|
2221
|
-
/>
|
|
2222
|
-
{/* Toggling this attribute drives the editable-region outlines shipped in
|
|
2223
|
-
@kywi-software/core/site/styles.css. */}
|
|
2224
|
-
<div data-kywi-editing={edit.isEditMode ? '' : undefined}>{children}</div>
|
|
2225
|
-
</>
|
|
2226
|
-
)
|
|
2227
|
-
}
|
|
2228
|
-
`
|
|
2229
|
-
}
|
|
2230
|
-
|
|
2231
|
-
/**
|
|
2232
|
-
* Shared `/kywi.js` script-injection primitive (kywi-cms#114). Two independent
|
|
2233
|
-
* triggers can each want the browser bundle on the page: the site layout's nav
|
|
2234
|
-
* (`<KywiJsLoader>`, purely for the hover-intent/keyboard/viewport-flip
|
|
2235
|
-
* enhancement `initNavMenus()` applies unconditionally once the script boots)
|
|
2236
|
-
* and `<PersonalizationRuntime>` (which additionally waits on
|
|
2237
|
-
* `window.Kywi.bootAudienceEngine`). Before this fix only the personalization
|
|
2238
|
-
* runtime ever injected the tag, so a site with `personalization.clientRuntime`
|
|
2239
|
-
* off — or simply no active audiences — never got the nav enhancement either,
|
|
2240
|
-
* even though the nav renders fully without it (kywi-cms#111's JS-off contract)
|
|
2241
|
-
* and would only ever gain from it. `ensureKywiJsScript` is idempotent:
|
|
2242
|
-
* whichever caller mounts first creates the ONE `<script data-kywi-js>` tag,
|
|
2243
|
-
* every other caller finds it already there — so both triggers being true at
|
|
2244
|
-
* once never loads the bundle twice.
|
|
2245
|
-
*/
|
|
2246
|
-
function kywiJsLoaderLib() {
|
|
2247
|
-
return `export function ensureKywiJsScript(): HTMLScriptElement | null {
|
|
2248
|
-
if (typeof document === 'undefined') return null
|
|
2249
|
-
const existing = document.querySelector<HTMLScriptElement>('script[data-kywi-js]')
|
|
2250
|
-
if (existing) return existing
|
|
2251
|
-
const script = document.createElement('script')
|
|
2252
|
-
script.src = '/kywi.js'
|
|
2253
|
-
script.async = true
|
|
2254
|
-
script.dataset.kywiJs = 'true'
|
|
2255
|
-
document.body.appendChild(script)
|
|
2256
|
-
return script
|
|
2257
|
-
}
|
|
2258
|
-
`
|
|
2259
|
-
}
|
|
2260
|
-
|
|
2261
821
|
/**
|
|
2262
|
-
*
|
|
2263
|
-
* personalization (kywi-cms#114). Rendered by the site layout whenever the
|
|
2264
|
-
* resolved header menu is non-empty — the same condition `<SiteNav>` itself
|
|
2265
|
-
* gates on before it renders a `[data-kywi-nav]` root — so this mounts exactly
|
|
2266
|
-
* when there is a nav for `initNavMenus()` to enhance. Does nothing beyond
|
|
2267
|
-
* ensuring the script tag exists: `Kywi.boot()` runs `initNavMenus()`
|
|
2268
|
-
* unconditionally as part of its own bootstrap once the script loads, and
|
|
2269
|
-
* never touches personalization on its own.
|
|
2270
|
-
*/
|
|
2271
|
-
function kywiJsLoaderComponent() {
|
|
2272
|
-
return `'use client'
|
|
2273
|
-
|
|
2274
|
-
import { useEffect } from 'react'
|
|
2275
|
-
import { ensureKywiJsScript } from '../lib/kywi-js-loader'
|
|
2276
|
-
|
|
2277
|
-
export function KywiJsLoader() {
|
|
2278
|
-
useEffect(() => {
|
|
2279
|
-
ensureKywiJsScript()
|
|
2280
|
-
}, [])
|
|
2281
|
-
|
|
2282
|
-
return null
|
|
2283
|
-
}
|
|
2284
|
-
`
|
|
2285
|
-
}
|
|
2286
|
-
|
|
2287
|
-
/**
|
|
2288
|
-
* Client personalization runtime (kywi-cms#50). The SERVER already resolved and
|
|
2289
|
-
* rendered the correct audience/experiment variant and set the ids in <head>;
|
|
2290
|
-
* this optional client layer adds live re-evaluation, the self-ID widget, the
|
|
2291
|
-
* transparency bar, and behavioral-signal collection by booting the
|
|
2292
|
-
* @kywi-software/js browser bundle from /kywi.js. It is best-effort and mounted
|
|
2293
|
-
* only when the theme opts in (theme.personalization.clientRuntime), so the site
|
|
2294
|
-
* stays dependency-free by default: drop the built @kywi-software/js bundle at
|
|
2295
|
-
* public/kywi.js to enable it (see README → "Personalization"). Without it the
|
|
2296
|
-
* server-rendered variant is exactly what every visitor sees.
|
|
822
|
+
* The public catch-all — a thin delegate over `createPublicPage`.
|
|
2297
823
|
*
|
|
2298
|
-
*
|
|
2299
|
-
*
|
|
2300
|
-
*
|
|
2301
|
-
*
|
|
2302
|
-
*
|
|
2303
|
-
|
|
2304
|
-
function personalizationRuntime() {
|
|
2305
|
-
return `'use client'
|
|
2306
|
-
|
|
2307
|
-
import React, { useEffect } from 'react'
|
|
2308
|
-
import type { Audience, VisitorSignals } from '@kywi-software/core/audiences/types'
|
|
2309
|
-
import type { PublicSelfIdWidget } from '../lib/site'
|
|
2310
|
-
import { ensureKywiJsScript } from '../lib/kywi-js-loader'
|
|
2311
|
-
|
|
2312
|
-
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
2313
|
-
declare global {
|
|
2314
|
-
interface Window {
|
|
2315
|
-
Kywi?: any
|
|
2316
|
-
kywi?: any
|
|
2317
|
-
}
|
|
2318
|
-
}
|
|
2319
|
-
|
|
2320
|
-
interface PersonalizationRuntimeProps {
|
|
2321
|
-
/** Active audiences the client re-evaluates (rule definitions, no PII). */
|
|
2322
|
-
audiences: Audience[]
|
|
2323
|
-
/** Server-resolved signals (UTM / referrer / identity / opt-out) for parity. */
|
|
2324
|
-
serverSignals: Partial<VisitorSignals>
|
|
2325
|
-
/** Resolved self-ID widget config; when present its trigger/frequency mount it. */
|
|
2326
|
-
selfIdWidget?: PublicSelfIdWidget | null
|
|
2327
|
-
/**
|
|
2328
|
-
* \`personalization.transparencyNotice.enabled\` — false suppresses the
|
|
2329
|
-
* automatic global transparency panel; the visitor can still open it
|
|
2330
|
-
* deliberately through a \`personalizationBadge\` module. Defaults to true.
|
|
2331
|
-
*/
|
|
2332
|
-
transparencyNotice?: boolean
|
|
2333
|
-
/**
|
|
2334
|
-
* \`personalization.requireConsent\` — false turns the client's consent gate
|
|
2335
|
-
* off for a site that collects consent with external tooling. Defaults to
|
|
2336
|
-
* true, so the resolved audience is only remembered for a consenting visitor
|
|
2337
|
-
* (kywi-cms#91).
|
|
2338
|
-
*/
|
|
2339
|
-
requireConsent?: boolean
|
|
2340
|
-
}
|
|
2341
|
-
|
|
2342
|
-
/**
|
|
2343
|
-
* Ensures /kywi.js is on the page, then boots the audience data-layer.
|
|
2344
|
-
* bootAudienceEngine reads the opt-out cookie itself and resolves opted-out
|
|
2345
|
-
* visitors to the default experience, so opt-out is respected end to end.
|
|
2346
|
-
* Rendered only when theme.personalization.clientRuntime is on.
|
|
824
|
+
* What used to be 279 emitted lines (content resolution, SEO metadata + locale
|
|
825
|
+
* alternates, JSON-LD over the served document, audience meta tags, server-side
|
|
826
|
+
* personalization and A/B assignment, the self-ID widget, arm pruning, the
|
|
827
|
+
* front-edit overlay gate) is `@kywi-software/core/next`. The generated file
|
|
828
|
+
* supplies the two project-specific inputs `layered-architecture DESIGN.md` §2
|
|
829
|
+
* counted — the wiring runtime and this app's custom module renderers.
|
|
2347
830
|
*
|
|
2348
|
-
*
|
|
2349
|
-
*
|
|
2350
|
-
*
|
|
2351
|
-
*
|
|
831
|
+
* `dynamic` is written as a LITERAL on purpose: Next parses route segment
|
|
832
|
+
* config statically and fails the build on `export const dynamic = page.dynamic`
|
|
833
|
+
* ("Unsupported node type MemberExpression"). Core types the field as the
|
|
834
|
+
* literal `'force-dynamic'` so the two still cannot drift.
|
|
2352
835
|
*/
|
|
2353
|
-
|
|
2354
|
-
|
|
2355
|
-
|
|
2356
|
-
|
|
2357
|
-
|
|
2358
|
-
|
|
2359
|
-
|
|
2360
|
-
|
|
2361
|
-
|
|
2362
|
-
.bootAudienceEngine({
|
|
2363
|
-
audiences,
|
|
2364
|
-
currentPath,
|
|
2365
|
-
serverSignals,
|
|
2366
|
-
...(selfIdWidget
|
|
2367
|
-
? { selfIdWidget: { ...selfIdWidget, audiences, currentPath } }
|
|
2368
|
-
: {}),
|
|
2369
|
-
...(transparencyNotice === false ? { transparencyNotice: false } : {}),
|
|
2370
|
-
...(requireConsent === false ? { requireConsent: false } : {}),
|
|
2371
|
-
})
|
|
2372
|
-
.catch(() => {
|
|
2373
|
-
/* client personalization is best-effort; the server already rendered defaults */
|
|
2374
|
-
})
|
|
2375
|
-
}
|
|
2376
|
-
|
|
2377
|
-
function whenReady(): void {
|
|
2378
|
-
if (ready()) return boot()
|
|
2379
|
-
let tries = 0
|
|
2380
|
-
const timer = setInterval(() => {
|
|
2381
|
-
tries += 1
|
|
2382
|
-
if (ready()) {
|
|
2383
|
-
clearInterval(timer)
|
|
2384
|
-
boot()
|
|
2385
|
-
} else if (tries > 50) {
|
|
2386
|
-
clearInterval(timer)
|
|
2387
|
-
}
|
|
2388
|
-
}, 60)
|
|
2389
|
-
}
|
|
836
|
+
function siteSlugPage() {
|
|
837
|
+
return `${renderStamp()}
|
|
838
|
+
// The public catch-all: "/" and every published page at its Site Tree path.
|
|
839
|
+
// Content resolution, SEO metadata, JSON-LD, personalization + A/B assignment
|
|
840
|
+
// and the front-edit overlay all live in @kywi-software/core/next; this file
|
|
841
|
+
// wires in THIS app's runtime and its custom module renderers (lib/modules.tsx).
|
|
842
|
+
import { createPublicPage } from '@kywi-software/core/next'
|
|
843
|
+
import { kywi } from '../../../lib/kywi'
|
|
844
|
+
import { moduleComponents } from '../../../lib/modules'
|
|
2390
845
|
|
|
2391
|
-
|
|
2392
|
-
// site layout's <KywiJsLoader> injects it independently, purely for nav
|
|
2393
|
-
// enhancement, whenever the site has a nav. \`ensureKywiJsScript\` is the
|
|
2394
|
-
// shared dedup primitive: it returns the existing tag if one is already
|
|
2395
|
-
// there, so this never creates a second one.
|
|
2396
|
-
const script = ensureKywiJsScript()
|
|
2397
|
-
if (ready()) boot()
|
|
2398
|
-
else script?.addEventListener('load', whenReady)
|
|
2399
|
-
|
|
2400
|
-
return () => {
|
|
2401
|
-
cancelled = true
|
|
2402
|
-
}
|
|
2403
|
-
// Boot once on mount; audiences/serverSignals are per-request stable.
|
|
2404
|
-
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
2405
|
-
}, [])
|
|
846
|
+
const page = createPublicPage({ runtime: kywi, modules: moduleComponents })
|
|
2406
847
|
|
|
2407
|
-
|
|
2408
|
-
|
|
848
|
+
export default page.default
|
|
849
|
+
export const generateMetadata = page.generateMetadata
|
|
850
|
+
// A LITERAL, never \`page.dynamic\`: Next parses route segment config statically
|
|
851
|
+
// and fails the build on a MemberExpression.
|
|
852
|
+
export const dynamic = 'force-dynamic'
|
|
2409
853
|
`
|
|
2410
854
|
}
|
|
2411
855
|
|
|
@@ -2555,7 +999,7 @@ import { KywiAdminApp } from '@kywi-software/core/admin/app'
|
|
|
2555
999
|
import { toAdminRuntimeConfig, resolveSurfaceState } from '@kywi-software/core/admin/server'
|
|
2556
1000
|
// CRITICAL: load the admin design system once for the whole mount.
|
|
2557
1001
|
import '@kywi-software/core/admin/styles.css'
|
|
2558
|
-
import kywiConfig from '../../../
|
|
1002
|
+
import kywiConfig from '../../../kywi.config'
|
|
2559
1003
|
// Custom (defineModule) renderers, shared with the public layout so the Layout
|
|
2560
1004
|
// editor canvas renders them the same as the live site (#48). Empty by default.
|
|
2561
1005
|
import { moduleComponents } from '../../../lib/modules'
|
|
@@ -2732,7 +1176,8 @@ page: add sections and modules, then **Save** (PUTs the layout) or **Publish**
|
|
|
2732
1176
|
(saves + publishes). **Done** returns you to the browse toolbar. Entering or
|
|
2733
1177
|
leaving the editor keeps \`?kywi-edit=1\` in the URL in sync, so reloading (or
|
|
2734
1178
|
sharing the link) lands back in the same mode. It all lives in
|
|
2735
|
-
|
|
1179
|
+
\`@kywi-software/core/next\` (mounted by the generated public page), so it
|
|
1180
|
+
upgrades with the package; the editor bundle (and the admin stylesheet) is
|
|
2736
1181
|
lazy-loaded, so pages your visitors see never carry its weight — an anonymous
|
|
2737
1182
|
or read-only visitor gets no toolbar and no extra client JS. Custom
|
|
2738
1183
|
\`defineModule\` types from \`kywi.config.ts\` also appear in the front-of-site
|
|
@@ -2776,13 +1221,13 @@ Audiences, experiments and the self-ID widget you configure in the admin resolve
|
|
|
2776
1221
|
The **self-ID widget**, live re-evaluation, the transparency bar and behavioral
|
|
2777
1222
|
signals are an optional *client* layer. Enable it by setting
|
|
2778
1223
|
\`personalization: { clientRuntime: true }\` on your theme in \`kywi.config.ts\` and
|
|
2779
|
-
dropping the built \`@kywi-software/js\` browser bundle at \`public/kywi.js\`;
|
|
2780
|
-
|
|
2781
|
-
it, the server-rendered variant is what every visitor sees.
|
|
1224
|
+
dropping the built \`@kywi-software/js\` browser bundle at \`public/kywi.js\`;
|
|
1225
|
+
core's \`PersonalizationRuntime\` (mounted by the public page) loads it
|
|
1226
|
+
best-effort. Without it, the server-rendered variant is what every visitor sees.
|
|
2782
1227
|
|
|
2783
1228
|
The same \`public/kywi.js\` bundle also drives the header nav's hover-intent,
|
|
2784
1229
|
Escape/arrow-key and viewport-edge-flip enhancement — independent of
|
|
2785
|
-
personalization.
|
|
1230
|
+
personalization. Core's site layout loads it whenever the site has
|
|
2786
1231
|
a nav, whether or not \`clientRuntime\` is on, so the nav gets that polish on
|
|
2787
1232
|
every site once the bundle is in place; the nav renders and works fully without
|
|
2788
1233
|
it either way. (\`public/kywi-admin.css\`, the front-of-site editor's stylesheet,
|
|
@@ -2880,16 +1325,25 @@ kywi.config.ts your config: sites, themes, content types, cus
|
|
|
2880
1325
|
AGENTS.md guidance for AI agents working on this site (Kywi's building patterns)
|
|
2881
1326
|
CLAUDE.md points AI agents to AGENTS.md
|
|
2882
1327
|
${SKILLS.map(({ slug }) => `.claude/skills/${slug}/SKILL.md ${slug.replace(/^kywi-/, '')} skill (loaded automatically)`).join('\n')}
|
|
2883
|
-
middleware.ts auth gate
|
|
1328
|
+
middleware.ts re-exports core's middleware (auth gate, session refresh, cookie→bearer)
|
|
2884
1329
|
next.config.mjs required Next config to consume @kywi-software/core
|
|
2885
|
-
lib/kywi.ts
|
|
2886
|
-
lib/config.ts single import path for kywi.config.ts
|
|
1330
|
+
lib/kywi.ts the ONE wiring point: kywi.config.ts → core's render path
|
|
2887
1331
|
app/api/v1/[...kywi]/route.ts the versioned API (delegates to core)
|
|
2888
1332
|
app/admin/[[...admin]]/page.tsx mounts the FULL core admin (all surfaces) at /admin
|
|
2889
1333
|
lib/modules.tsx custom (defineModule) module renderers (admin + public)
|
|
2890
|
-
app/{llms,robots,sitemap,…} root AX routes (llms.txt, robots.txt, sitemap.xml, …)${a.mode === 'coupled' ? '\napp/(site)/layout.tsx public shell:
|
|
1334
|
+
app/{llms,robots,sitemap,…} root AX routes (llms.txt, robots.txt, sitemap.xml, …)${a.mode === 'coupled' ? '\napp/(site)/layout.tsx public shell (delegate): your brand, nav + stylesheets\napp/(site)/site.css your site chrome styles (edit freely)\napp/(site)/[[...slug]]/page.tsx renders published pages (delegate): wires in your module map\ncomponents/site-nav.tsx client wrapper around the shared nav renderer (header + footer)' : '\napp/page.tsx returns 404 (no public rendering in this mode)'}
|
|
2891
1335
|
\`\`\`
|
|
2892
|
-
`
|
|
1336
|
+
${a.mode === 'coupled' ? `
|
|
1337
|
+
\`lib/kywi.ts\`, \`middleware.ts\` and the two \`app/(site)\` route files are
|
|
1338
|
+
**thin, version-stamped delegates** (each opens with a \`// kywi-render v…\`
|
|
1339
|
+
comment; nothing else in the project carries one). The public render
|
|
1340
|
+
path itself — content and locale resolution, SEO metadata, JSON-LD, feed and nav
|
|
1341
|
+
hydration, personalization, A/B assignment and the front-of-site editor — lives
|
|
1342
|
+
in \`@kywi-software/core/next\`, so \`pnpm up @kywi-software/core\` upgrades it
|
|
1343
|
+
instead of leaving you to hand-merge a changelog into your own copy. What stays
|
|
1344
|
+
yours: \`kywi.config.ts\`, \`app/(site)/site.css\`, \`lib/modules.tsx\` and
|
|
1345
|
+
\`components/site-nav.tsx\`.
|
|
1346
|
+
` : ''}`
|
|
2893
1347
|
}
|
|
2894
1348
|
|
|
2895
1349
|
// ── helpers ───────────────────────────────────────────────────────────────────
|
|
@@ -2901,9 +1355,17 @@ function slugify(name) {
|
|
|
2901
1355
|
.replace(/^_+|_+$/g, '') || 'kywi_app'
|
|
2902
1356
|
}
|
|
2903
1357
|
|
|
2904
|
-
/**
|
|
2905
|
-
|
|
2906
|
-
|
|
1358
|
+
/**
|
|
1359
|
+
* Escape a value interpolated into a SINGLE-QUOTED TypeScript string literal, so
|
|
1360
|
+
* it cannot break out of the quotes or the line. Replaces the old
|
|
1361
|
+
* `escapeJsxText`: since plan E1 the project name reaches the generated site
|
|
1362
|
+
* layout as `brand: { label: '…' }` — a string literal argument — rather than as
|
|
1363
|
+
* JSX text inside the header markup.
|
|
1364
|
+
*/
|
|
1365
|
+
function escapeJsString(value) {
|
|
1366
|
+
return String(value)
|
|
1367
|
+
.replace(/[\\']/g, (ch) => `\\${ch}`)
|
|
1368
|
+
.replace(/\r?\n/g, '\\n')
|
|
2907
1369
|
}
|
|
2908
1370
|
|
|
2909
1371
|
// ── Agent guidance (AGENTS.md / CLAUDE.md) ──────────────────────────────────────
|
|
@@ -3027,15 +1489,22 @@ export const AGENTS_LANDMARK_PATHS = {
|
|
|
3027
1489
|
* @property {boolean} adminHost app/admin/[[...admin]]/page.tsx present
|
|
3028
1490
|
* @property {boolean} moduleMap lib/modules.tsx present
|
|
3029
1491
|
* @property {boolean} middleware middleware.ts present
|
|
3030
|
-
* @property {boolean} libSite lib/site.ts present
|
|
1492
|
+
* @property {boolean} libSite lib/site.ts present — a LEGACY landmark since
|
|
1493
|
+
* plan E1: the scaffold no longer emits it (the public-render helpers ship in
|
|
1494
|
+
* `@kywi-software/core/next`), but a project scaffolded before E1 still has
|
|
1495
|
+
* its own copy and the header must describe that honestly.
|
|
3031
1496
|
* @property {boolean} sitePage app/(site)/[[...slug]]/page.tsx present (renders public pages)
|
|
3032
1497
|
* @property {boolean} headlessPage app/page.tsx present (the headless/decoupled 404 root)
|
|
3033
1498
|
*/
|
|
3034
1499
|
|
|
3035
1500
|
/**
|
|
3036
1501
|
* The landmark set a FRESH scaffold of the given mode has — derived statically
|
|
3037
|
-
* from the mode, never from the filesystem
|
|
3038
|
-
*
|
|
1502
|
+
* from the mode, never from the filesystem.
|
|
1503
|
+
*
|
|
1504
|
+
* `libSite` is FALSE in every mode since plan E1: a freshly scaffolded project
|
|
1505
|
+
* has no `lib/site.ts` at all, because the public-render helpers ship in
|
|
1506
|
+
* `@kywi-software/core/next`. It stays in the type because
|
|
1507
|
+
* {@link detectAgentsLandmarks} still finds one in a pre-E1 project.
|
|
3039
1508
|
* @param {'coupled'|'headless'|'decoupled'} mode
|
|
3040
1509
|
* @returns {AgentsLandmarks}
|
|
3041
1510
|
*/
|
|
@@ -3046,7 +1515,7 @@ export function scaffoldLandmarks(mode) {
|
|
|
3046
1515
|
adminHost: true,
|
|
3047
1516
|
moduleMap: true,
|
|
3048
1517
|
middleware: true,
|
|
3049
|
-
libSite:
|
|
1518
|
+
libSite: false,
|
|
3050
1519
|
sitePage: coupled,
|
|
3051
1520
|
headlessPage: !coupled,
|
|
3052
1521
|
}
|
|
@@ -3055,8 +1524,8 @@ export function scaffoldLandmarks(mode) {
|
|
|
3055
1524
|
/**
|
|
3056
1525
|
* Detect the AGENTS.md landmarks that actually exist in an EXISTING project, so
|
|
3057
1526
|
* `create-kywi-app agents` writes a header that matches the app on disk (a
|
|
3058
|
-
* hand-built app may
|
|
3059
|
-
*
|
|
1527
|
+
* hand-built app may have no lib/modules.tsx map; a project scaffolded before
|
|
1528
|
+
* plan E1 still carries its own lib/site.ts copy of the render helpers).
|
|
3060
1529
|
* @param {string} projectDir absolute path to the project root
|
|
3061
1530
|
* @returns {AgentsLandmarks}
|
|
3062
1531
|
*/
|
|
@@ -3077,9 +1546,10 @@ export function detectAgentsLandmarks(projectDir) {
|
|
|
3077
1546
|
* AGENTS.md — a short, app-specific header that orients an agent in THIS app,
|
|
3078
1547
|
* followed by Kywi's canonical patterns doc verbatim. Landmark-aware: each "Where
|
|
3079
1548
|
* things live" bullet is emitted only for a landmark that is actually present, and
|
|
3080
|
-
* absent
|
|
3081
|
-
*
|
|
3082
|
-
*
|
|
1549
|
+
* an absent module map (lib/modules.tsx) becomes an honest "this app predates the
|
|
1550
|
+
* scaffold's …" line instead of a bullet that asserts a file the project does not
|
|
1551
|
+
* have. A `lib/site.ts` found on disk (only a pre-E1 project has one) is described
|
|
1552
|
+
* as the legacy copy it is. With no landmarks passed it defaults to
|
|
3083
1553
|
* the fresh-scaffold set for the mode, so the scaffold output is unchanged.
|
|
3084
1554
|
* @param {Answers} a
|
|
3085
1555
|
* @param {AgentsLandmarks} [landmarks]
|
|
@@ -3116,17 +1586,26 @@ export function agentsMd(a, landmarks = scaffoldLandmarks(a.mode)) {
|
|
|
3116
1586
|
\`defineModule\` module map (shared by the admin editor and the public site); see
|
|
3117
1587
|
the patterns doc below for the intended shape.`)
|
|
3118
1588
|
}
|
|
3119
|
-
// Public-render surface
|
|
3120
|
-
//
|
|
1589
|
+
// Public-render surface. Three honest cases, in order:
|
|
1590
|
+
// 1. a PRE-E1 project that still owns a copy of the render helpers;
|
|
1591
|
+
// 2. the current shape — thin delegates over @kywi-software/core/next;
|
|
1592
|
+
// 3. no public rendering at all (headless/decoupled).
|
|
3121
1593
|
if (L.libSite) {
|
|
3122
|
-
bullets.push(`- \`lib/site.ts\` — public-render helpers
|
|
3123
|
-
components, personalization) used by
|
|
3124
|
-
renders every published page at its
|
|
1594
|
+
bullets.push(`- \`lib/site.ts\` — this app's OWN copy of Kywi's public-render helpers
|
|
1595
|
+
(path/locale resolution, feeds, components, personalization), used by
|
|
1596
|
+
\`app/(site)/[[...slug]]/page.tsx\`, which renders every published page at its
|
|
1597
|
+
slug. It predates the layered shape: current Kywi ships those helpers in
|
|
1598
|
+
\`@kywi-software/core/next\`, and a copy here is a copy a core upgrade cannot
|
|
1599
|
+
reach. Prefer core's; do not add more render logic to this file.`)
|
|
3125
1600
|
} else if (L.sitePage) {
|
|
3126
|
-
bullets.push(`- \`app/(site)/[[...slug]]/page.tsx\`
|
|
3127
|
-
|
|
3128
|
-
|
|
3129
|
-
|
|
1601
|
+
bullets.push(`- \`app/(site)/[[...slug]]/page.tsx\` + \`app/(site)/layout.tsx\` — thin,
|
|
1602
|
+
version-stamped delegates. The public render path itself (content + locale
|
|
1603
|
+
resolution, SEO metadata, JSON-LD, feeds, nav, personalization + A/B, the
|
|
1604
|
+
front-edit overlay) lives in **\`@kywi-software/core/next\`** and upgrades with
|
|
1605
|
+
the package, so \`pnpm up @kywi-software/core\` reaches it. \`lib/kywi.ts\` is
|
|
1606
|
+
the one wiring point between the two. **Never paste render logic back into
|
|
1607
|
+
these files** — extend through \`lib/modules.tsx\`, \`kywi.config.ts\`,
|
|
1608
|
+
\`app/(site)/site.css\` and \`components/site-nav.tsx\` instead.`)
|
|
3130
1609
|
} else {
|
|
3131
1610
|
bullets.push(
|
|
3132
1611
|
a.mode === 'decoupled'
|
|
@@ -3137,8 +1616,10 @@ export function agentsMd(a, landmarks = scaffoldLandmarks(a.mode)) {
|
|
|
3137
1616
|
)
|
|
3138
1617
|
}
|
|
3139
1618
|
if (L.middleware) {
|
|
3140
|
-
bullets.push(`- \`middleware.ts\` — auth gate + session refresh
|
|
3141
|
-
|
|
1619
|
+
bullets.push(`- \`middleware.ts\` — auth gate + session refresh. In a project scaffolded
|
|
1620
|
+
since the layered render path it is a one-line re-export of
|
|
1621
|
+
\`@kywi-software/core/next/middleware\`; older projects hold their own copy
|
|
1622
|
+
over \`@kywi-software/core/host\`.`)
|
|
3142
1623
|
}
|
|
3143
1624
|
bullets.push(`- \`.claude/skills/kywi-content-model/SKILL.md\` — content-model planning
|
|
3144
1625
|
skill, loaded automatically before building anything.`)
|
|
@@ -3245,12 +1726,13 @@ export function buildFileSet(answers) {
|
|
|
3245
1726
|
// mode so this stays byte-identical to the pre-landmark implementation; the
|
|
3246
1727
|
// same guidanceFileSet powers `create-kywi-app agents` for existing projects.
|
|
3247
1728
|
...guidanceFileSet(answers, scaffoldLandmarks(answers.mode)),
|
|
3248
|
-
//
|
|
1729
|
+
// The render path's ONE config seam — thin, stamped, upgradeable
|
|
1730
|
+
// (RENDER_LANDMARK_PATHS.runtime).
|
|
3249
1731
|
'lib/kywi.ts': libKywi(),
|
|
3250
|
-
'lib/config.ts': libConfig(),
|
|
3251
1732
|
// custom (defineModule) module renderers, shared by admin + public layout (#48)
|
|
3252
1733
|
'lib/modules.tsx': libModules(),
|
|
3253
|
-
// host wiring
|
|
1734
|
+
// host wiring: a re-export of core's own middleware
|
|
1735
|
+
// (RENDER_LANDMARK_PATHS.middleware).
|
|
3254
1736
|
'middleware.ts': middleware(),
|
|
3255
1737
|
'app/api/v1/[...kywi]/route.ts': apiRoute(),
|
|
3256
1738
|
// root
|
|
@@ -3272,26 +1754,21 @@ export function buildFileSet(answers) {
|
|
|
3272
1754
|
if (answers.mode === 'coupled') {
|
|
3273
1755
|
// Public site: an optional catch-all renders "/" (home) and every published
|
|
3274
1756
|
// page at its slug. More-specific /admin and /api routes take precedence.
|
|
1757
|
+
// Both files are thin, stamped delegates over @kywi-software/core/next
|
|
1758
|
+
// (RENDER_LANDMARK_PATHS) — the render path itself is core's, so
|
|
1759
|
+
// `pnpm up @kywi-software/core` reaches it. Nothing here may grow a copy of
|
|
1760
|
+
// a core helper; `__tests__/render-drift.test.mjs` (verification E8) fails
|
|
1761
|
+
// the build if it does.
|
|
3275
1762
|
files['app/(site)/layout.tsx'] = siteLayout(answers)
|
|
3276
1763
|
files['app/(site)/site.css'] = siteStyles(answers)
|
|
3277
1764
|
// 'use client' wrapper around core's shared nav renderer — required because
|
|
3278
1765
|
// BUILT_IN_MODULE_COMPONENTS is exported from a 'use client' core module, so
|
|
3279
1766
|
// the (Server Component) site layout above must render it through here
|
|
3280
1767
|
// rather than looking it up directly (see siteNavComponent's doc comment).
|
|
1768
|
+
// Core ships an identical default; this stays project-owned, and wired
|
|
1769
|
+
// explicitly, because the header nav is the thing a site restyles first.
|
|
3281
1770
|
files['components/site-nav.tsx'] = siteNavComponent()
|
|
3282
1771
|
files['app/(site)/[[...slug]]/page.tsx'] = siteSlugPage()
|
|
3283
|
-
// Public-render helpers: path/locale resolution, feed + component resolvers,
|
|
3284
|
-
// personalization + experiments.
|
|
3285
|
-
files['lib/site.ts'] = libSite()
|
|
3286
|
-
// Shared /kywi.js script-injection primitive (kywi-cms#114) — the site
|
|
3287
|
-
// layout's nav loader and the personalization runtime below both use it,
|
|
3288
|
-
// so loading the bundle for either reason never double-loads it.
|
|
3289
|
-
files['lib/kywi-js-loader.ts'] = kywiJsLoaderLib()
|
|
3290
|
-
files['components/kywi-js-loader.tsx'] = kywiJsLoaderComponent()
|
|
3291
|
-
// Optional client personalization runtime (self-ID widget, live re-eval). #50
|
|
3292
|
-
files['components/personalization-runtime.tsx'] = personalizationRuntime()
|
|
3293
|
-
// Front-of-site edit overlay (?kywi-edit=1), mounted by the page above.
|
|
3294
|
-
files['app/(site)/kywi-front-edit.tsx'] = frontEditOverlay()
|
|
3295
1772
|
// Syncs the admin stylesheet + a cache-busting version marker into
|
|
3296
1773
|
// public/ on every predev/prebuild — see the doc comment on
|
|
3297
1774
|
// syncKywiAdminCssScript and packageJson's syncScripts.
|