Update page.tsx

This commit is contained in:
MacRimi 2025-02-15 15:54:19 +01:00 committed by GitHub
parent 2428e3bea2
commit 3076132def
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,29 +1,60 @@
import fs from "fs" import fs from "fs"
import path from "path" import path from "path"
import { remark } from "remark"
import html from "remark-html"
import dynamic from "next/dynamic"
import React from "react"
import parse from "html-react-parser"
async function getChangelog() { // 🔹 Importamos `CopyableCode` dinámicamente para evitar problemas de SSR
const changelogPath = path.join(process.cwd(), "..", "CHANGELOG.md") const CopyableCode = dynamic(() => import("@/components/CopyableCode"), { ssr: false })
async function getChangelogContent() {
try { try {
return fs.readFileSync(changelogPath, "utf8") const changelogPath = path.join(process.cwd(), "..", "CHANGELOG.md")
const fileContents = fs.readFileSync(changelogPath, "utf8")
const result = await remark().use(html).process(fileContents)
return result.toString()
} catch (error) { } catch (error) {
console.error("Error reading changelog file:", error) console.error("❌ Error al leer el archivo CHANGELOG.md", error)
return "<p>Changelog content not found.</p>" return "<p class='text-red-600'>Error: No se pudo cargar el contenido del changelog.</p>"
} }
} }
// 🔹 Limpia las comillas invertidas en fragmentos de código en línea
function cleanInlineCode(content: string) {
return content.replace(/<code>(.*?)<\/code>/g, (_, codeContent) => {
return `<code class="bg-gray-200 text-gray-900 px-1 rounded">${codeContent.replace(/^`|`$/g, "")}</code>`
})
}
// 🔹 Envuelve los bloques de código en <CopyableCode />
function wrapCodeBlocksWithCopyable(content: string) {
return parse(content, {
replace: (domNode: any) => {
if (domNode.name === "pre" && domNode.children.length > 0) {
const codeElement = domNode.children.find((child: any) => child.name === "code")
if (codeElement) {
const codeContent = codeElement.children[0]?.data?.trim() || ""
return <CopyableCode code={codeContent} />
}
}
}
})
}
export default async function ChangelogPage() { export default async function ChangelogPage() {
const changelogContent = await getChangelog() const changelogContent = await getChangelogContent()
const cleanedInlineCode = cleanInlineCode(changelogContent) // 🔹 Primero limpiamos código en línea
const parsedContent = wrapCodeBlocksWithCopyable(cleanedInlineCode) // 🔹 Luego aplicamos JSX a bloques de código
return ( return (
<div className="min-h-screen bg-white"> <div className="min-h-screen bg-white text-gray-900">
<div className="container mx-auto px-4 py-16 max-w-4xl"> <div className="container mx-auto px-4 py-16 max-w-4xl">
<h1 className="text-4xl font-bold mb-8 text-gray-900">Changelog</h1> <h1 className="text-4xl font-bold mb-8">Changelog</h1>
<div <div className="prose max-w-none text-[16px]">{parsedContent}</div> {/* 📌 Texto ajustado a 16px */}
className="prose prose-gray max-w-none prose-headings:text-gray-900 prose-p:text-gray-700 prose-a:text-blue-600 hover:prose-a:text-blue-800 prose-strong:text-gray-900 prose-ul:text-gray-700"
dangerouslySetInnerHTML={{ __html: changelogContent }}
/>
</div> </div>
</div> </div>
) )
} }