@ciderpress/ui 1.0.0-rc.1 → 1.0.0-rc.10
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/dist/index.d.ts +1 -1
- package/dist/index.mjs +4 -3
- package/dist/node.d.ts +1 -1
- package/dist/node.mjs +335 -51
- package/dist/plugins/mermaid/MermaidRenderer.tsx +49 -6
- package/dist/theme/components/footer/site-footer.tsx +68 -9
- package/dist/theme/components/home/feature-card.tsx +5 -8
- package/dist/theme/components/home/feature.tsx +31 -11
- package/dist/theme/components/home/hero-demo-custom.tsx +116 -0
- package/dist/theme/components/home/hero-demo.css +27 -0
- package/dist/theme/components/home/layout.tsx +149 -26
- package/dist/theme/components/home/split-visual-custom.tsx +26 -0
- package/dist/theme/components/home/workspaces.tsx +39 -3
- package/dist/theme/components/nav/branch-tag.tsx +7 -7
- package/dist/theme/components/nav/ciderpress-docs-bar.css +13 -1
- package/dist/theme/components/nav/ciderpress-docs-bar.tsx +33 -2
- package/dist/theme/components/nav/ciderpress-header.css +2 -1
- package/dist/theme/components/nav/ciderpress-header.tsx +26 -3
- package/dist/theme/components/nav/ciderpress-nav-hamburger.css +50 -0
- package/dist/theme/components/nav/ciderpress-nav-hamburger.tsx +95 -9
- package/dist/theme/components/nav/ciderpress-nav-menu.css +88 -0
- package/dist/theme/components/nav/ciderpress-nav-menu.tsx +397 -38
- package/dist/theme/components/nav/ciderpress-nav-social-links.tsx +27 -22
- package/dist/theme/components/nav/floating-branch-indicator.tsx +7 -7
- package/dist/theme/components/nav/header-icon.css +24 -0
- package/dist/theme/components/nav/header-icon.tsx +119 -0
- package/dist/theme/components/nav/header-logo.css +16 -0
- package/dist/theme/components/nav/header-logo.tsx +200 -0
- package/dist/theme/components/nav/layout.tsx +117 -16
- package/dist/theme/components/nav/nav-logo.tsx +16 -19
- package/dist/theme/components/openapi/index.ts +0 -2
- package/dist/theme/components/openapi/openapi.css +0 -14
- package/dist/theme/components/shared/card-icon.tsx +37 -0
- package/dist/theme/components/shared/ciderpress-logo.tsx +5 -1
- package/dist/theme/components/shared/icon.tsx +120 -35
- package/dist/theme/components/shared/resolve-card-icon.ts +53 -12
- package/dist/theme/components/shared/section-card.tsx +37 -6
- package/dist/theme/components/sidebar/sidebar-badge.css +50 -0
- package/dist/theme/components/sidebar/sidebar-badge.tsx +153 -0
- package/dist/theme/components/sidebar/sidebar-links.tsx +6 -2
- package/dist/theme/components/sidebar/sidebar-scope.tsx +24 -1
- package/dist/theme/components/theme-provider.tsx +27 -11
- package/dist/theme/components/workspaces/card.tsx +7 -9
- package/dist/theme/hooks/use-ciderpress.ts +65 -5
- package/dist/theme/hooks/use-nav-items.ts +82 -11
- package/dist/theme/index.tsx +5 -3
- package/dist/theme/lib/read-social-links.ts +4 -3
- package/dist/theme/lib/theme-favicon.ts +1 -1
- package/dist/theme/lib/with-mount-base.ts +31 -0
- package/dist/theme/styles/overrides/footnotes.css +54 -0
- package/dist/theme/styles/overrides/lists.css +83 -0
- package/dist/theme/styles/overrides/rail.css +27 -10
- package/dist/theme/styles/overrides/section-card.css +9 -0
- package/dist/theme/styles/overrides/sidebar.css +22 -0
- package/package.json +18 -16
- package/src/theme/components/footer/site-footer.tsx +68 -9
- package/src/theme/components/home/feature-card.tsx +5 -8
- package/src/theme/components/home/feature.tsx +31 -11
- package/src/theme/components/home/hero-demo-custom.tsx +116 -0
- package/src/theme/components/home/hero-demo.css +27 -0
- package/src/theme/components/home/layout.tsx +149 -26
- package/src/theme/components/home/split-visual-custom.tsx +26 -0
- package/src/theme/components/home/workspaces.tsx +39 -3
- package/src/theme/components/nav/branch-tag.tsx +7 -7
- package/src/theme/components/nav/ciderpress-docs-bar.css +13 -1
- package/src/theme/components/nav/ciderpress-docs-bar.tsx +33 -2
- package/src/theme/components/nav/ciderpress-header.css +2 -1
- package/src/theme/components/nav/ciderpress-header.tsx +26 -3
- package/src/theme/components/nav/ciderpress-nav-hamburger.css +50 -0
- package/src/theme/components/nav/ciderpress-nav-hamburger.tsx +95 -9
- package/src/theme/components/nav/ciderpress-nav-menu.css +88 -0
- package/src/theme/components/nav/ciderpress-nav-menu.tsx +397 -38
- package/src/theme/components/nav/ciderpress-nav-social-links.tsx +27 -22
- package/src/theme/components/nav/floating-branch-indicator.tsx +7 -7
- package/src/theme/components/nav/header-icon.css +24 -0
- package/src/theme/components/nav/header-icon.tsx +119 -0
- package/src/theme/components/nav/header-logo.css +16 -0
- package/src/theme/components/nav/header-logo.tsx +200 -0
- package/src/theme/components/nav/layout.tsx +117 -16
- package/src/theme/components/nav/nav-logo.tsx +16 -19
- package/src/theme/components/openapi/index.ts +0 -2
- package/src/theme/components/openapi/openapi.css +0 -14
- package/src/theme/components/shared/card-icon.tsx +37 -0
- package/src/theme/components/shared/ciderpress-logo.tsx +5 -1
- package/src/theme/components/shared/icon.tsx +120 -35
- package/src/theme/components/shared/resolve-card-icon.ts +53 -12
- package/src/theme/components/shared/section-card.tsx +37 -6
- package/src/theme/components/sidebar/sidebar-badge.css +50 -0
- package/src/theme/components/sidebar/sidebar-badge.tsx +153 -0
- package/src/theme/components/sidebar/sidebar-links.tsx +6 -2
- package/src/theme/components/sidebar/sidebar-scope.tsx +24 -1
- package/src/theme/components/theme-provider.tsx +27 -11
- package/src/theme/components/workspaces/card.tsx +7 -9
- package/src/theme/hooks/use-ciderpress.ts +65 -5
- package/src/theme/hooks/use-nav-items.ts +82 -11
- package/src/theme/index.tsx +5 -3
- package/src/theme/lib/read-social-links.ts +4 -3
- package/src/theme/lib/theme-favicon.ts +1 -1
- package/src/theme/lib/with-mount-base.ts +31 -0
- package/src/theme/styles/overrides/footnotes.css +54 -0
- package/src/theme/styles/overrides/lists.css +83 -0
- package/src/theme/styles/overrides/rail.css +27 -10
- package/src/theme/styles/overrides/section-card.css +9 -0
- package/src/theme/styles/overrides/sidebar.css +22 -0
- package/dist/theme/components/openapi/copy-markdown-button.tsx +0 -41
- package/src/theme/components/openapi/copy-markdown-button.tsx +0 -41
|
@@ -4,19 +4,46 @@
|
|
|
4
4
|
// workspace dependencies here — they will cause "factory is undefined" runtime
|
|
5
5
|
// errors. See packages/ui/AGENTS.md for details.
|
|
6
6
|
//
|
|
7
|
-
//
|
|
8
|
-
//
|
|
9
|
-
//
|
|
10
|
-
//
|
|
7
|
+
// MERMAID v11: works fine here — no pin needed. The earlier v10 pin blamed
|
|
8
|
+
// langium/lazy-loading, but mermaid.render() actually resolves correctly. The
|
|
9
|
+
// real bug was local: `config` defaults to a fresh {} each render, so keying
|
|
10
|
+
// renderMermaid on it re-created the callback every render and re-fired the
|
|
11
|
+
// render effect in a loop. Each loop iteration called mermaid.render() into the
|
|
12
|
+
// same element id, clobbering the just-injected SVG — the diagram went blank
|
|
13
|
+
// until an unrelated re-render happened to run last. Fixed by keying on a stable
|
|
14
|
+
// serialized config value (see configKey below).
|
|
11
15
|
|
|
12
16
|
// oxlint-disable no-ternary
|
|
13
17
|
|
|
18
|
+
import elkLayouts from '@mermaid-js/layout-elk'
|
|
14
19
|
import mermaid from 'mermaid'
|
|
15
20
|
import type { MermaidConfig } from 'mermaid'
|
|
16
21
|
import React, { useCallback, useEffect, useId, useMemo, useRef, useState } from 'react'
|
|
17
22
|
|
|
18
23
|
import './mermaid.css'
|
|
19
24
|
|
|
25
|
+
// ELK layout support. Diagrams that opt in with `layout: elk` (via frontmatter or
|
|
26
|
+
// `%%{init: {'layout': 'elk'}}%%`) need the ELK loaders registered before render,
|
|
27
|
+
// or mermaid.render() throws and the diagram silently blanks. `elkLayouts` is an
|
|
28
|
+
// array of lazy loaders (`() => import(...)`), so elkjs — and its web worker —
|
|
29
|
+
// only load client-side when a diagram actually uses ELK, never at build/SSR time.
|
|
30
|
+
// Registration itself is a cheap, edge-safe registry push. We guard on a module
|
|
31
|
+
// flag so React re-mounts / StrictMode double-invokes register exactly once.
|
|
32
|
+
const elkState = { registered: false }
|
|
33
|
+
|
|
34
|
+
/**
|
|
35
|
+
* Register the ELK layout loaders with mermaid, exactly once per module load.
|
|
36
|
+
*
|
|
37
|
+
* @private
|
|
38
|
+
*/
|
|
39
|
+
function ensureElkRegistered(): void {
|
|
40
|
+
if (elkState.registered) {
|
|
41
|
+
return
|
|
42
|
+
}
|
|
43
|
+
elkState.registered = true
|
|
44
|
+
mermaid.registerLayoutLoaders(elkLayouts)
|
|
45
|
+
}
|
|
46
|
+
|
|
20
47
|
interface MermaidRendererProps {
|
|
21
48
|
readonly code: string
|
|
22
49
|
readonly config?: MermaidConfig
|
|
@@ -214,6 +241,11 @@ function MermaidRenderer(props: MermaidRendererProps): React.ReactElement | null
|
|
|
214
241
|
|
|
215
242
|
const [svg, setSvg] = useState('')
|
|
216
243
|
const [renderError, setRenderError] = useState(false)
|
|
244
|
+
// Monotonic counter for per-render element ids. mermaid.render() renders into a
|
|
245
|
+
// node keyed by the id we pass; reusing one id across calls (React StrictMode
|
|
246
|
+
// double-invokes the mount effect) lets a later call clobber the SVG an earlier
|
|
247
|
+
// call already injected. A fresh id per call makes every render self-contained.
|
|
248
|
+
const renderSeq = useRef(0)
|
|
217
249
|
const [transform, setTransform] = useState<Transform>(INITIAL_TRANSFORM)
|
|
218
250
|
const transformRef = useRef<Transform>(INITIAL_TRANSFORM)
|
|
219
251
|
const [fullscreen, setFullscreen] = useState(false)
|
|
@@ -221,11 +253,21 @@ function MermaidRenderer(props: MermaidRendererProps): React.ReactElement | null
|
|
|
221
253
|
|
|
222
254
|
const highlightedCode = useMemo(() => highlightMermaid(code), [code])
|
|
223
255
|
|
|
256
|
+
// Stable value-key for the config object. `config` defaults to a fresh {} on
|
|
257
|
+
// every render, so depending on it directly re-creates renderMermaid each
|
|
258
|
+
// render, which re-fires the render effect in a loop. Each re-render calls
|
|
259
|
+
// mermaid.render() into the same element id — which clobbers the SVG we just
|
|
260
|
+
// injected, leaving the diagram blank until an unrelated re-render happens to
|
|
261
|
+
// land last. Keying on the serialized value keeps renderMermaid stable.
|
|
262
|
+
const configKey = JSON.stringify(config)
|
|
263
|
+
|
|
224
264
|
transformRef.current = transform
|
|
225
265
|
|
|
226
266
|
const isPreview = tab === 'preview'
|
|
227
267
|
|
|
228
268
|
const renderMermaid = useCallback(async () => {
|
|
269
|
+
ensureElkRegistered()
|
|
270
|
+
|
|
229
271
|
const hasDarkClass = document.documentElement.classList.contains('dark')
|
|
230
272
|
|
|
231
273
|
const mermaidConfig: MermaidConfig = {
|
|
@@ -235,14 +277,15 @@ function MermaidRenderer(props: MermaidRendererProps): React.ReactElement | null
|
|
|
235
277
|
...config,
|
|
236
278
|
}
|
|
237
279
|
|
|
280
|
+
const renderId = `${id.replaceAll(':', '')}-${(renderSeq.current += 1)}`
|
|
238
281
|
try {
|
|
239
282
|
mermaid.initialize(mermaidConfig)
|
|
240
|
-
const result = await mermaid.render(
|
|
283
|
+
const result = await mermaid.render(renderId, code as string)
|
|
241
284
|
setSvg(result.svg)
|
|
242
285
|
} catch {
|
|
243
286
|
setRenderError(true)
|
|
244
287
|
}
|
|
245
|
-
}, [code,
|
|
288
|
+
}, [code, configKey, id])
|
|
246
289
|
|
|
247
290
|
useEffect(() => {
|
|
248
291
|
renderMermaid()
|
|
@@ -1,14 +1,15 @@
|
|
|
1
|
+
import type { CopyrightConfig, FooterConfig } from '@ciderpress/config'
|
|
1
2
|
import { useSite } from '@rspress/core/runtime'
|
|
2
|
-
import { match } from 'massaman/match'
|
|
3
|
+
import { match, P } from 'massaman/match'
|
|
3
4
|
import type React from 'react'
|
|
4
5
|
|
|
5
6
|
import { useCiderpress } from '../../hooks/use-ciderpress'
|
|
6
7
|
import { readSocialLinks } from '../../lib/read-social-links'
|
|
7
8
|
import { RouteLink } from '../../lib/route-link.tsx'
|
|
8
9
|
import { safeUrl } from '../../lib/safe-url.ts'
|
|
10
|
+
import { withMountBase } from '../../lib/with-mount-base.ts'
|
|
9
11
|
import { CiderpressNavSocialLinks } from '../nav/ciderpress-nav-social-links'
|
|
10
12
|
import { ThemeSwitcher } from '../nav/theme-switcher'
|
|
11
|
-
import { CiderpressMark } from '../shared/ciderpress-mark'
|
|
12
13
|
|
|
13
14
|
import './site-footer.css'
|
|
14
15
|
|
|
@@ -35,14 +36,17 @@ export function SiteFooter(): React.ReactElement | null {
|
|
|
35
36
|
const { message, copyright, socials } = ciderpressFooter ?? {}
|
|
36
37
|
const { columns, tagline, brandMark } = siteFooter ?? {}
|
|
37
38
|
|
|
38
|
-
const
|
|
39
|
+
const copyrightText = resolveCopyright(copyright, rspressSite.title)
|
|
40
|
+
const shouldRenderSocials = socials === true && socialLinks.length > 0
|
|
41
|
+
|
|
42
|
+
const hasFooterContent = message !== undefined || copyrightText !== null || shouldRenderSocials
|
|
39
43
|
const hasSiteContent = columns !== undefined || tagline !== undefined
|
|
40
44
|
// The footer also hosts the theme switcher when it's enabled — so a
|
|
41
|
-
// config with `theme.
|
|
45
|
+
// config with `theme.themeSwitcher: true` but no other footer content
|
|
42
46
|
// still needs the footer shell rendered.
|
|
43
47
|
const hasSwitcher = __CIDERPRESS_THEME_SWITCHER__
|
|
44
48
|
|
|
45
|
-
if (!
|
|
49
|
+
if (!hasFooterContent && !hasSiteContent && !hasSwitcher) {
|
|
46
50
|
return null
|
|
47
51
|
}
|
|
48
52
|
|
|
@@ -56,7 +60,16 @@ export function SiteFooter(): React.ReactElement | null {
|
|
|
56
60
|
<div className="cp-site-footer__brand-mark">
|
|
57
61
|
{match(brandMark)
|
|
58
62
|
.with(undefined, () => (
|
|
59
|
-
|
|
63
|
+
// Default to the project's `/icon.svg` (auto-generated
|
|
64
|
+
// from `config.title` at sync time, or overridden by
|
|
65
|
+
// shipping a `public/icon.svg`). This was previously
|
|
66
|
+
// the hardcoded `<CiderpressMark />` apple, which
|
|
67
|
+
// leaked ciderpress branding into every footer.
|
|
68
|
+
<img
|
|
69
|
+
src={withMountBase('/icon.svg')}
|
|
70
|
+
alt=""
|
|
71
|
+
className="cp-site-footer__brand-icon"
|
|
72
|
+
/>
|
|
60
73
|
))
|
|
61
74
|
.otherwise((mark) => mark)}
|
|
62
75
|
</div>
|
|
@@ -65,7 +78,7 @@ export function SiteFooter(): React.ReactElement | null {
|
|
|
65
78
|
.otherwise((msg) => (
|
|
66
79
|
<p className="cp-site-footer__message">{msg}</p>
|
|
67
80
|
))}
|
|
68
|
-
{match(
|
|
81
|
+
{match(shouldRenderSocials)
|
|
69
82
|
.with(true, () => (
|
|
70
83
|
<div className="cp-site-footer__socials">
|
|
71
84
|
<CiderpressNavSocialLinks links={socialLinks} />
|
|
@@ -95,8 +108,8 @@ export function SiteFooter(): React.ReactElement | null {
|
|
|
95
108
|
</div>
|
|
96
109
|
<div className="cp-site-footer__bottom">
|
|
97
110
|
<div className="cp-site-footer__bottom-inner">
|
|
98
|
-
{match(
|
|
99
|
-
.with(
|
|
111
|
+
{match(copyrightText)
|
|
112
|
+
.with(null, () => null)
|
|
100
113
|
.otherwise((cr) => (
|
|
101
114
|
<span className="cp-site-footer__copyright">{cr}</span>
|
|
102
115
|
))}
|
|
@@ -113,3 +126,49 @@ export function SiteFooter(): React.ReactElement | null {
|
|
|
113
126
|
</footer>
|
|
114
127
|
)
|
|
115
128
|
}
|
|
129
|
+
|
|
130
|
+
/**
|
|
131
|
+
* Resolve the `footer.copyright` config union into a string for rendering.
|
|
132
|
+
*
|
|
133
|
+
* Accepts the new public shape: `true` for auto-generation from the site
|
|
134
|
+
* title + current year, a verbatim string, or a `CopyrightConfig` object
|
|
135
|
+
* with `company` / `dba` / `year`. `undefined` returns `null` so the
|
|
136
|
+
* caller can skip the render.
|
|
137
|
+
*
|
|
138
|
+
* @private
|
|
139
|
+
* @param copyright - The footer copyright config value
|
|
140
|
+
* @param siteTitle - The Rspress site title to use as fallback owner name
|
|
141
|
+
* @returns The formatted copyright string, or `null` when nothing should render
|
|
142
|
+
*/
|
|
143
|
+
function resolveCopyright(
|
|
144
|
+
copyright: FooterConfig['copyright'],
|
|
145
|
+
siteTitle: string | undefined
|
|
146
|
+
): string | null {
|
|
147
|
+
return match(copyright)
|
|
148
|
+
.with(undefined, () => null)
|
|
149
|
+
.with(true, () => formatCopyright({}, siteTitle))
|
|
150
|
+
.with(P.string, (s) => s)
|
|
151
|
+
.otherwise((cfg) => formatCopyright(cfg, siteTitle))
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
/**
|
|
155
|
+
* Build a copyright string from a partial `CopyrightConfig`. Falls back to
|
|
156
|
+
* the site title for the owner name and the current year for the date.
|
|
157
|
+
*
|
|
158
|
+
* @private
|
|
159
|
+
* @param cfg - Copyright config object (may be empty)
|
|
160
|
+
* @param siteTitle - Fallback owner name
|
|
161
|
+
* @returns Formatted copyright string
|
|
162
|
+
*/
|
|
163
|
+
function formatCopyright(cfg: CopyrightConfig, siteTitle: string | undefined): string {
|
|
164
|
+
const currentYear = new Date().getFullYear()
|
|
165
|
+
const yearPart = match(cfg.year)
|
|
166
|
+
.with(undefined, () => String(currentYear))
|
|
167
|
+
.with(P.number, (n) => String(n))
|
|
168
|
+
.otherwise(({ from }) => `${from}–${currentYear}`)
|
|
169
|
+
const owner = cfg.dba ?? cfg.company ?? siteTitle ?? ''
|
|
170
|
+
const ownerPart = match(owner.length === 0)
|
|
171
|
+
.with(true, () => '')
|
|
172
|
+
.otherwise(() => ` ${owner}`)
|
|
173
|
+
return `© ${yearPart}${ownerPart}`
|
|
174
|
+
}
|
|
@@ -3,14 +3,15 @@ import type React from 'react'
|
|
|
3
3
|
|
|
4
4
|
import './feature-card.css'
|
|
5
5
|
import { Card } from '../shared/card'
|
|
6
|
-
import {
|
|
6
|
+
import { CardIcon } from '../shared/card-icon'
|
|
7
|
+
import type { CardIconInput } from '../shared/resolve-card-icon'
|
|
7
8
|
import { resolveCardIcon } from '../shared/resolve-card-icon'
|
|
8
9
|
|
|
9
10
|
export interface FeatureCardProps {
|
|
10
11
|
readonly title: string
|
|
11
12
|
readonly description: string
|
|
12
13
|
readonly href?: string
|
|
13
|
-
readonly icon?:
|
|
14
|
+
readonly icon?: CardIconInput
|
|
14
15
|
readonly span?: 2 | 3 | 4 | 6
|
|
15
16
|
readonly titleLines?: number
|
|
16
17
|
readonly descriptionLines?: number
|
|
@@ -23,7 +24,7 @@ export interface FeatureItem {
|
|
|
23
24
|
readonly title: string
|
|
24
25
|
readonly details: string
|
|
25
26
|
readonly link?: string
|
|
26
|
-
readonly icon?:
|
|
27
|
+
readonly icon?: CardIconInput
|
|
27
28
|
readonly span?: 2 | 3 | 4 | 6
|
|
28
29
|
}
|
|
29
30
|
|
|
@@ -46,11 +47,7 @@ export function FeatureCard({
|
|
|
46
47
|
const resolved = resolveCardIcon(icon)
|
|
47
48
|
|
|
48
49
|
const iconEl = match(resolved)
|
|
49
|
-
.with(P.nonNullable, (r) =>
|
|
50
|
-
<span className={`cp-card__icon cp-card__icon--${r.color}`}>
|
|
51
|
-
<Icon icon={r.id} />
|
|
52
|
-
</span>
|
|
53
|
-
))
|
|
50
|
+
.with(P.nonNullable, (r) => <CardIcon resolved={r} className="cp-card__icon" />)
|
|
54
51
|
.otherwise(() => null)
|
|
55
52
|
|
|
56
53
|
const linkTail = match(href)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { HomeFeaturesConfig } from '@ciderpress/config'
|
|
2
2
|
import { useFrontmatter } from '@rspress/core/runtime'
|
|
3
3
|
import { match, P } from 'massaman/match'
|
|
4
4
|
import type React from 'react'
|
|
@@ -7,6 +7,17 @@ import { useCiderpress } from '../../hooks/use-ciderpress'
|
|
|
7
7
|
import { FeatureCard } from './feature-card'
|
|
8
8
|
import type { FeatureItem } from './feature-card'
|
|
9
9
|
|
|
10
|
+
interface FrontmatterFeaturesHeading {
|
|
11
|
+
readonly label?: string
|
|
12
|
+
readonly title?: string
|
|
13
|
+
readonly subtitle?: string
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
const DEFAULT_HEADING_EYEBROW = 'Features'
|
|
17
|
+
const DEFAULT_HEADING_TITLE = 'Built for the way you ship.'
|
|
18
|
+
const DEFAULT_HEADING_SUBTITLE =
|
|
19
|
+
"Everything you need, nothing you don't. Configured in TypeScript, validated at boot."
|
|
20
|
+
|
|
10
21
|
/**
|
|
11
22
|
* Custom HomeFeature override for ciderpress.
|
|
12
23
|
* Uses useFrontmatter() hook to read features and renders with FeatureCard/FeatureGrid styling.
|
|
@@ -21,9 +32,21 @@ export function HomeFeature(): React.ReactElement | null {
|
|
|
21
32
|
// Rspress types frontmatter as its own FrontMatterMeta shape which does not
|
|
22
33
|
// include ciderpress-specific `features`. The double cast is necessary because
|
|
23
34
|
// no shared Zod schema exists for frontmatter validation at runtime.
|
|
24
|
-
const
|
|
25
|
-
|
|
26
|
-
|
|
35
|
+
const fm = frontmatter as Record<string, unknown>
|
|
36
|
+
const features = fm.features as readonly FeatureItem[] | undefined
|
|
37
|
+
const heading = fm.featuresHeading as FrontmatterFeaturesHeading | undefined
|
|
38
|
+
// Frontmatter is unvalidated user content — a `featuresHeading.title: {}`
|
|
39
|
+
// would otherwise render as `[object Object]` in the H2. Treat any
|
|
40
|
+
// non-string value as missing and fall through to the framework default.
|
|
41
|
+
const headingEyebrow = match(heading && heading.label)
|
|
42
|
+
.with(P.string, (s) => s)
|
|
43
|
+
.otherwise(() => DEFAULT_HEADING_EYEBROW)
|
|
44
|
+
const headingTitle = match(heading && heading.title)
|
|
45
|
+
.with(P.string, (s) => s)
|
|
46
|
+
.otherwise(() => DEFAULT_HEADING_TITLE)
|
|
47
|
+
const headingSubtitle = match(heading && heading.subtitle)
|
|
48
|
+
.with(P.string, (s) => s)
|
|
49
|
+
.otherwise(() => DEFAULT_HEADING_SUBTITLE)
|
|
27
50
|
|
|
28
51
|
return match(features)
|
|
29
52
|
.with(
|
|
@@ -31,12 +54,9 @@ export function HomeFeature(): React.ReactElement | null {
|
|
|
31
54
|
(items) => (
|
|
32
55
|
<div className="cp-feature-section">
|
|
33
56
|
<div className="cp-feature-section-head">
|
|
34
|
-
<div className="cp-feature-section-head__eyebrow">
|
|
35
|
-
<h2 className="cp-feature-section-head__title">
|
|
36
|
-
<p className="cp-feature-section-head__sub">
|
|
37
|
-
Everything you need, nothing you don't. Configured in TypeScript, validated at
|
|
38
|
-
boot.
|
|
39
|
-
</p>
|
|
57
|
+
<div className="cp-feature-section-head__eyebrow">{headingEyebrow}</div>
|
|
58
|
+
<h2 className="cp-feature-section-head__title">{headingTitle}</h2>
|
|
59
|
+
<p className="cp-feature-section-head__sub">{headingSubtitle}</p>
|
|
40
60
|
</div>
|
|
41
61
|
<div className="cp-feature-grid">
|
|
42
62
|
{items.map((f, i) => renderFeature(f, i, gridConfig))}
|
|
@@ -60,7 +80,7 @@ export function HomeFeature(): React.ReactElement | null {
|
|
|
60
80
|
function renderFeature(
|
|
61
81
|
feature: FeatureItem,
|
|
62
82
|
index: number,
|
|
63
|
-
gridConfig:
|
|
83
|
+
gridConfig: HomeFeaturesConfig | undefined
|
|
64
84
|
): React.ReactElement {
|
|
65
85
|
const titleLines = gridConfig && gridConfig.truncate && gridConfig.truncate.title
|
|
66
86
|
const descLines = gridConfig && gridConfig.truncate && gridConfig.truncate.description
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
import type { HomeHeroDemoConfig, HomeHeroDemoLine, HomeHeroDemoTerminal } from '@ciderpress/config'
|
|
2
|
+
import { match } from 'massaman/match'
|
|
3
|
+
import type React from 'react'
|
|
4
|
+
|
|
5
|
+
import { withMountBase } from '../../lib/with-mount-base.ts'
|
|
6
|
+
|
|
7
|
+
import './hero-demo.css'
|
|
8
|
+
|
|
9
|
+
interface CustomHeroDemoProps {
|
|
10
|
+
readonly config: HomeHeroDemoConfig
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
/**
|
|
14
|
+
* Custom replacement for `<HeroDemo />`. Driven by `home.hero.demo` from
|
|
15
|
+
* `ciderpress.config.ts`:
|
|
16
|
+
*
|
|
17
|
+
* - **Image form** (`{ src, alt, width?, height? }`) — renders an
|
|
18
|
+
* `<img>` inside the framework's framed `cp-hero-demo` container
|
|
19
|
+
* (rounded corners + brand-soft glow shadow preserved).
|
|
20
|
+
* - **Terminal form** (`{ windowTitle?, command, lines }`) — keeps the
|
|
21
|
+
* fake-macOS chrome but paints the user's command + output lines.
|
|
22
|
+
*
|
|
23
|
+
* The discriminator is structural: image objects carry `src`, terminal
|
|
24
|
+
* objects carry `lines`.
|
|
25
|
+
*
|
|
26
|
+
* @param props - Validated `HomeHeroDemoConfig`
|
|
27
|
+
* @returns Custom hero demo element
|
|
28
|
+
*/
|
|
29
|
+
export function CustomHeroDemo(props: CustomHeroDemoProps): React.ReactElement {
|
|
30
|
+
return match(props.config)
|
|
31
|
+
.when(
|
|
32
|
+
(c): c is HomeHeroDemoTerminal => 'lines' in c,
|
|
33
|
+
(c) => <CustomTerminal config={c} />
|
|
34
|
+
)
|
|
35
|
+
.otherwise((c) => (
|
|
36
|
+
<div className="cp-hero-demo cp-hero-demo--image">
|
|
37
|
+
<img
|
|
38
|
+
src={withMountBase(c.src)}
|
|
39
|
+
alt={c.alt ?? ''}
|
|
40
|
+
width={c.width}
|
|
41
|
+
height={c.height}
|
|
42
|
+
className="cp-hero-demo__img"
|
|
43
|
+
/>
|
|
44
|
+
</div>
|
|
45
|
+
))
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
interface CustomTerminalProps {
|
|
49
|
+
readonly config: HomeHeroDemoTerminal
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
/**
|
|
53
|
+
* Render the terminal-form hero demo with user-supplied command + lines.
|
|
54
|
+
*
|
|
55
|
+
* @private
|
|
56
|
+
* @param props - Validated terminal config
|
|
57
|
+
* @returns Terminal-shell hero demo element
|
|
58
|
+
*/
|
|
59
|
+
function CustomTerminal(props: CustomTerminalProps): React.ReactElement {
|
|
60
|
+
const { windowTitle, command, lines } = props.config
|
|
61
|
+
return (
|
|
62
|
+
<div className="cp-hero-demo">
|
|
63
|
+
<div className="cp-hero-demo__bar">
|
|
64
|
+
<span className="cp-hero-demo__dot" />
|
|
65
|
+
<span className="cp-hero-demo__dot" />
|
|
66
|
+
<span className="cp-hero-demo__dot" />
|
|
67
|
+
{match(windowTitle)
|
|
68
|
+
.with(undefined, () => null)
|
|
69
|
+
.otherwise((t) => (
|
|
70
|
+
<span className="cp-hero-demo__title">{t}</span>
|
|
71
|
+
))}
|
|
72
|
+
</div>
|
|
73
|
+
<pre className="cp-hero-demo__body">
|
|
74
|
+
<span className="cp-hero-demo__prompt">$ </span>
|
|
75
|
+
{command}
|
|
76
|
+
{'\n\n'}
|
|
77
|
+
{lines.map((line, i) => (
|
|
78
|
+
<TerminalLine key={`${line.kind}-${i}`} line={line} />
|
|
79
|
+
))}
|
|
80
|
+
</pre>
|
|
81
|
+
</div>
|
|
82
|
+
)
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
interface TerminalLineProps {
|
|
86
|
+
readonly line: HomeHeroDemoLine
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
/**
|
|
90
|
+
* Render a single line of the structured terminal hero demo. Each
|
|
91
|
+
* kind gets a coloured prefix glyph mirroring the framework default.
|
|
92
|
+
*
|
|
93
|
+
* @private
|
|
94
|
+
* @param props - Single line entry
|
|
95
|
+
* @returns Glyph-prefixed line followed by a newline
|
|
96
|
+
*/
|
|
97
|
+
function TerminalLine(props: TerminalLineProps): React.ReactElement {
|
|
98
|
+
const className = match(props.line.kind)
|
|
99
|
+
.with('ok', () => 'cp-hero-demo__ok')
|
|
100
|
+
.with('info', () => 'cp-hero-demo__info')
|
|
101
|
+
.with('cmt', () => 'cp-hero-demo__cmt')
|
|
102
|
+
.with('err', () => 'cp-hero-demo__err')
|
|
103
|
+
.exhaustive()
|
|
104
|
+
const glyph = match(props.line.kind)
|
|
105
|
+
.with('ok', () => ' ✓')
|
|
106
|
+
.with('info', () => ' ▸')
|
|
107
|
+
.with('cmt', () => ' ↻')
|
|
108
|
+
.with('err', () => ' ✗')
|
|
109
|
+
.exhaustive()
|
|
110
|
+
return (
|
|
111
|
+
<>
|
|
112
|
+
<span className={className}>{glyph}</span> {props.line.text}
|
|
113
|
+
{'\n'}
|
|
114
|
+
</>
|
|
115
|
+
)
|
|
116
|
+
}
|
|
@@ -64,3 +64,30 @@
|
|
|
64
64
|
.cp-hero-demo__file {
|
|
65
65
|
color: var(--cp-c-tint-amber-bright-fg);
|
|
66
66
|
}
|
|
67
|
+
|
|
68
|
+
/* Image-form hero demo — the frame chrome (rounded corners + brand-soft
|
|
69
|
+
glow shadow) stays; the `<img>` simply fills the surface. The hero
|
|
70
|
+
slot already constrains aspect ratio. */
|
|
71
|
+
.cp-hero-demo--image {
|
|
72
|
+
padding: 0;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.cp-hero-demo__img {
|
|
76
|
+
display: block;
|
|
77
|
+
width: 100%;
|
|
78
|
+
height: auto;
|
|
79
|
+
border-radius: inherit;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
/* Custom Split visual `<pre>` shares the `.cp-split__code` surface with
|
|
83
|
+
the default `ConfigPreview` block — same padding, font, scrolling. */
|
|
84
|
+
.cp-split__code {
|
|
85
|
+
margin: 0;
|
|
86
|
+
padding: var(--cp-s-20) var(--cp-s-24);
|
|
87
|
+
font-family: var(--cp-font-family-mono);
|
|
88
|
+
font-size: var(--cp-fs-code);
|
|
89
|
+
line-height: var(--cp-lh-code);
|
|
90
|
+
white-space: pre;
|
|
91
|
+
overflow-x: auto;
|
|
92
|
+
color: var(--cp-c-text-1);
|
|
93
|
+
}
|