/** * External dependencies */ import { Component, Fragment } from '@wordpress/element'; import PropTypes from 'prop-types'; import { __ } from '@wordpress/i18n'; /** * Internal dependencies */ import { advancedFilters, charts, filters } from './config'; import getSelectedChart from '../../../lib/get-selected-chart'; import ReportChart from '../../components/report-chart'; import ReportSummary from '../../components/report-summary'; import TaxesReportTable from './table'; import ReportFilters from '../../components/report-filters'; class TaxesReport extends Component { getChartMeta() { const { query } = this.props; const isCompareTaxView = query.filter === 'compare-taxes'; const mode = isCompareTaxView ? 'item-comparison' : 'time-comparison'; const itemsLabel = __( '%d taxes', 'woocommerce' ); return { itemsLabel, mode, }; } render() { const { isRequesting, query, path } = this.props; const { mode, itemsLabel } = this.getChartMeta(); const chartQuery = { ...query, }; if ( mode === 'item-comparison' ) { chartQuery.segmentby = 'tax_rate_id'; } return ( ); } } TaxesReport.propTypes = { query: PropTypes.object.isRequired, }; export default TaxesReport;