/** @format */ /** * External dependencies */ import { __, _n } from '@wordpress/i18n'; import { Component } from '@wordpress/element'; import { map } from 'lodash'; import moment from 'moment'; /** * WooCommerce dependencies */ import { defaultTableDateFormat, getCurrentDates } from '@woocommerce/date'; import { Date, Link } from '@woocommerce/components'; import { getNewPath, getPersistedQuery } from '@woocommerce/navigation'; import { numberFormat } from '@woocommerce/number'; /** * Internal dependencies */ import ReportTable from 'analytics/components/report-table'; export default class CouponsReportTable 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', defaultSort: true, required: true, isLeftAligned: true, isSortable: true, }, { label: __( 'Product Title', 'woocommerce-admin' ), key: 'product', isSortable: true, required: true, }, { label: __( 'File Name', 'woocommerce-admin' ), key: 'file_name', }, { label: __( 'Order #', 'woocommerce-admin' ), screenReaderLabel: __( 'Order Number', 'woocommerce-admin' ), key: 'order_number', }, { label: __( 'User Name', 'woocommerce-admin' ), key: 'user_id', }, { label: __( 'IP', 'woocommerce-admin' ), key: 'ip_address', }, ]; } getRowsContent( downloads ) { const { query } = this.props; const persistedQuery = getPersistedQuery( query ); return map( downloads, download => { const { _embedded, date, file_name, file_path, ip_address, order_id, order_number, product_id, username, } = download; const { name: productName } = _embedded.product[ 0 ]; const productLink = getNewPath( persistedQuery, '/analytics/products', { filter: 'single_product', products: product_id, } ); return [ { display: , value: date, }, { display: ( { productName } ), value: productName, }, { display: ( { file_name } ), value: file_name, }, { display: ( { order_number } ), value: order_number, }, { display: username, value: username, }, { display: ip_address, value: ip_address, }, ]; } ); } getSummary( totals ) { const { download_count = 0 } = totals; const { query } = this.props; const dates = getCurrentDates( query ); const after = moment( dates.primary.after ); const before = moment( dates.primary.before ); const days = before.diff( after, 'days' ) + 1; return [ { label: _n( 'day', 'days', days, 'woocommerce-admin' ), value: numberFormat( days ), }, { label: _n( 'download', 'downloads', download_count, 'woocommerce-admin' ), value: numberFormat( download_count ), }, ]; } render() { const { query, filters, advancedFilters } = this.props; return ( ); } }