2016-02-29 14:08:40 +08:00
|
|
|
import React from 'react';
|
2016-03-07 17:33:38 +08:00
|
|
|
import { Link } from 'react-router';
|
2016-03-02 17:12:43 +08:00
|
|
|
import ImagePreview from './ImagePreview';
|
2016-03-16 17:46:35 +08:00
|
|
|
import VideoPlayer from './VideoPlayer';
|
2016-02-29 14:08:40 +08:00
|
|
|
import * as utils from '../utils';
|
|
|
|
|
2016-03-07 15:20:18 +08:00
|
|
|
export default class Article extends React.Component {
|
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
2016-03-02 17:12:43 +08:00
|
|
|
|
2016-03-07 15:20:18 +08:00
|
|
|
this.imgToPreview = this.imgToPreview.bind(this);
|
2016-03-16 17:46:35 +08:00
|
|
|
this.enhanceVideo = this.enhanceVideo.bind(this);
|
2016-03-07 15:20:18 +08:00
|
|
|
}
|
2016-03-07 17:33:38 +08:00
|
|
|
|
2016-03-23 14:15:00 +08:00
|
|
|
componentDidMount() {
|
|
|
|
this.componentDidUpdate();
|
|
|
|
}
|
|
|
|
componentDidUpdate() {
|
|
|
|
const { chinese, english } = this.props.content.meta;
|
|
|
|
utils.setTitle(`${chinese || english} - Ant Design`);
|
|
|
|
}
|
|
|
|
|
2016-03-07 15:20:18 +08:00
|
|
|
isPreviewImg(string) {
|
|
|
|
return /^<img\s/i.test(string) && /preview-img/gi.test(string);
|
2016-03-02 17:12:43 +08:00
|
|
|
}
|
|
|
|
|
2016-03-07 15:20:18 +08:00
|
|
|
imgToPreview(node) {
|
2016-04-01 16:52:47 +08:00
|
|
|
if (node[0] === 'p' &&
|
|
|
|
node[1][0] === 'innerHTML' &&
|
|
|
|
this.isPreviewImg(node[1][1])) {
|
|
|
|
const imgs = node.slice(1)
|
|
|
|
.map((n) => n[1])
|
|
|
|
.filter((img) => img);
|
|
|
|
return <ImagePreview imgs={imgs} />;
|
2016-03-07 15:20:18 +08:00
|
|
|
}
|
2016-04-01 16:52:47 +08:00
|
|
|
return node;
|
2016-03-07 15:20:18 +08:00
|
|
|
}
|
2016-03-02 17:12:43 +08:00
|
|
|
|
2016-03-16 17:46:35 +08:00
|
|
|
isVideo(string) {
|
|
|
|
return /^<video\s/i.test(string);
|
|
|
|
}
|
|
|
|
|
|
|
|
enhanceVideo(node) {
|
2016-04-01 16:52:47 +08:00
|
|
|
if (node[0] === 'innerHTML' && this.isVideo(node[1])) {
|
|
|
|
return <VideoPlayer video={node[1]} />;
|
2016-03-16 17:46:35 +08:00
|
|
|
}
|
2016-04-01 16:52:47 +08:00
|
|
|
return node;
|
2016-03-16 17:46:35 +08:00
|
|
|
}
|
|
|
|
|
2016-02-29 14:08:40 +08:00
|
|
|
render() {
|
2016-03-07 17:33:38 +08:00
|
|
|
const { content, location } = this.props;
|
2016-02-29 14:08:40 +08:00
|
|
|
const jumper = content.description.filter((node) => {
|
2016-04-01 16:52:47 +08:00
|
|
|
return node[0] === 'h2';
|
2016-02-29 14:08:40 +08:00
|
|
|
}).map((node) => {
|
2016-03-07 17:33:38 +08:00
|
|
|
return (
|
2016-04-01 16:52:47 +08:00
|
|
|
<li key={node[1]}>
|
|
|
|
<Link to={{ pathname: location.pathname, query: { scrollTo: node[1] } }}
|
|
|
|
dangerouslySetInnerHTML={{ __html: node[1] }} />
|
2016-03-07 17:33:38 +08:00
|
|
|
</li>
|
|
|
|
);
|
2016-02-29 14:08:40 +08:00
|
|
|
});
|
2016-02-29 14:34:51 +08:00
|
|
|
|
2016-04-01 16:52:47 +08:00
|
|
|
const { meta, intro } = content;
|
|
|
|
const description = content.description
|
|
|
|
.map(this.imgToPreview)
|
|
|
|
.map(this.enhanceVideo);
|
2016-03-02 17:12:43 +08:00
|
|
|
|
2016-02-29 14:08:40 +08:00
|
|
|
return (
|
|
|
|
<article className="markdown">
|
2016-03-15 11:19:57 +08:00
|
|
|
<h1>
|
2016-04-01 16:52:47 +08:00
|
|
|
{ meta.chinese || meta.english }
|
2016-03-15 11:19:57 +08:00
|
|
|
{
|
2016-04-01 16:52:47 +08:00
|
|
|
!meta.subtitle ? null :
|
|
|
|
<span className="subtitle">{ meta.subtitle }</span>
|
2016-03-15 11:19:57 +08:00
|
|
|
}
|
|
|
|
</h1>
|
|
|
|
{
|
2016-04-01 16:52:47 +08:00
|
|
|
!intro ? null :
|
|
|
|
utils.jsonmlToComponent(
|
|
|
|
location.pathname,
|
|
|
|
['section', { className: 'markdown' }].concat(intro)
|
|
|
|
)
|
2016-03-15 11:19:57 +08:00
|
|
|
}
|
2016-02-29 14:08:40 +08:00
|
|
|
{
|
|
|
|
jumper.length > 0 ?
|
2016-02-29 14:34:51 +08:00
|
|
|
<section className="toc"><ul>{ jumper }</ul></section> :
|
2016-02-29 14:08:40 +08:00
|
|
|
null
|
|
|
|
}
|
2016-04-01 16:52:47 +08:00
|
|
|
{
|
|
|
|
utils.jsonmlToComponent(
|
|
|
|
location.pathname,
|
|
|
|
['section', { className: 'markdown' }].concat(description)
|
|
|
|
)
|
|
|
|
}
|
2016-02-29 14:08:40 +08:00
|
|
|
</article>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|