/** @format */ /** * External dependencies */ import { __, _n } from '@wordpress/i18n'; import { Component, Fragment } from '@wordpress/element'; import { Tooltip } from '@wordpress/components'; /** * WooCommerce dependencies */ import { defaultTableDateFormat } from 'lib/date'; import { formatCurrency, getCurrencyFormatDecimal } from 'lib/currency-format'; import { Date, Link } from '@woocommerce/components'; import { formatValue } from 'lib/number-format'; import { getAdminLink, getSetting } from '@woocommerce/wc-admin-settings'; const { countries } = getSetting( 'dataEndpoints', { countries: {} } ); /** * Internal dependencies */ import ReportTable from 'analytics/components/report-table'; export default class CustomersReportTable 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: __( 'Name', 'woocommerce-admin' ), key: 'name', required: true, isLeftAligned: true, isSortable: true, }, { label: __( 'Username', 'woocommerce-admin' ), key: 'username', hiddenByDefault: true, }, { label: __( 'Last Active', 'woocommerce-admin' ), key: 'date_last_active', defaultSort: true, isSortable: true, }, { label: __( 'Sign Up', 'woocommerce-admin' ), key: 'date_registered', isSortable: true, }, { label: __( 'Email', 'woocommerce-admin' ), key: 'email', }, { label: __( 'Orders', 'woocommerce-admin' ), key: 'orders_count', isSortable: true, isNumeric: true, }, { label: __( 'Total Spend', 'woocommerce-admin' ), key: 'total_spend', isSortable: true, isNumeric: true, }, { label: __( 'AOV', 'woocommerce-admin' ), screenReaderLabel: __( 'Average Order Value', 'woocommerce-admin' ), key: 'avg_order_value', isNumeric: true, }, { label: __( 'Country', 'woocommerce-admin' ), key: 'country', isSortable: true, }, { label: __( 'City', 'woocommerce-admin' ), key: 'city', hiddenByDefault: true, isSortable: true, }, { label: __( 'Region', 'woocommerce-admin' ), key: 'state', hiddenByDefault: true, isSortable: true, }, { label: __( 'Postal Code', 'woocommerce-admin' ), key: 'postcode', hiddenByDefault: true, isSortable: true, }, ]; } getCountryName( code ) { return typeof countries[ code ] !== 'undefined' ? countries[ code ] : null; } getRowsContent( customers ) { return customers.map( customer => { const { avg_order_value, date_last_active, date_registered, email, name, user_id, orders_count, username, total_spend, postcode, city, state, country, } = customer; const countryName = this.getCountryName( country ); const customerNameLink = user_id ? ( ) : ( '—' ); const countryDisplay = ( { countryName } ); return [ { display: customerNameLink, value: name, }, { display: username, value: username, }, { display: dateLastActive, value: date_last_active, }, { display: dateRegistered, value: date_registered, }, { display: { email }, value: email, }, { display: formatValue( 'number', orders_count ), value: orders_count, }, { display: formatCurrency( total_spend ), value: getCurrencyFormatDecimal( total_spend ), }, { display: formatCurrency( avg_order_value ), value: getCurrencyFormatDecimal( avg_order_value ), }, { display: countryDisplay, value: country, }, { display: city, value: city, }, { display: state, value: state, }, { display: postcode, value: postcode, }, ]; } ); } getSummary( totals ) { const { customers_count = 0, avg_orders_count = 0, avg_total_spend = 0, avg_avg_order_value = 0, } = totals; return [ { label: _n( 'customer', 'customers', customers_count, 'woocommerce-admin' ), value: formatValue( 'number', customers_count ), }, { label: _n( 'average order', 'average orders', avg_orders_count, 'woocommerce-admin' ), value: formatValue( 'number', avg_orders_count ), }, { label: __( 'average lifetime spend', 'woocommerce-admin' ), value: formatCurrency( avg_total_spend ), }, { label: __( 'average order value', 'woocommerce-admin' ), value: formatCurrency( avg_avg_order_value ), }, ]; } render() { const { isRequesting, query, filters, advancedFilters } = this.props; return ( ); } }