astro-ghostcms/.pnpm-store/v3/files/43/86e99ecb547ec97839a4c97063b...

49 lines
1.5 KiB
Plaintext

import { AstroError } from "../core/errors/errors.js";
import { AstroJSX, jsx } from "../jsx-runtime/index.js";
import { renderJSX } from "../runtime/server/jsx.js";
const slotName = (str) => str.trim().replace(/[-_]([a-z])/g, (_, w) => w.toUpperCase());
async function check(Component, props, { default: children = null, ...slotted } = {}) {
if (typeof Component !== "function")
return false;
const slots = {};
for (const [key, value] of Object.entries(slotted)) {
const name = slotName(key);
slots[name] = value;
}
try {
const result = await Component({ ...props, ...slots, children });
return result[AstroJSX];
} catch (e) {
const error = e;
if (Component[Symbol.for("mdx-component")]) {
throw new AstroError({
message: error.message,
title: error.name,
hint: `This issue often occurs when your MDX component encounters runtime errors.`,
name: error.name,
stack: error.stack
});
}
}
return false;
}
async function renderToStaticMarkup(Component, props = {}, { default: children = null, ...slotted } = {}) {
const slots = {};
for (const [key, value] of Object.entries(slotted)) {
const name = slotName(key);
slots[name] = value;
}
const { result } = this;
const html = await renderJSX(result, jsx(Component, { ...props, ...slots, children }));
return { html };
}
var server_default = {
check,
renderToStaticMarkup
};
export {
check,
server_default as default,
renderToStaticMarkup
};