Files
Momento/memento-note/app/(public)/p/[slug]/page.tsx
Antigravity e02a9d9a53
Some checks failed
CI / Lint, Unit Tests & Build (push) Failing after 4s
CI / Deploy production (on server) (push) Has been skipped
fix: page publique — plus de <html>/<body> (utilise le layout existant)
- Retire <html>/<body>/<head> qui créaient des erreurs d'hydration
- Utilise <link> + <style> dans le fragment React (compatible Next.js)
- Garde KaTeX CSS + Google Fonts + styles inline
- Plus d'erreurs de nesting HTML
2026-06-19 22:15:53 +00:00

146 lines
7.3 KiB
TypeScript

import { notFound } from 'next/navigation'
import { getPublishedNote } from '@/app/actions/notes-publishing'
import { Calendar, Clock, Flag } from 'lucide-react'
import { format } from 'date-fns'
import katex from 'katex'
export async function generateMetadata({ params }: { params: Promise<{ slug: string }> }) {
const { slug } = await params
const note = await getPublishedNote(slug)
if (!note) return { title: 'Note not found — Momento' }
return {
title: `${note.title || 'Published note'} — Momento`,
description: note.content?.replace(/<[^>]+>/g, '').slice(0, 160),
}
}
export const revalidate = 60
function decodeHtml(text: string): string {
const map: Record<string, string> = { '&quot;': '"', '&amp;': '&', '&lt;': '<', '&gt;': '>', '&#39;': "'" }
return text.replace(/&[a-z#0-9]+;/gi, m => map[m] || m)
}
function processContent(html: string): string {
let result = html
// KaTeX block math
result = result.replace(/<div[^>]*data-type="math-equation"[^>]*data-latex="([^"]*)"[^>]*><\/div>/g, (_, latex) => {
try { return `<div class="r-math-display">${katex.renderToString(decodeHtml(latex), { displayMode: true, throwOnError: false })}</div>` }
catch { return `<div class="r-math-display">${latex}</div>` }
})
// KaTeX inline math
result = result.replace(/<span[^>]*data-type="inline-math"[^>]*data-latex="([^"]*)"[^>]*>.*?<\/span>/g, (_, latex) => {
try { return katex.renderToString(decodeHtml(latex), { displayMode: false, throwOnError: false }) }
catch { return latex }
})
// Callouts
result = result.replace(/<div[^>]*data-type="callout-block"[^>]*data-callout-type="([^"]*)"[^>]*>/g, (_, type) => {
const c: Record<string, string> = {
info: '#eff6ff|#3b82f6', warning: '#fffbeb|#f59e0b', tip: '#faf5ff|#8b5cf6',
success: '#f0fdf4|#22c55e', danger: '#fef2f2|#ef4444',
}
const [bg, border] = (c[type] || c.info).split('|')
return `<div style="background:${bg};border-left:4px solid ${border};border-radius:8px;padding:12px 16px;margin:16px 0">`
})
// Remove outline blocks (need editor JS)
result = result.replace(/<div[^>]*data-type="outline-block"[^>]*><\/div>/g, '')
// Remove link preview searchable text
result = result.replace(/<div[^>]*class="link-preview-searchable"[^>]*>[\s\S]*?<\/div>/g, '')
// Remove editor buttons
result = result.replace(/<button[^>]*>[\s\S]*?<\/button>/g, '')
// Remove contentEditable attributes
result = result.replace(/contenteditable="[^"]*"/gi, '')
return result
}
function estimateReadingTime(html: string): number {
const words = html.replace(/<[^>]+>/g, ' ').trim().split(/\s+/).length
return Math.max(1, Math.ceil(words / 200))
}
export default async function PublishedNotePage({ params }: { params: Promise<{ slug: string }> }) {
const { slug } = await params
const note = await getPublishedNote(slug)
if (!note) notFound()
const processedContent = processContent(note.content || '')
const readingTime = estimateReadingTime(note.content || '')
return (
<>
{/* KaTeX + fonts CSS */}
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.9/dist/katex.min.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link href="https://fonts.googleapis.com/css2?family=Source+Serif+4:opsz,wght@8..60,300..600&family=Inter:wght@400;500;600&display=swap" rel="stylesheet" />
<div style={{ minHeight: '100vh', background: '#FAF9F5', color: '#1a1a1a', fontFamily: "'Inter', sans-serif" }}>
{/* Top bar */}
<div style={{
position: 'sticky', top: 0, zIndex: 10,
background: 'rgba(250,249,245,0.85)', backdropFilter: 'blur(12px)',
borderBottom: '1px solid rgba(0,0,0,0.06)', padding: '10px 24px',
display: 'flex', alignItems: 'center', justifyContent: 'space-between',
}}>
<span style={{ fontFamily: "'Source Serif 4', serif", fontWeight: 600, fontSize: '15px' }}>Momento</span>
<a href={`/p/${slug}/report`} style={{ display: 'flex', alignItems: 'center', gap: '4px', fontSize: '12px', color: '#888', textDecoration: 'none', padding: '4px 10px', borderRadius: '6px', border: '1px solid rgba(0,0,0,0.1)' }}>
<Flag size={12} /> Signaler
</a>
</div>
{/* Article */}
<article style={{ maxWidth: '720px', margin: '0 auto', padding: '48px 24px 80px' }}>
<div style={{ display: 'flex', alignItems: 'center', gap: '8px', fontSize: '12px', color: '#999', marginBottom: '16px' }}>
<Calendar size={12} />
<span>{note.publishedAt ? format(new Date(note.publishedAt), 'd MMM yyyy') : ''}</span>
<span>·</span>
<Clock size={12} />
<span>{readingTime} min de lecture</span>
</div>
<h1 style={{ fontFamily: "'Source Serif 4', Georgia, serif", fontSize: 'clamp(28px,5vw,40px)', fontWeight: 600, lineHeight: 1.2, letterSpacing: '-0.02em', margin: '0 0 12px' }}>
{note.title || 'Sans titre'}
</h1>
{note.user?.name && (
<div style={{ display: 'flex', alignItems: 'center', gap: '8px', marginBottom: '40px' }}>
{note.user.image && <img src={note.user.image} alt="" style={{ width: '28px', height: '28px', borderRadius: '50%' }} />}
<span style={{ fontSize: '14px', color: '#666' }}>par {note.user.name}</span>
</div>
)}
<div style={{ height: '1px', background: 'rgba(0,0,0,0.08)', marginBottom: '40px' }} />
<div dir="auto" style={{ fontSize: '16px', lineHeight: 1.8 }} dangerouslySetInnerHTML={{ __html: processedContent }} />
<style>{`
article h1, article h2, article h3 { font-family: 'Source Serif 4', Georgia, serif; font-weight: 600; letter-spacing: -0.01em; margin-top: 1.8em; margin-bottom: 0.6em; }
article h2 { font-size: 1.5em; }
article h3 { font-size: 1.2em; }
article p { margin: 1em 0; }
article ul, article ol { padding-left: 1.5em; margin: 1em 0; }
article li { margin: 0.4em 0; }
article blockquote { border-left: 3px solid #A47148; padding-left: 1em; margin: 1.2em 0; color: #555; font-style: italic; }
article pre { background: #f4f3ef; padding: 16px; border-radius: 8px; overflow-x: auto; font-size: 14px; margin: 1.2em 0; }
article code { font-family: 'SF Mono', Menlo, monospace; }
article table { border-collapse: collapse; width: 100%; margin: 1.2em 0; }
article th, article td { border: 1px solid #ddd; padding: 8px 12px; text-align: left; }
article th { background: #f4f3ef; font-weight: 600; }
article img { max-width: 100%; height: auto; border-radius: 8px; margin: 1em 0; }
article a { color: #A47148; text-decoration: none; }
article a:hover { text-decoration: underline; }
.r-math-display { margin: 1.5em 0; text-align: center; overflow-x: auto; }
`}</style>
</article>
{/* Footer */}
<footer style={{ borderTop: '1px solid rgba(0,0,0,0.08)', padding: '32px 24px', textAlign: 'center', fontSize: '13px', color: '#999' }}>
<span style={{ fontFamily: "'Source Serif 4', serif", fontWeight: 600, color: '#A47148' }}>Momento</span>
{' — Votre mémoire augmentée par l\'IA'}
</footer>
</div>
</>
)
}