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.

106 lines
3.4 KiB

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 delegate from 'delegate';
import EditButton from './EditButton';
import * as utils from '../utils';
export default class Article extends React.Component {
static contextTypes = {
intl: PropTypes.object.isRequired,
}
componentDidMount() {
// Add ga event click
this.delegation = delegate(this.node, '.resource-card', 'click', (e) => {
if (window.ga) {
window.ga('send', 'event', 'Download', 'resource', e.delegateTarget.href);
}
}, false);
this.componentDidUpdate();
}
componentDidUpdate() {
const links = [...document.querySelectorAll('.outside-link.internal')];
if (links.length === 0) {
return;
}
8 years ago
// eslint-disable-next-line
const checkImgUrl = 'https://private.alipay' + 'objects.com/alip' + 'ay-rmsdeploy-image/rmsportal/RKuAiriJqrUhyqW.png';
this.pingTimer = utils.ping(checkImgUrl, (status) => {
8 years ago
if (status !== 'timeout' && status !== 'error') {
links.forEach(link => (link.style.display = 'block'));
8 years ago
} else {
links.forEach(link => link.parentNode.removeChild(link));
}
});
}
componentWillUnmount() {
clearTimeout(this.pingTimer);
if (this.delegation) {
this.delegation.destroy();
}
}
getArticle(article) {
const { content } = this.props;
const { meta } = content;
if (!meta.timeline) {
return article;
}
const timelineItems = [];
let temp = [];
8 years ago
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 = [];
8 years ago
i += 1;
}
temp.push(child);
});
8 years ago
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;
const { title, subtitle, filename } = meta;
const locale = this.context.intl.locale;
return (
<DocumentTitle title={`${title[locale] || title} - Ant Design`}>
<article className="markdown" ref={(node) => { this.node = node; }}>
<h1>
{title[locale] || title}
{
!subtitle || locale === 'en-US' ? null :
8 years ago
<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))
)
}
{
8 years ago
(!content.toc || content.toc.length <= 1 || meta.toc === false) ? null :
8 years ago
<section className="toc">{props.utils.toReactComponent(content.toc)}</section>
}
{
this.getArticle(props.utils.toReactComponent(
['section', { className: 'markdown' }].concat(getChildren(content.content))
))
}
</article>
</DocumentTitle>
);
}
}