mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-04 08:59:40 +08:00
26 lines
744 B
React
26 lines
744 B
React
|
import React from 'react';
|
||
|
import * as utils from '../utils';
|
||
|
|
||
|
export default class Article extends React.Component {
|
||
|
render() {
|
||
|
const content = this.props.content;
|
||
|
const jumper = content.description.filter((node) => {
|
||
|
return node.type === 'h2';
|
||
|
}).map((node) => {
|
||
|
return <li key={node.children}><a href={`#${node.children}`}>{ node.children }</a></li>;
|
||
|
});
|
||
|
console.log(content.description);
|
||
|
return (
|
||
|
<article className="markdown">
|
||
|
<h1>{ content.meta.title }</h1>
|
||
|
{
|
||
|
jumper.length > 0 ?
|
||
|
<section className="toc"><ul>{ jumper }</ul></section> :
|
||
|
null
|
||
|
}
|
||
|
{ content.description.map(utils.objectToComponent) }
|
||
|
</article>
|
||
|
);
|
||
|
}
|
||
|
}
|