/** * External dependencies */ import { __, _n, sprintf } from '@wordpress/i18n'; import { Component, Fragment } from '@wordpress/element'; import { map } from 'lodash'; import { Date, Link, OrderStatus, ViewMoreList } from '@woocommerce/components'; import { formatValue } from '@woocommerce/number'; import { getNewPath, getPersistedQuery } from '@woocommerce/navigation'; import { defaultTableDateFormat } from '@woocommerce/date'; /** * Internal dependencies */ import ReportTable from '../../components/report-table'; import { getAdminSetting } from '~/utils/admin-settings'; import { CurrencyContext } from '../../../lib/currency-context'; const capitalizeFirstLetter = ( expr ) => expr.charAt( 0 ).toUpperCase() + expr.slice( 1 ); class OrdersReportTable 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' ), key: 'date', required: true, defaultSort: true, isLeftAligned: true, isSortable: true, }, { label: __( 'Order #', 'woocommerce' ), screenReaderLabel: __( 'Order Number', 'woocommerce' ), key: 'order_number', required: true, }, { label: __( 'Status', 'woocommerce' ), key: 'status', required: false, isSortable: false, }, { label: __( 'Customer', 'woocommerce' ), key: 'customer_id', required: false, isSortable: false, }, { label: __( 'Customer type', 'woocommerce' ), key: 'customer_type', required: false, isSortable: false, }, { label: __( 'Product(s)', 'woocommerce' ), screenReaderLabel: __( 'Products', 'woocommerce' ), key: 'products', required: false, isSortable: false, }, { label: __( 'Items sold', 'woocommerce' ), key: 'num_items_sold', required: false, isSortable: true, isNumeric: true, }, { label: __( 'Coupon(s)', 'woocommerce' ), screenReaderLabel: __( 'Coupons', 'woocommerce' ), key: 'coupons', required: false, isSortable: false, }, { label: __( 'Net sales', 'woocommerce' ), screenReaderLabel: __( 'Net sales', 'woocommerce' ), key: 'net_total', required: true, isSortable: true, isNumeric: true, }, ]; } getCustomerName( customer ) { const { first_name: firstName, last_name: lastName } = customer || {}; if ( ! firstName && ! lastName ) { return ''; } return [ firstName, lastName ].join( ' ' ); } getRowsContent( tableData ) { const { query } = this.props; const persistedQuery = getPersistedQuery( query ); const dateFormat = getAdminSetting( 'dateFormat', defaultTableDateFormat ); const { render: renderCurrency, getCurrencyConfig } = this.context; return map( tableData, ( row ) => { const { currency, date_created: dateCreated, net_total: netTotal, num_items_sold: numItemsSold, order_id: orderId, order_number: orderNumber, parent_id: parentId, status, customer_type: customerType, } = row; const extendedInfo = row.extended_info || {}; const { coupons, customer, products } = extendedInfo; const formattedProducts = products .sort( ( itemA, itemB ) => itemB.quantity - itemA.quantity ) .map( ( item ) => ( { label: item.name, quantity: item.quantity, href: getNewPath( persistedQuery, '/analytics/products', { filter: 'single_product', products: item.id, } ), } ) ); const formattedCoupons = coupons.map( ( coupon ) => ( { label: coupon.code, href: getNewPath( persistedQuery, '/analytics/coupons', { filter: 'single_coupon', coupons: coupon.id, } ), } ) ); return [ { display: ( ), value: dateCreated, }, { display: ( { orderNumber } ), value: orderNumber, }, { display: ( ), value: status, }, { display: this.getCustomerName( customer ), value: this.getCustomerName( customer ), }, { display: capitalizeFirstLetter( customerType ), value: customerType, }, { display: this.renderList( formattedProducts.length ? [ formattedProducts[ 0 ] ] : [], formattedProducts.map( ( product ) => ( { label: sprintf( __( '%s× %s', 'woocommerce' ), product.quantity, product.label ), href: product.href, } ) ) ), value: formattedProducts .map( ( { quantity, label } ) => sprintf( __( '%s× %s', 'woocommerce' ), quantity, label ) ) .join( ', ' ), }, { display: formatValue( getCurrencyConfig(), 'number', numItemsSold ), value: numItemsSold, }, { display: this.renderList( formattedCoupons.length ? [ formattedCoupons[ 0 ] ] : [], formattedCoupons ), value: formattedCoupons .map( ( coupon ) => coupon.label ) .join( ', ' ), }, { display: renderCurrency( netTotal, currency ), value: netTotal, }, ]; } ); } getSummary( totals ) { const { orders_count: ordersCount = 0, total_customers: totalCustomers = 0, products = 0, num_items_sold: numItemsSold = 0, coupons_count: couponsCount = 0, net_revenue: netRevenue = 0, } = totals; const { formatAmount, getCurrencyConfig } = this.context; const currency = getCurrencyConfig(); return [ { label: _n( 'Order', 'Orders', ordersCount, 'woocommerce' ), value: formatValue( currency, 'number', ordersCount ), }, { label: _n( ' Customer', ' Customers', totalCustomers, 'woocommerce' ), value: formatValue( currency, 'number', totalCustomers ), }, { label: _n( 'Product', 'Products', products, 'woocommerce' ), value: formatValue( currency, 'number', products ), }, { label: _n( 'Item sold', 'Items sold', numItemsSold, 'woocommerce' ), value: formatValue( currency, 'number', numItemsSold ), }, { label: _n( 'Coupon', 'Coupons', couponsCount, 'woocommerce' ), value: formatValue( currency, 'number', couponsCount ), }, { label: __( 'net sales', 'woocommerce' ), value: formatAmount( netRevenue ), }, ]; } renderLinks( items = [] ) { return items.map( ( item, i ) => ( { item.label } ) ); } renderList( visibleItems, popoverItems ) { return ( { this.renderLinks( visibleItems ) } { popoverItems.length > 1 && ( ) } ); } render() { const { query, filters, advancedFilters } = this.props; return ( ); } } OrdersReportTable.contextType = CurrencyContext; export default OrdersReportTable;