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

93 lines
2.6 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';
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-04-13 10:13:07 +08:00
import { getTagName, getAttributes, getChildren, isElement } from 'jsonml.js/lib/utils';
2016-02-29 14:08:40 +08:00
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-13 10:13:07 +08:00
if (getTagName(node) === 'p' &&
getTagName(getChildren(node)[0]) === 'img' &&
/preview-img/gi.test(getAttributes(getChildren(node)[0]).class)) {
const imgs = getChildren(node)
.filter((img) => isElement(img) && Object.keys(getAttributes(img)).length > 0)
.map((img) => getAttributes(img));
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) {
2016-04-13 10:13:07 +08:00
if (getTagName(node) === 'video') {
return <VideoPlayer video={getAttributes(node)} />;
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-13 10:13:07 +08:00
return getTagName(node) === 'h2';
2016-02-29 14:08:40 +08:00
}).map((node) => {
2016-03-07 17:33:38 +08:00
return (
2016-04-13 10:13:07 +08:00
<li key={getChildren(node)[0]}>
<Link to={{ pathname: location.pathname, query: { scrollTo: getChildren(node)[0] } }}>
{ utils.jsonmlToComponent(location.pathname, getChildren(node)[0]) }
</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>
);
}
}