woocommerce/plugins/woocommerce-admin/client/analytics/report/coupons/index.js

81 lines
1.9 KiB
JavaScript
Raw Normal View History

2018-09-17 02:26:34 +00:00
/** @format */
/**
* External dependencies
*/
import { Component, Fragment } from '@wordpress/element';
import PropTypes from 'prop-types';
import { __ } from '@wordpress/i18n';
/**
* WooCommerce dependencies
*/
import { ReportFilters } from '@woocommerce/components';
2018-09-17 02:26:34 +00:00
/**
* Internal dependencies
*/
import { charts, filters } from './config';
import CouponsReportTable from './table';
import getSelectedChart from 'lib/get-selected-chart';
import ReportChart from 'analytics/components/report-chart';
import ReportSummary from 'analytics/components/report-summary';
2018-09-17 02:26:34 +00:00
export default class CouponsReport extends Component {
getChartMeta() {
const { query } = this.props;
const isCompareView = [ 'top_orders', 'top_discount', 'compare-coupons' ].includes(
query.filter
);
const mode = isCompareView ? 'item-comparison' : 'time-comparison';
const itemsLabel = __( '%d coupons', 'wc-admin' );
return {
itemsLabel,
mode,
};
}
2018-09-17 02:26:34 +00:00
render() {
const { isRequesting, query, path } = this.props;
const { mode, itemsLabel } = this.getChartMeta();
const chartQuery = {
...query,
};
if ( 'item-comparison' === mode ) {
chartQuery.segmentby = 'coupon';
}
2018-09-17 02:26:34 +00:00
return (
<Fragment>
<ReportFilters query={ query } path={ path } filters={ filters } />
<ReportSummary
charts={ charts }
endpoint="coupons"
isRequesting={ isRequesting }
query={ chartQuery }
selectedChart={ getSelectedChart( query.chart, charts ) }
/>
<ReportChart
filters={ filters }
charts={ charts }
mode={ mode }
endpoint="coupons"
path={ path }
query={ chartQuery }
isRequesting={ isRequesting }
itemsLabel={ itemsLabel }
selectedChart={ getSelectedChart( query.chart, charts ) }
/>
<CouponsReportTable isRequesting={ isRequesting } query={ query } />
2018-09-17 02:26:34 +00:00
</Fragment>
);
}
}
CouponsReport.propTypes = {
query: PropTypes.object.isRequired,
};