/**
* External dependencies
*/
import { __ } from '@wordpress/i18n';
import { Fragment } from '@wordpress/element';
import PropTypes from 'prop-types';
import { withDispatch } from '@wordpress/data';
/**
* Internal dependencies
*/
import { advancedFilters, charts, filters } from './config';
import getSelectedChart from '../../../lib/get-selected-chart';
import ReportChart from '../../components/report-chart';
import ReportError from '../../components/report-error';
import ReportSummary from '../../components/report-summary';
import VariationsReportTable from './table';
import ReportFilters from '../../components/report-filters';
import { STORE_KEY as CES_STORE_KEY } from '../../../customer-effort-score-tracks/data/constants';
const getChartMeta = ( { query } ) => {
const isCompareView =
query[ 'filter-variations' ] === 'compare-variations' &&
query.variations &&
query.variations.split( ',' ).length > 1;
return {
compareObject: 'variations',
itemsLabel: __( '%d variations', 'woocommerce-admin' ),
mode: isCompareView ? 'item-comparison' : 'time-comparison',
};
};
const VariationsReport = ( props ) => {
const { itemsLabel, mode } = getChartMeta( props );
const {
path,
query,
isError,
isRequesting,
addCesSurveyForAnalytics,
} = props;
if ( isError ) {
return ;
}
const chartQuery = {
...query,
};
if ( mode === 'item-comparison' ) {
chartQuery.segmentby = 'variation';
}
filters[ 0 ].filters.find(
( item ) => item.value === 'compare-variations'
).settings.onClick = addCesSurveyForAnalytics;
return (
);
};
VariationsReport.propTypes = {
path: PropTypes.string.isRequired,
query: PropTypes.object.isRequired,
};
export default withDispatch( ( dispatch ) => {
const { addCesSurveyForAnalytics } = dispatch( CES_STORE_KEY );
return { addCesSurveyForAnalytics };
} )( VariationsReport );