woocommerce/plugins/woocommerce-admin/client/dashboard/dashboard-charts/block.js

52 lines
1.0 KiB
JavaScript
Raw Normal View History

/** @format */
/**
* External dependencies
*/
import { Component, Fragment } from '@wordpress/element';
import PropTypes from 'prop-types';
/**
* WooCommerce dependencies
*/
import { Card } from '@woocommerce/components';
/**
* Internal dependencies
*/
import ReportChart from 'analytics/components/report-chart';
import './block.scss';
class ChartBlock extends Component {
render() {
const { charts, endpoint, path, query } = this.props;
if ( ! charts || ! charts.length ) {
return null;
}
return (
<Fragment>
<Card className="woocommerce-dashboard__chart-block" title={ charts[ 0 ].label }>
<ReportChart
charts={ charts }
endpoint={ endpoint }
mode="block"
path={ path }
query={ query }
selectedChart={ charts[ 0 ] }
/>
</Card>
</Fragment>
);
}
}
ChartBlock.propTypes = {
charts: PropTypes.array,
endpoint: PropTypes.string.isRequired,
path: PropTypes.string.isRequired,
query: PropTypes.object.isRequired,
};
export default ChartBlock;