import React, { Children, cloneElement } from 'react';
import DocumentTitle from 'react-document-title';
import { getChildren } from 'jsonml.js/lib/utils';
import { Timeline } from 'antd';
import * as utils from '../utils';
export default class Article extends React.Component {
componentDidMount() {
this.componentDidUpdate();
}
componentDidUpdate() {
const links = Array.apply(null, document.querySelectorAll('.outside-link.internal'));
if (links.length === 0) {
return;
}
const checkImgUrl = 'http://alipay-rmsdeploy-dev-image.oss-cn-hangzhou-zmf.aliyuncs.com/rmsportal/JdVaTbZzPxEldUi.png';
this.pingTimer = utils.ping(checkImgUrl, status => {
if (status === 'responded') {
links.forEach(link => (link.style.display = 'block'));
} else {
links.forEach(link => link.parentNode.removeChild(link));
}
});
}
componentWillUnmount() {
clearTimeout(this.pingTimer);
}
getArticle(article) {
const { content } = this.props;
const { meta } = content;
if (!meta.timeline) {
return article;
}
const timelineItems = [];
let temp = [];
let i = 1;
Children.forEach(article.props.children, child => {
if (child.type === 'h2' && temp.length > 0) {
timelineItems.push({temp});
temp = [];
i += 1;
}
temp.push(child);
});
if (temp.length > 0) {
timelineItems.push({temp});
}
return cloneElement(article, {
children: {timelineItems},
});
}
render() {
const props = this.props;
const content = props.content;
const { meta, description } = content;
const { title, subtitle, chinese, english } = meta;
return (
{title || english}
{
(!subtitle && !chinese) ? null :
{subtitle || chinese}
}
{
!description ? null :
props.utils.toReactComponent(
['section', { className: 'markdown' }].concat(getChildren(description))
)
}
{
(!content.toc || content.toc.length <= 1 || meta.toc === false) ? null :
{props.utils.toReactComponent(content.toc)}
}
{
this.getArticle(props.utils.toReactComponent(
['section', { className: 'markdown' }].concat(getChildren(content.content))
))
}
);
}
}