import type { CmsType } from './cms.type';
const CMS_CLIENT = process.env.CMS_CLIENT as CmsType;
interface ContentRendererProps {
content: unknown;
type?: CmsType;
}
export async function ContentRenderer({
content,
type = CMS_CLIENT,
}: ContentRendererProps) {
switch (type) {
case 'keystatic': {
const { KeystaticContentRenderer } = await import(
'../../keystatic/src/content-renderer'
);
return ;
}
case 'wordpress': {
const { WordpressContentRenderer } = await import(
'../../wordpress/src/content-renderer'
);
return ;
}
default: {
console.error(`Unknown CMS client: ${type as string}`);
return null;
}
}
}