172 lines
4.4 KiB
JavaScript
172 lines
4.4 KiB
JavaScript
/** @format */
|
|
/**
|
|
* External dependencies
|
|
*/
|
|
import { __ } from '@wordpress/i18n';
|
|
import { Component } from '@wordpress/element';
|
|
import { compose } from '@wordpress/compose';
|
|
import PropTypes from 'prop-types';
|
|
|
|
/**
|
|
* WooCommerce dependencies
|
|
*/
|
|
import { getDateParamsFromQuery } from '@woocommerce/date';
|
|
import { getNewPath } from '@woocommerce/navigation';
|
|
import { SummaryList, SummaryListPlaceholder, SummaryNumber } from '@woocommerce/components';
|
|
import { calculateDelta, formatValue } from '@woocommerce/number';
|
|
import { formatCurrency } from '@woocommerce/currency';
|
|
|
|
/**
|
|
* Internal dependencies
|
|
*/
|
|
import { getSummaryNumbers } from 'wc-api/reports/utils';
|
|
import ReportError from 'analytics/components/report-error';
|
|
import withSelect from 'wc-api/with-select';
|
|
|
|
/**
|
|
* Component to render summary numbers in reports.
|
|
*/
|
|
export class ReportSummary extends Component {
|
|
formatVal( val, type ) {
|
|
return 'currency' === type ? formatCurrency( val ) : formatValue( type, val );
|
|
}
|
|
|
|
getValues( key, type ) {
|
|
const { emptySearchResults, summaryData } = this.props;
|
|
const { totals } = summaryData;
|
|
|
|
const primaryValue = emptySearchResults ? 0 : totals.primary[ key ];
|
|
const secondaryValue = emptySearchResults ? 0 : totals.secondary[ key ];
|
|
|
|
return {
|
|
delta: calculateDelta( primaryValue, secondaryValue ),
|
|
prevValue: this.formatVal( secondaryValue, type ),
|
|
value: this.formatVal( primaryValue, type ),
|
|
};
|
|
}
|
|
|
|
render() {
|
|
const { charts, isRequesting, query, selectedChart, summaryData } = this.props;
|
|
const { isError, isRequesting: isSummaryDataRequesting } = summaryData;
|
|
|
|
if ( isError ) {
|
|
return <ReportError isError />;
|
|
}
|
|
|
|
if ( isRequesting || isSummaryDataRequesting ) {
|
|
return <SummaryListPlaceholder numberOfItems={ charts.length } />;
|
|
}
|
|
|
|
const { compare } = getDateParamsFromQuery( query );
|
|
|
|
const renderSummaryNumbers = ( { onToggle } ) =>
|
|
charts.map( chart => {
|
|
const { key, order, orderby, label, type } = chart;
|
|
const newPath = { chart: key };
|
|
if ( orderby ) {
|
|
newPath.orderby = orderby;
|
|
}
|
|
if ( order ) {
|
|
newPath.order = order;
|
|
}
|
|
const href = getNewPath( newPath );
|
|
const isSelected = selectedChart.key === key;
|
|
const { delta, prevValue, value } = this.getValues( key, type );
|
|
|
|
return (
|
|
<SummaryNumber
|
|
key={ key }
|
|
delta={ delta }
|
|
href={ href }
|
|
label={ label }
|
|
prevLabel={
|
|
'previous_period' === compare
|
|
? __( 'Previous Period:', 'wc-admin' )
|
|
: __( 'Previous Year:', 'wc-admin' )
|
|
}
|
|
prevValue={ prevValue }
|
|
selected={ isSelected }
|
|
value={ value }
|
|
onLinkClickCallback={ onToggle }
|
|
/>
|
|
);
|
|
} );
|
|
|
|
return <SummaryList>{ renderSummaryNumbers }</SummaryList>;
|
|
}
|
|
}
|
|
|
|
ReportSummary.propTypes = {
|
|
/**
|
|
* Properties of all the charts available for that report.
|
|
*/
|
|
charts: PropTypes.array.isRequired,
|
|
/**
|
|
* The endpoint to use in API calls to populate the Summary Numbers.
|
|
* For example, if `taxes` is provided, data will be fetched from the report
|
|
* `taxes` endpoint (ie: `/wc/v4/reports/taxes/stats`). If the provided endpoint
|
|
* doesn't exist, an error will be shown to the user with `ReportError`.
|
|
*/
|
|
endpoint: PropTypes.string.isRequired,
|
|
/**
|
|
* Allows specifying a property different from the `endpoint` that will be used
|
|
* to limit the items when there is an active search.
|
|
*/
|
|
limitProperty: PropTypes.string,
|
|
/**
|
|
* The query string represented in object form.
|
|
*/
|
|
query: PropTypes.object.isRequired,
|
|
/**
|
|
* Whether there is an API call running.
|
|
*/
|
|
isRequesting: PropTypes.bool,
|
|
/**
|
|
* Properties of the selected chart.
|
|
*/
|
|
selectedChart: PropTypes.shape( {
|
|
/**
|
|
* Key of the selected chart.
|
|
*/
|
|
key: PropTypes.string.isRequired,
|
|
} ).isRequired,
|
|
/**
|
|
* Data to display in the SummaryNumbers.
|
|
*/
|
|
summaryData: PropTypes.object,
|
|
};
|
|
|
|
ReportSummary.defaultProps = {
|
|
summaryData: {
|
|
totals: {
|
|
primary: {},
|
|
secondary: {},
|
|
},
|
|
isError: false,
|
|
isRequesting: false,
|
|
},
|
|
};
|
|
|
|
export default compose(
|
|
withSelect( ( select, props ) => {
|
|
const { endpoint, isRequesting, limitProperty, query } = props;
|
|
const limitBy = limitProperty || endpoint;
|
|
|
|
if ( isRequesting ) {
|
|
return {};
|
|
}
|
|
|
|
if ( query.search && ! ( query[ limitBy ] && query[ limitBy ].length ) ) {
|
|
return {
|
|
emptySearchResults: true,
|
|
};
|
|
}
|
|
|
|
const summaryData = getSummaryNumbers( endpoint, query, select, limitBy );
|
|
|
|
return {
|
|
summaryData,
|
|
};
|
|
} )
|
|
)( ReportSummary );
|