import React from 'react'; import { Link } from 'react-router'; import ImagePreview from './ImagePreview'; import VideoPlayer from './VideoPlayer'; import * as utils from '../utils'; export default class Article extends React.Component { constructor(props) { super(props); this.imgToPreview = this.imgToPreview.bind(this); this.enhanceVideo = this.enhanceVideo.bind(this); } componentDidMount() { this.componentDidUpdate(); } componentDidUpdate() { const { chinese, english } = this.props.content.meta; utils.setTitle(`${chinese || english} - Ant Design`); } isPreviewImg(string) { return /^ n[1]) .filter((img) => img); return ; } return node; } isVideo(string) { return /^; } return node; } render() { const { content, location } = this.props; const jumper = content.description.filter((node) => { return node[0] === 'h2'; }).map((node) => { return (
  • ); }); const { meta, intro } = content; const description = content.description .map(this.imgToPreview) .map(this.enhanceVideo); return (

    { meta.chinese || meta.english } { !meta.subtitle ? null : { meta.subtitle } }

    { !intro ? null : utils.jsonmlToComponent( location.pathname, ['section', { className: 'markdown' }].concat(intro) ) } { jumper.length > 0 ?
      { jumper }
    : null } { utils.jsonmlToComponent( location.pathname, ['section', { className: 'markdown' }].concat(description) ) }
    ); } }