You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
998 B
39 lines
998 B
import React from 'react';
|
|
import { Tabs } from 'antd';
|
|
|
|
const LANGS = {
|
|
tsx: 'TypeScript',
|
|
jsx: 'JavaScript',
|
|
};
|
|
|
|
interface CodePreviewProps {
|
|
codes?: Record<PropertyKey, string>;
|
|
toReactComponent?: (node: any) => React.ReactNode;
|
|
onCodeTypeChange?: (activeKey: string) => void;
|
|
}
|
|
|
|
const CodePreview: React.FC<CodePreviewProps> = ({ toReactComponent, codes, onCodeTypeChange }) => {
|
|
const langList = Object.keys(codes).sort().reverse();
|
|
|
|
let content: React.ReactNode;
|
|
|
|
if (langList.length === 1) {
|
|
content = toReactComponent(['pre', { lang: langList[0], highlighted: codes[langList[0]] }]);
|
|
} else {
|
|
content = (
|
|
<Tabs
|
|
centered
|
|
onChange={onCodeTypeChange}
|
|
items={langList.map((lang) => ({
|
|
label: LANGS[lang],
|
|
key: lang,
|
|
children: toReactComponent(['pre', { lang, highlighted: codes[lang] }]),
|
|
}))}
|
|
/>
|
|
);
|
|
}
|
|
|
|
return <div className="highlight">{content}</div>;
|
|
};
|
|
|
|
export default CodePreview;
|
|
|