337 lines
7.9 KiB
JavaScript
337 lines
7.9 KiB
JavaScript
/**
|
|
* External dependencies
|
|
*/
|
|
import { __, _n } from '@wordpress/i18n';
|
|
import { Component } from '@wordpress/element';
|
|
import { format as formatDate } from '@wordpress/date';
|
|
import { compose } from '@wordpress/compose';
|
|
import { get } from 'lodash';
|
|
|
|
/**
|
|
* WooCommerce dependencies
|
|
*/
|
|
import {
|
|
appendTimestamp,
|
|
defaultTableDateFormat,
|
|
getCurrentDates,
|
|
} from 'lib/date';
|
|
import { Date, Link } from '@woocommerce/components';
|
|
import { formatValue } from '@woocommerce/number';
|
|
import { getSetting } from '@woocommerce/wc-admin-settings';
|
|
import { SETTINGS_STORE_NAME } from '@woocommerce/data';
|
|
|
|
/**
|
|
* Internal dependencies
|
|
*/
|
|
import { QUERY_DEFAULTS } from 'wc-api/constants';
|
|
import ReportTable from 'analytics/components/report-table';
|
|
import withSelect from 'wc-api/with-select';
|
|
import { getReportTableQuery } from 'wc-api/reports/utils';
|
|
import { CurrencyContext } from 'lib/currency-context';
|
|
|
|
class RevenueReportTable extends Component {
|
|
constructor() {
|
|
super();
|
|
|
|
this.getHeadersContent = this.getHeadersContent.bind( this );
|
|
this.getRowsContent = this.getRowsContent.bind( this );
|
|
this.getSummary = this.getSummary.bind( this );
|
|
}
|
|
|
|
getHeadersContent() {
|
|
return [
|
|
{
|
|
label: __( 'Date', 'woocommerce-admin' ),
|
|
key: 'date',
|
|
required: true,
|
|
defaultSort: true,
|
|
isLeftAligned: true,
|
|
isSortable: true,
|
|
},
|
|
{
|
|
label: __( 'Orders', 'woocommerce-admin' ),
|
|
key: 'orders_count',
|
|
required: false,
|
|
isSortable: true,
|
|
isNumeric: true,
|
|
},
|
|
{
|
|
label: __( 'Gross Sales', 'woocommerce-admin' ),
|
|
key: 'gross_sales',
|
|
required: false,
|
|
isSortable: true,
|
|
isNumeric: true,
|
|
},
|
|
{
|
|
label: __( 'Returns', 'woocommerce-admin' ),
|
|
key: 'refunds',
|
|
required: false,
|
|
isSortable: true,
|
|
isNumeric: true,
|
|
},
|
|
{
|
|
label: __( 'Coupons', 'woocommerce-admin' ),
|
|
key: 'coupons',
|
|
required: false,
|
|
isSortable: true,
|
|
isNumeric: true,
|
|
},
|
|
{
|
|
label: __( 'Net Sales', 'woocommerce-admin' ),
|
|
key: 'net_revenue',
|
|
required: false,
|
|
isSortable: true,
|
|
isNumeric: true,
|
|
},
|
|
{
|
|
label: __( 'Taxes', 'woocommerce-admin' ),
|
|
key: 'taxes',
|
|
required: false,
|
|
isSortable: true,
|
|
isNumeric: true,
|
|
},
|
|
{
|
|
label: __( 'Shipping', 'woocommerce-admin' ),
|
|
key: 'shipping',
|
|
required: false,
|
|
isSortable: true,
|
|
isNumeric: true,
|
|
},
|
|
{
|
|
label: __( 'Total Sales', 'woocommerce-admin' ),
|
|
key: 'total_sales',
|
|
required: false,
|
|
isSortable: true,
|
|
isNumeric: true,
|
|
},
|
|
];
|
|
}
|
|
|
|
getRowsContent( data = [] ) {
|
|
const dateFormat = getSetting( 'dateFormat', defaultTableDateFormat );
|
|
const {
|
|
formatAmount,
|
|
render: renderCurrency,
|
|
formatDecimal: getCurrencyFormatDecimal,
|
|
getCurrencyConfig,
|
|
} = this.context;
|
|
|
|
return data.map( ( row ) => {
|
|
const {
|
|
coupons,
|
|
gross_sales: grossSales,
|
|
total_sales: totalSales,
|
|
net_revenue: netRevenue,
|
|
orders_count: ordersCount,
|
|
refunds,
|
|
shipping,
|
|
taxes,
|
|
} = row.subtotals;
|
|
|
|
// @todo How to create this per-report? Can use `w`, `year`, `m` to build time-specific order links
|
|
// we need to know which kind of report this is, and parse the `label` to get this row's date
|
|
const orderLink = (
|
|
<Link
|
|
href={
|
|
'edit.php?post_type=shop_order&m=' +
|
|
formatDate( 'Ymd', row.date_start )
|
|
}
|
|
type="wp-admin"
|
|
>
|
|
{ formatValue(
|
|
getCurrencyConfig(),
|
|
'number',
|
|
ordersCount
|
|
) }
|
|
</Link>
|
|
);
|
|
return [
|
|
{
|
|
display: (
|
|
<Date
|
|
date={ row.date_start }
|
|
visibleFormat={ dateFormat }
|
|
/>
|
|
),
|
|
value: row.date_start,
|
|
},
|
|
{
|
|
display: orderLink,
|
|
value: Number( ordersCount ),
|
|
},
|
|
{
|
|
display: renderCurrency( grossSales ),
|
|
value: getCurrencyFormatDecimal( grossSales ),
|
|
},
|
|
{
|
|
display: formatAmount( refunds ),
|
|
value: getCurrencyFormatDecimal( refunds ),
|
|
},
|
|
{
|
|
display: formatAmount( coupons ),
|
|
value: getCurrencyFormatDecimal( coupons ),
|
|
},
|
|
{
|
|
display: renderCurrency( netRevenue ),
|
|
value: getCurrencyFormatDecimal( netRevenue ),
|
|
},
|
|
{
|
|
display: renderCurrency( taxes ),
|
|
value: getCurrencyFormatDecimal( taxes ),
|
|
},
|
|
{
|
|
display: renderCurrency( shipping ),
|
|
value: getCurrencyFormatDecimal( shipping ),
|
|
},
|
|
{
|
|
display: renderCurrency( totalSales ),
|
|
value: getCurrencyFormatDecimal( totalSales ),
|
|
},
|
|
];
|
|
} );
|
|
}
|
|
|
|
getSummary( totals, totalResults = 0 ) {
|
|
const {
|
|
orders_count: ordersCount = 0,
|
|
gross_sales: grossSales = 0,
|
|
total_sales: totalSales = 0,
|
|
refunds = 0,
|
|
coupons = 0,
|
|
taxes = 0,
|
|
shipping = 0,
|
|
net_revenue: netRevenue = 0,
|
|
} = totals;
|
|
const { formatAmount, getCurrencyConfig } = this.context;
|
|
const currency = getCurrencyConfig();
|
|
return [
|
|
{
|
|
label: _n( 'day', 'days', totalResults, 'woocommerce-admin' ),
|
|
value: formatValue( currency, 'number', totalResults ),
|
|
},
|
|
{
|
|
label: _n(
|
|
'order',
|
|
'orders',
|
|
ordersCount,
|
|
'woocommerce-admin'
|
|
),
|
|
value: formatValue( currency, 'number', ordersCount ),
|
|
},
|
|
{
|
|
label: __( 'gross sales', 'woocommerce-admin' ),
|
|
value: formatAmount( grossSales ),
|
|
},
|
|
{
|
|
label: __( 'returns', 'woocommerce-admin' ),
|
|
value: formatAmount( refunds ),
|
|
},
|
|
{
|
|
label: __( 'coupons', 'woocommerce-admin' ),
|
|
value: formatAmount( coupons ),
|
|
},
|
|
{
|
|
label: __( 'net sales', 'woocommerce-admin' ),
|
|
value: formatAmount( netRevenue ),
|
|
},
|
|
{
|
|
label: __( 'taxes', 'woocommerce-admin' ),
|
|
value: formatAmount( taxes ),
|
|
},
|
|
{
|
|
label: __( 'shipping', 'woocommerce-admin' ),
|
|
value: formatAmount( shipping ),
|
|
},
|
|
{
|
|
label: __( 'total sales', 'woocommerce-admin' ),
|
|
value: formatAmount( totalSales ),
|
|
},
|
|
];
|
|
}
|
|
|
|
render() {
|
|
const { advancedFilters, filters, tableData, query } = this.props;
|
|
|
|
return (
|
|
<ReportTable
|
|
endpoint="revenue"
|
|
getHeadersContent={ this.getHeadersContent }
|
|
getRowsContent={ this.getRowsContent }
|
|
getSummary={ this.getSummary }
|
|
summaryFields={ [
|
|
'orders_count',
|
|
'gross_sales',
|
|
'total_sales',
|
|
'refunds',
|
|
'coupons',
|
|
'taxes',
|
|
'shipping',
|
|
'net_revenue',
|
|
] }
|
|
query={ query }
|
|
tableData={ tableData }
|
|
title={ __( 'Revenue', 'woocommerce-admin' ) }
|
|
columnPrefsKey="revenue_report_columns"
|
|
filters={ filters }
|
|
advancedFilters={ advancedFilters }
|
|
/>
|
|
);
|
|
}
|
|
}
|
|
|
|
RevenueReportTable.contextType = CurrencyContext;
|
|
|
|
export default compose(
|
|
withSelect( ( select, props ) => {
|
|
const { query, filters, advancedFilters } = props;
|
|
const { woocommerce_default_date_range: defaultDateRange } = select(
|
|
SETTINGS_STORE_NAME
|
|
).getSetting( 'wc_admin', 'wcAdminSettings' );
|
|
const datesFromQuery = getCurrentDates( query, defaultDateRange );
|
|
const {
|
|
getReportStats,
|
|
getReportStatsError,
|
|
isReportStatsRequesting,
|
|
} = select( 'wc-api' );
|
|
|
|
// @todo Support hour here when viewing a single day
|
|
const tableQuery = {
|
|
interval: 'day',
|
|
orderby: query.orderby || 'date',
|
|
order: query.order || 'desc',
|
|
page: query.paged || 1,
|
|
per_page: query.per_page || QUERY_DEFAULTS.pageSize,
|
|
after: appendTimestamp( datesFromQuery.primary.after, 'start' ),
|
|
before: appendTimestamp( datesFromQuery.primary.before, 'end' ),
|
|
};
|
|
const filteredTableQuery = getReportTableQuery( {
|
|
endpoint: 'revenue',
|
|
query,
|
|
select,
|
|
tableQuery,
|
|
filters,
|
|
advancedFilters,
|
|
} );
|
|
const revenueData = getReportStats( 'revenue', filteredTableQuery );
|
|
const isError = Boolean(
|
|
getReportStatsError( 'revenue', filteredTableQuery )
|
|
);
|
|
const isRequesting = isReportStatsRequesting(
|
|
'revenue',
|
|
filteredTableQuery
|
|
);
|
|
|
|
return {
|
|
tableData: {
|
|
items: {
|
|
data: get( revenueData, [ 'data', 'intervals' ], [] ),
|
|
totalResults: get( revenueData, [ 'totalResults' ], 0 ),
|
|
},
|
|
isError,
|
|
isRequesting,
|
|
query: tableQuery,
|
|
},
|
|
};
|
|
} )
|
|
)( RevenueReportTable );
|