mirror of
https://github.com/Redocly/redoc.git
synced 2025-08-07 13:44:54 +03:00
feat: Add bundles
This commit is contained in:
parent
422ec09771
commit
eb1b3b55f4
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -40,8 +40,6 @@ export class Redoc extends React.Component<RedocProps> {
|
||||||
} = this.props;
|
} = this.props;
|
||||||
const store = this.props.store;
|
const store = this.props.store;
|
||||||
|
|
||||||
console.log('components', components);
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<ThemeProvider theme={options.theme}>
|
<ThemeProvider theme={options.theme}>
|
||||||
<StoreProvider value={this.props.store}>
|
<StoreProvider value={this.props.store}>
|
||||||
|
@ -65,7 +63,7 @@ export class Redoc extends React.Component<RedocProps> {
|
||||||
<ApiInfo store={store} />
|
<ApiInfo store={store} />
|
||||||
{markdownIndex &&
|
{markdownIndex &&
|
||||||
markdownIndex.components.map((MDXComponent, idx) => {
|
markdownIndex.components.map((MDXComponent, idx) => {
|
||||||
return <MDXComponent key={`mdxsection-${idx}`} />;
|
return <MDXComponent key={`mdx-${idx}`} />;
|
||||||
})}
|
})}
|
||||||
<ContentItems items={menu.items as any} />
|
<ContentItems items={menu.items as any} />
|
||||||
</ApiContentWrap>
|
</ApiContentWrap>
|
||||||
|
|
|
@ -13,7 +13,6 @@ const OverflowHighlighter = styled.pre`
|
||||||
`;
|
`;
|
||||||
|
|
||||||
const Highlighter: React.FC<Props> = ({ children, className }) => {
|
const Highlighter: React.FC<Props> = ({ children, className }) => {
|
||||||
console.log('className', className);
|
|
||||||
const language = className ? className.replace(/language-/, '').trim() : 'bash';
|
const language = className ? className.replace(/language-/, '').trim() : 'bash';
|
||||||
|
|
||||||
if (!children) {
|
if (!children) {
|
||||||
|
|
|
@ -64,12 +64,10 @@ const Wrapper = ({ children }) => {
|
||||||
|
|
||||||
const sections = getSections(children);
|
const sections = getSections(children);
|
||||||
|
|
||||||
console.log('sections', sections);
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
{sections.map((section) => (
|
{sections.map((section) => (
|
||||||
<Section key={`resection-${section.id}`} id={section.id}>
|
<Section key={`section-${section.id}`} id={section.id}>
|
||||||
<Row id={section.id}>
|
<Row id={section.id}>
|
||||||
{section.middle && <MiddlePanel>{section.middle}</MiddlePanel>}
|
{section.middle && <MiddlePanel>{section.middle}</MiddlePanel>}
|
||||||
{section.right && <DarkRightPanel>{section.right}</DarkRightPanel>}
|
{section.right && <DarkRightPanel>{section.right}</DarkRightPanel>}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user