File size: 1,361 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
import clsx from 'clsx';
import PropTypes from 'prop-types';
import { Component } from 'react';
import DocsExampleError from 'calypso/devdocs/docs-example/error';
const renderTitle = ( unique, name, url, onTitleClick ) =>
unique ? (
<h2 className="docs-example__wrapper-header-title">{ name }</h2>
) : (
<h2 className="docs-example__wrapper-header-title">
<a href={ url } onClick={ onTitleClick } onKeyPress={ onTitleClick }>
{ name }
</a>
</h2>
);
class DocsExampleWrapper extends Component {
static propTypes = {
name: PropTypes.string.isRequired,
unique: PropTypes.bool,
url: PropTypes.string.isRequired,
onTitleClick: PropTypes.func,
};
state = {
hasError: false,
};
componentDidCatch() {
this.setState( { hasError: true } );
}
render() {
const { children, name, unique, url, onTitleClick } = this.props;
return (
<div
className={ clsx( 'docs-example__wrapper', {
'docs-example__wrapper-unique': unique,
} ) }
>
<div className="docs-example__wrapper-header">
{ renderTitle( unique, name, url, onTitleClick ) }
</div>
<div className="docs-example__wrapper-content">
<span className="docs-example__wrapper-content-centering">
{ this.state.hasError ? <DocsExampleError /> : children }
</span>
</div>
</div>
);
}
}
export default DocsExampleWrapper;
|