2017-05-18 14:22:47 +08:00
|
|
|
import React, { Children, cloneElement } from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
2016-09-18 14:27:41 +08:00
|
|
|
import { FormattedMessage } from 'react-intl';
|
2016-05-27 11:48:08 +08:00
|
|
|
import DocumentTitle from 'react-document-title';
|
|
|
|
import { getChildren } from 'jsonml.js/lib/utils';
|
2017-11-27 15:36:58 +08:00
|
|
|
import { Timeline, Alert, Affix } from 'antd';
|
2016-08-17 12:06:38 +08:00
|
|
|
import EditButton from './EditButton';
|
2017-07-10 22:17:52 +08:00
|
|
|
import { ping } from '../utils';
|
2016-05-27 11:48:08 +08:00
|
|
|
|
|
|
|
export default class Article extends React.Component {
|
2016-09-21 11:28:38 +08:00
|
|
|
static contextTypes = {
|
|
|
|
intl: PropTypes.object.isRequired,
|
2018-12-07 20:02:01 +08:00
|
|
|
};
|
2018-06-22 21:05:13 +08:00
|
|
|
|
2016-05-27 11:48:08 +08:00
|
|
|
componentDidMount() {
|
|
|
|
this.componentDidUpdate();
|
|
|
|
}
|
2018-06-22 21:05:13 +08:00
|
|
|
|
2016-05-27 11:48:08 +08:00
|
|
|
componentDidUpdate() {
|
2016-08-23 21:00:35 +08:00
|
|
|
const links = [...document.querySelectorAll('.outside-link.internal')];
|
2016-05-27 11:48:08 +08:00
|
|
|
if (links.length === 0) {
|
|
|
|
return;
|
|
|
|
}
|
2018-12-07 20:02:01 +08:00
|
|
|
this.pingTimer = ping(status => {
|
2017-02-23 00:35:16 +08:00
|
|
|
if (status !== 'timeout' && status !== 'error') {
|
2018-12-07 20:02:01 +08:00
|
|
|
links.forEach(link => {
|
2018-11-28 15:00:03 +08:00
|
|
|
link.style.display = 'block'; // eslint-disable-line
|
|
|
|
});
|
2016-08-04 17:59:07 +08:00
|
|
|
} else {
|
|
|
|
links.forEach(link => link.parentNode.removeChild(link));
|
2016-05-27 11:48:08 +08:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2018-06-22 21:05:13 +08:00
|
|
|
|
2016-07-17 15:25:12 +08:00
|
|
|
componentWillUnmount() {
|
|
|
|
clearTimeout(this.pingTimer);
|
2018-11-13 15:24:12 +08:00
|
|
|
}
|
|
|
|
|
2018-12-07 20:02:01 +08:00
|
|
|
onResourceClick = e => {
|
2018-11-13 15:44:14 +08:00
|
|
|
const cardNode = e.target.closest('.resource-card');
|
|
|
|
if (!window.gtag || !cardNode) {
|
2018-11-13 15:24:12 +08:00
|
|
|
return;
|
2017-04-07 14:29:44 +08:00
|
|
|
}
|
2018-11-13 15:24:12 +08:00
|
|
|
window.gtag('event', 'resource', {
|
|
|
|
event_category: 'Download',
|
2018-11-13 15:44:14 +08:00
|
|
|
event_label: cardNode.href,
|
2018-11-13 15:24:12 +08:00
|
|
|
});
|
2018-12-07 20:02:01 +08:00
|
|
|
};
|
2018-06-22 21:05:13 +08:00
|
|
|
|
2016-05-27 11:48:08 +08:00
|
|
|
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;
|
2018-12-07 20:02:01 +08:00
|
|
|
Children.forEach(article.props.children, child => {
|
2016-05-27 11:48:08 +08:00
|
|
|
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;
|
2016-05-27 11:48:08 +08:00
|
|
|
}
|
|
|
|
temp.push(child);
|
|
|
|
});
|
2016-08-01 11:43:42 +08:00
|
|
|
if (temp.length > 0) {
|
|
|
|
timelineItems.push(<Timeline.Item key={i}>{temp}</Timeline.Item>);
|
|
|
|
}
|
2016-05-27 11:48:08 +08:00
|
|
|
return cloneElement(article, {
|
|
|
|
children: <Timeline>{timelineItems}</Timeline>,
|
|
|
|
});
|
|
|
|
}
|
2018-06-22 21:05:13 +08:00
|
|
|
|
2016-05-27 11:48:08 +08:00
|
|
|
render() {
|
2017-10-09 13:23:20 +08:00
|
|
|
const { props } = this;
|
|
|
|
const { content } = props;
|
2016-05-27 11:48:08 +08:00
|
|
|
const { meta, description } = content;
|
2016-09-21 11:28:38 +08:00
|
|
|
const { title, subtitle, filename } = meta;
|
2018-12-07 20:02:01 +08:00
|
|
|
const {
|
|
|
|
intl: { locale },
|
|
|
|
} = this.context;
|
2017-05-17 11:34:08 +08:00
|
|
|
const isNotTranslated = locale === 'en-US' && typeof title === 'object';
|
2016-05-27 11:48:08 +08:00
|
|
|
return (
|
2016-09-21 11:28:38 +08:00
|
|
|
<DocumentTitle title={`${title[locale] || title} - Ant Design`}>
|
2018-12-07 20:02:01 +08:00
|
|
|
{/* eslint-disable-next-line */}
|
2018-11-13 15:24:12 +08:00
|
|
|
<article className="markdown" onClick={this.onResourceClick}>
|
2017-05-17 11:34:08 +08:00
|
|
|
{isNotTranslated && (
|
|
|
|
<Alert
|
|
|
|
type="warning"
|
2018-12-07 20:02:01 +08:00
|
|
|
message={
|
2017-05-17 11:34:08 +08:00
|
|
|
<span>
|
2018-01-01 17:24:21 +08:00
|
|
|
This article has not been translated yet. Wanna help us out?
|
2018-12-07 20:02:01 +08:00
|
|
|
<a href="https://github.com/ant-design/ant-design/issues/1471">
|
|
|
|
See this issue on GitHub.
|
|
|
|
</a>
|
2017-05-17 11:34:08 +08:00
|
|
|
</span>
|
2018-12-07 20:02:01 +08:00
|
|
|
}
|
2017-05-17 11:34:08 +08:00
|
|
|
/>
|
|
|
|
)}
|
2016-05-27 11:48:08 +08:00
|
|
|
<h1>
|
2016-09-21 11:28:38 +08:00
|
|
|
{title[locale] || title}
|
2018-12-07 20:02:01 +08:00
|
|
|
{!subtitle || locale === 'en-US' ? null : <span className="subtitle">{subtitle}</span>}
|
|
|
|
<EditButton
|
|
|
|
title={<FormattedMessage id="app.content.edit-page" />}
|
|
|
|
filename={filename}
|
|
|
|
/>
|
2016-05-27 11:48:08 +08:00
|
|
|
</h1>
|
2018-12-07 20:02:01 +08:00
|
|
|
{!description
|
|
|
|
? null
|
|
|
|
: props.utils.toReactComponent(
|
|
|
|
['section', { className: 'markdown' }].concat(getChildren(description)),
|
|
|
|
)}
|
|
|
|
{!content.toc || content.toc.length <= 1 || meta.toc === false ? null : (
|
|
|
|
<Affix className="toc-affix" offsetTop={16}>
|
|
|
|
{props.utils.toReactComponent(
|
|
|
|
['ul', { className: 'toc' }].concat(getChildren(content.toc)),
|
|
|
|
)}
|
|
|
|
</Affix>
|
|
|
|
)}
|
|
|
|
{this.getArticle(
|
2017-06-07 17:06:21 +08:00
|
|
|
props.utils.toReactComponent(
|
2018-12-07 20:02:01 +08:00
|
|
|
['section', { className: 'markdown' }].concat(getChildren(content.content)),
|
|
|
|
),
|
|
|
|
)}
|
|
|
|
{props.utils.toReactComponent(
|
|
|
|
[
|
|
|
|
'section',
|
|
|
|
{
|
2017-06-07 17:06:21 +08:00
|
|
|
className: 'markdown api-container',
|
2018-12-07 20:02:01 +08:00
|
|
|
},
|
|
|
|
].concat(getChildren(content.api || ['placeholder'])),
|
|
|
|
)}
|
2016-05-27 11:48:08 +08:00
|
|
|
</article>
|
|
|
|
</DocumentTitle>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|