ant-design/site/theme/template/Content/Article.jsx

96 lines
3.0 KiB
React
Raw Normal View History

2016-09-21 11:28:38 +08:00
import React, { PropTypes, Children, cloneElement } from 'react';
import { FormattedMessage } from 'react-intl';
import DocumentTitle from 'react-document-title';
import { getChildren } from 'jsonml.js/lib/utils';
import { Timeline } from 'antd';
import EditButton from './EditButton';
import * as utils from '../utils';
export default class Article extends React.Component {
2016-09-21 11:28:38 +08:00
static contextTypes = {
intl: PropTypes.object.isRequired,
}
componentDidMount() {
this.componentDidUpdate();
}
componentDidUpdate() {
2016-08-23 21:00:35 +08:00
const links = [...document.querySelectorAll('.outside-link.internal')];
if (links.length === 0) {
return;
}
2016-10-09 22:55:20 +08:00
// eslint-disable-next-line
2016-10-09 17:46:40 +08:00
const checkImgUrl = 'https://g-assets.daily.taob' + 'ao.net/seajs/seajs/2.2.0/sea.js';
this.pingTimer = utils.ping(checkImgUrl, (status) => {
2016-10-09 17:46:40 +08:00
if (status !== 'timeout') {
links.forEach(link => (link.style.display = 'block'));
2016-08-04 17:59:07 +08:00
} else {
links.forEach(link => link.parentNode.removeChild(link));
}
});
}
2016-07-17 15:25:12 +08:00
componentWillUnmount() {
clearTimeout(this.pingTimer);
}
getArticle(article) {
const { content } = this.props;
const { meta } = content;
if (!meta.timeline) {
return article;
}
const timelineItems = [];
let temp = [];
2016-08-01 11:43:42 +08:00
let i = 1;
Children.forEach(article.props.children, (child) => {
if (child.type === 'h2' && temp.length > 0) {
timelineItems.push(<Timeline.Item key={i}>{temp}</Timeline.Item>);
temp = [];
2016-08-01 11:43:42 +08:00
i += 1;
}
temp.push(child);
});
2016-08-01 11:43:42 +08:00
if (temp.length > 0) {
timelineItems.push(<Timeline.Item key={i}>{temp}</Timeline.Item>);
}
return cloneElement(article, {
children: <Timeline>{timelineItems}</Timeline>,
});
}
render() {
const props = this.props;
const content = props.content;
const { meta, description } = content;
2016-09-21 11:28:38 +08:00
const { title, subtitle, filename } = meta;
const locale = this.context.intl.locale;
return (
2016-09-21 11:28:38 +08:00
<DocumentTitle title={`${title[locale] || title} - Ant Design`}>
<article className="markdown">
<h1>
2016-09-21 11:28:38 +08:00
{title[locale] || title}
{
2016-09-21 11:28:38 +08:00
!subtitle || locale === 'en-US' ? null :
<span className="subtitle">{subtitle}</span>
}
<EditButton title={<FormattedMessage id="app.content.edit-page" />} filename={filename} />
</h1>
{
!description ? null :
props.utils.toReactComponent(
['section', { className: 'markdown' }].concat(getChildren(description))
)
}
{
2016-07-17 15:20:30 +08:00
(!content.toc || content.toc.length <= 1 || meta.toc === false) ? null :
<section className="toc">{props.utils.toReactComponent(content.toc)}</section>
}
{
this.getArticle(props.utils.toReactComponent(
['section', { className: 'markdown' }].concat(getChildren(content.content))
))
}
</article>
</DocumentTitle>
);
}
}