import React from 'react'; import { Helmet } from 'react-helmet-async'; import { FormattedMessage, injectIntl } from 'react-intl'; import classNames from 'classnames'; import { Row, Col, Affix, Tooltip } from 'antd'; import { getChildren } from 'jsonml.js/lib/utils'; import { AppstoreFilled, AppstoreOutlined } from '@ant-design/icons'; import Demo from './Demo'; import EditButton from './EditButton'; import { ping, getMetaDescription } from '../utils'; class ComponentDoc extends React.Component { state = { expandAll: false, showRiddleButton: false, }; componentDidMount() { this.pingTimer = ping(status => { if (status !== 'timeout' && status !== 'error') { this.setState({ showRiddleButton: true, }); } }); } shouldComponentUpdate(nextProps, nextState) { const { location, theme } = this.props; const { location: nextLocation, theme: nextTheme } = nextProps; const { expandAll, showRiddleButton } = this.state; const { expandAll: nextExpandAll, showRiddleButton: nextShowRiddleButton } = nextState; if ( nextLocation.pathname === location.pathname && expandAll === nextExpandAll && showRiddleButton === nextShowRiddleButton && theme === nextTheme ) { return false; } return true; } componentWillUnmount() { clearTimeout(this.pingTimer); } handleExpandToggle = () => { const { expandAll } = this.state; this.setState({ expandAll: !expandAll, }); }; render() { const { doc, location, intl: { locale }, utils, theme, demos, } = this.props; const { content, meta } = doc; const demoValues = Object.keys(demos).map(key => demos[key]); const { expandAll, showRiddleButton } = this.state; const isSingleCol = meta.cols === 1; const leftChildren = []; const rightChildren = []; const showedDemo = demoValues.some(demo => demo.meta.only) ? demoValues.filter(demo => demo.meta.only) : demoValues.filter(demo => demo.preview); showedDemo .sort((a, b) => a.meta.order - b.meta.order) .forEach((demoData, index) => { const demoElem = ( ); if (index % 2 === 0 || isSingleCol) { leftChildren.push(demoElem); } else { rightChildren.push(demoElem); } }); const expandTriggerClass = classNames({ 'code-box-expand-trigger': true, 'code-box-expand-trigger-active': expandAll, }); const jumper = showedDemo.map(demo => { const { title } = demo.meta; const localizeTitle = title[locale] || title; return (
  • {localizeTitle}
  • ); }); const { title, subtitle, filename } = meta; const articleClassName = classNames({ 'show-riddle-button': showRiddleButton, }); const helmetTitle = `${subtitle || ''} ${title[locale] || title} - Ant Design`; const contentChild = getMetaDescription(getChildren(content)); return (
    {helmetTitle && {helmetTitle}} {helmetTitle && } {contentChild && }
      {jumper}

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

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

    } > {expandAll ? : }

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