187 lines
3.8 KiB
JavaScript
187 lines
3.8 KiB
JavaScript
/** @format */
|
|
/**
|
|
* External dependencies
|
|
*/
|
|
import { __ } from '@wordpress/i18n';
|
|
import { Component } from '@wordpress/element';
|
|
import { format as formatDate } from '@wordpress/date';
|
|
|
|
/**
|
|
* WooCommerce dependencies
|
|
*/
|
|
import { getDateFormatsForInterval, getIntervalForQuery } from '@woocommerce/date';
|
|
import { formatCurrency, getCurrencyFormatDecimal } from '@woocommerce/currency';
|
|
import { Link } from '@woocommerce/components';
|
|
|
|
/**
|
|
* Internal dependencies
|
|
*/
|
|
import ReportTable from 'analytics/components/report-table';
|
|
import { numberFormat } from 'lib/number';
|
|
|
|
export default class CustomersReportTable extends Component {
|
|
constructor() {
|
|
super();
|
|
|
|
this.getHeadersContent = this.getHeadersContent.bind( this );
|
|
this.getRowsContent = this.getRowsContent.bind( this );
|
|
}
|
|
|
|
getHeadersContent() {
|
|
return [
|
|
{
|
|
label: __( 'Name', 'wc-admin' ),
|
|
key: 'name',
|
|
required: true,
|
|
isLeftAligned: true,
|
|
isSortable: true,
|
|
},
|
|
{
|
|
label: __( 'Username', 'wc-admin' ),
|
|
key: 'username',
|
|
hiddenByDefault: true,
|
|
},
|
|
{
|
|
label: __( 'Sign Up', 'wc-admin' ),
|
|
key: 'date_sign_up',
|
|
defaultSort: true,
|
|
isSortable: true,
|
|
},
|
|
{
|
|
label: __( 'Email', 'wc-admin' ),
|
|
key: 'email',
|
|
},
|
|
{
|
|
label: __( 'Orders', 'wc-admin' ),
|
|
key: 'orders_count',
|
|
isSortable: true,
|
|
isNumeric: true,
|
|
},
|
|
{
|
|
label: __( 'Lifetime Spend', 'wc-admin' ),
|
|
key: 'total_spend',
|
|
isSortable: true,
|
|
isNumeric: true,
|
|
},
|
|
{
|
|
label: __( 'AOV', 'wc-admin' ),
|
|
screenReaderLabel: __( 'Average Order Value', 'wc-admin' ),
|
|
key: 'average_order_value',
|
|
isNumeric: true,
|
|
},
|
|
{
|
|
label: __( 'Last Active', 'wc-admin' ),
|
|
key: 'date_last_active',
|
|
isSortable: true,
|
|
},
|
|
{
|
|
label: __( 'Country', 'wc-admin' ),
|
|
key: 'country',
|
|
},
|
|
{
|
|
label: __( 'City', 'wc-admin' ),
|
|
key: 'city',
|
|
hiddenByDefault: true,
|
|
},
|
|
{
|
|
label: __( 'Postal Code', 'wc-admin' ),
|
|
key: 'postal_code',
|
|
hiddenByDefault: true,
|
|
},
|
|
];
|
|
}
|
|
|
|
getRowsContent( customers ) {
|
|
const { query } = this.props;
|
|
const currentInterval = getIntervalForQuery( query );
|
|
const formats = getDateFormatsForInterval( currentInterval );
|
|
|
|
return customers.map( customer => {
|
|
const {
|
|
average_order_value,
|
|
id,
|
|
city,
|
|
country,
|
|
date_last_active,
|
|
date_sign_up,
|
|
email,
|
|
name,
|
|
orders_count,
|
|
postal_code,
|
|
username,
|
|
total_spend,
|
|
} = customer;
|
|
|
|
const customerNameLink = (
|
|
<Link href={ 'user-edit.php?user_id=' + id } type="wp-admin">
|
|
{ name }
|
|
</Link>
|
|
);
|
|
|
|
return [
|
|
{
|
|
display: customerNameLink,
|
|
value: name,
|
|
},
|
|
{
|
|
display: username,
|
|
value: username,
|
|
},
|
|
{
|
|
display: formatDate( formats.tableFormat, date_sign_up ),
|
|
value: date_sign_up,
|
|
},
|
|
{
|
|
display: <a href={ 'mailto:' + email }>{ email }</a>,
|
|
value: email,
|
|
},
|
|
{
|
|
display: numberFormat( orders_count ),
|
|
value: orders_count,
|
|
},
|
|
{
|
|
display: formatCurrency( total_spend ),
|
|
value: getCurrencyFormatDecimal( total_spend ),
|
|
},
|
|
{
|
|
display: average_order_value,
|
|
value: getCurrencyFormatDecimal( average_order_value ),
|
|
},
|
|
{
|
|
display: formatDate( formats.tableFormat, date_last_active ),
|
|
value: date_last_active,
|
|
},
|
|
{
|
|
display: country,
|
|
value: country,
|
|
},
|
|
{
|
|
display: city,
|
|
value: city,
|
|
},
|
|
{
|
|
display: postal_code,
|
|
value: postal_code,
|
|
},
|
|
];
|
|
} );
|
|
}
|
|
|
|
render() {
|
|
const { query } = this.props;
|
|
|
|
return (
|
|
<ReportTable
|
|
compareBy="customers"
|
|
endpoint="customers"
|
|
getHeadersContent={ this.getHeadersContent }
|
|
getRowsContent={ this.getRowsContent }
|
|
itemIdField="id"
|
|
query={ query }
|
|
title={ __( 'Registered Customers', 'wc-admin' ) }
|
|
columnPrefsKey="customers_report_columns"
|
|
/>
|
|
);
|
|
}
|
|
}
|