ant-design/site/component/Article/index.jsx

93 lines
2.4 KiB
React
Raw Normal View History

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';
import toReactComponent from 'jsonml-to-react-component';
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
imgToPreview(node) {
2016-04-01 16:52:47 +08:00
if (node[0] === 'p' &&
node[1][0] === 'img' &&
/preview-img/gi.test(node[1][1].class)) {
2016-04-01 16:52:47 +08:00
const imgs = node.slice(1)
.filter((img) => img[1])
.map((n) => n[1]);
2016-04-01 16:52:47 +08:00
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
enhanceVideo(node) {
if (node[0] === 'video') {
2016-04-01 16:52:47 +08:00
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] } }}>
2016-04-11 10:12:48 +08:00
{toReactComponent(node[1])}
</Link>
2016-03-07 17:33:38 +08:00
</li>
);
2016-02-29 14:08:40 +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">
<h1>
2016-04-01 16:52:47 +08:00
{ meta.chinese || meta.english }
{
2016-04-01 16:52:47 +08:00
!meta.subtitle ? null :
<span className="subtitle">{ meta.subtitle }</span>
}
</h1>
{
2016-04-01 16:52:47 +08:00
!intro ? null :
utils.jsonmlToComponent(
location.pathname,
['section', { className: 'markdown' }].concat(intro)
)
}
2016-02-29 14:08:40 +08:00
{
jumper.length > 0 ?
<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>
);
}
}