90 lines
2.3 KiB
JavaScript
90 lines
2.3 KiB
JavaScript
|
/** @format */
|
||
|
/**
|
||
|
* External dependencies
|
||
|
*/
|
||
|
import classnames from 'classnames';
|
||
|
import { Component } from '@wordpress/element';
|
||
|
import { find, get } from 'lodash';
|
||
|
|
||
|
/**
|
||
|
* Internal dependencies
|
||
|
*/
|
||
|
import ComponentExample from './example';
|
||
|
import ComponentDocs from './docs';
|
||
|
import { Card, Link } from '@woocommerce/components';
|
||
|
import examples from './examples.json';
|
||
|
import Header from 'header';
|
||
|
import './style.scss';
|
||
|
|
||
|
const camelCaseToSlug = name => {
|
||
|
return name.replace( /\.?([A-Z])/g, ( x, y ) => '-' + y.toLowerCase() ).replace( /^-/, '' );
|
||
|
};
|
||
|
|
||
|
const getExampleData = example => {
|
||
|
const componentName = get( example, 'component' );
|
||
|
const filePath = get( example, 'filePath', camelCaseToSlug( componentName ) );
|
||
|
const render = get( example, 'render', `My${ componentName }` );
|
||
|
|
||
|
return {
|
||
|
componentName,
|
||
|
filePath,
|
||
|
render,
|
||
|
};
|
||
|
};
|
||
|
|
||
|
export default class extends Component {
|
||
|
render() {
|
||
|
const { params: { component } } = this.props;
|
||
|
const className = classnames( 'woocommerce_devdocs', {
|
||
|
'is-single': component,
|
||
|
'is-list': ! component,
|
||
|
} );
|
||
|
|
||
|
let exampleList = examples;
|
||
|
let breadcrumbs = [ 'Documentation' ];
|
||
|
if ( component ) {
|
||
|
const example = find( examples, ex => component === camelCaseToSlug( ex.component ) );
|
||
|
breadcrumbs = [ [ '/devdocs', 'Documentation' ], example.component ];
|
||
|
exampleList = [ example ];
|
||
|
}
|
||
|
|
||
|
return (
|
||
|
<div className={ className }>
|
||
|
<Header sections={ breadcrumbs } />
|
||
|
{ exampleList.map( example => {
|
||
|
const { componentName, filePath, render } = getExampleData( example );
|
||
|
const cardClasses = classnames(
|
||
|
'woocommerce-devdocs__card',
|
||
|
`woocommerce-devdocs__card--${ filePath }`
|
||
|
);
|
||
|
return (
|
||
|
<Card
|
||
|
key={ componentName }
|
||
|
className={ cardClasses }
|
||
|
title={
|
||
|
component ? (
|
||
|
componentName
|
||
|
) : (
|
||
|
<Link href={ `/devdocs/${ filePath }` }>{ componentName }</Link>
|
||
|
)
|
||
|
}
|
||
|
action={ component ? <Link href={ '/devdocs' }>Full list</Link> : null }
|
||
|
>
|
||
|
<ComponentExample
|
||
|
asyncName={ componentName }
|
||
|
component={ componentName }
|
||
|
filePath={ filePath }
|
||
|
render={ render }
|
||
|
/>
|
||
|
|
||
|
{ component && (
|
||
|
<ComponentDocs componentName={ componentName } filePath={ filePath } />
|
||
|
) }
|
||
|
</Card>
|
||
|
);
|
||
|
} ) }
|
||
|
</div>
|
||
|
);
|
||
|
}
|
||
|
}
|