import React from 'react'; import DocumentTitle from 'react-document-title'; import { FormattedMessage } from 'react-intl'; import classNames from 'classnames'; import { Row, Col, Icon, Affix } from 'antd'; import { getChildren } from 'jsonml.js/lib/utils'; import Demo from './Demo'; import EditButton from './EditButton'; export default class ComponentDoc extends React.Component { static contextTypes = { intl: React.PropTypes.object, } constructor(props) { super(props); this.state = { expandAll: false, }; } handleExpandToggle = () => { this.setState({ expandAll: !this.state.expandAll, }); } render() { const props = this.props; const { doc, location } = props; const { content, meta } = doc; const locale = this.context.intl.locale; const demos = Object.keys(props.demos).map(key => props.demos[key]); const expand = this.state.expandAll; const isSingleCol = meta.cols === 1; const leftChildren = []; const rightChildren = []; const showedDemo = demos.some(demo => demo.meta.only) ? demos.filter(demo => demo.meta.only) : demos.filter(demo => demo.preview); showedDemo.sort((a, b) => a.meta.order - b.meta.order) .forEach((demoData, index) => { if (index % 2 === 0 || isSingleCol) { leftChildren.push( ); } else { rightChildren.push( ); } }); const expandTriggerClass = classNames({ 'code-box-expand-trigger': true, 'code-box-expand-trigger-active': expand, }); const jumper = showedDemo.map((demo) => { const title = demo.meta.title; const localizeTitle = title[locale] || title; return (
  • {localizeTitle}
  • ); }); const { title, subtitle, filename } = meta; return (
      {jumper}

    {title[locale] || title} { !subtitle ? null : {subtitle} } } filename={filename} />

    { props.utils.toReactComponent( ['section', { className: 'markdown' }] .concat(getChildren(content)) ) }

    {leftChildren} { isSingleCol ? null : {rightChildren} } { props.utils.toReactComponent( ['section', { className: 'markdown api-container', }].concat(getChildren(doc.api || ['placeholder'])) ) }
    ); } }