2018-11-26 14:01:20 +00:00
|
|
|
/** @format */
|
|
|
|
/**
|
|
|
|
* External dependencies
|
|
|
|
*/
|
2018-12-05 01:44:32 +00:00
|
|
|
import { applyFilters } from '@wordpress/hooks';
|
2018-11-26 14:01:20 +00:00
|
|
|
import { Component } from '@wordpress/element';
|
|
|
|
import { compose } from '@wordpress/compose';
|
2018-12-13 19:24:54 +00:00
|
|
|
import { withDispatch } from '@wordpress/data';
|
2018-11-26 14:01:20 +00:00
|
|
|
import { get, orderBy } from 'lodash';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* WooCommerce dependencies
|
|
|
|
*/
|
|
|
|
import { TableCard } from '@woocommerce/components';
|
|
|
|
import { onQueryChange } from '@woocommerce/navigation';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Internal dependencies
|
|
|
|
*/
|
|
|
|
import ReportError from 'analytics/components/report-error';
|
|
|
|
import { getReportChartData, getReportTableData } from 'store/reports/utils';
|
2018-12-05 17:10:54 +00:00
|
|
|
import withSelect from 'wc-api/with-select';
|
2018-11-26 14:01:20 +00:00
|
|
|
|
2018-12-05 01:44:32 +00:00
|
|
|
const TABLE_FILTER = 'woocommerce_admin_report_table';
|
|
|
|
|
2018-11-26 14:01:20 +00:00
|
|
|
class ReportTable extends Component {
|
2018-12-13 19:24:54 +00:00
|
|
|
onColumnsChange = columns => {
|
|
|
|
const { columnPrefsKey } = this.props;
|
|
|
|
|
|
|
|
if ( columnPrefsKey ) {
|
|
|
|
const userDataFields = {
|
|
|
|
[ columnPrefsKey ]: columns,
|
|
|
|
};
|
|
|
|
this.props.updateCurrentUserData( userDataFields );
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
filterShownHeaders = ( headers, shownKeys ) => {
|
|
|
|
if ( ! shownKeys ) {
|
|
|
|
return headers;
|
|
|
|
}
|
|
|
|
|
|
|
|
return headers.map( header => {
|
|
|
|
if ( shownKeys.includes( header.key ) ) {
|
|
|
|
return header;
|
|
|
|
}
|
|
|
|
return { ...header, hiddenByDefault: true };
|
|
|
|
} );
|
|
|
|
};
|
|
|
|
|
2018-11-26 14:01:20 +00:00
|
|
|
render() {
|
|
|
|
const {
|
|
|
|
getHeadersContent,
|
|
|
|
getRowsContent,
|
|
|
|
getSummary,
|
|
|
|
itemIdField,
|
|
|
|
primaryData,
|
|
|
|
tableData,
|
|
|
|
// These two props are not used in the render function, but are destructured
|
|
|
|
// so they are not included in the `tableProps` variable.
|
|
|
|
endpoint,
|
|
|
|
tableQuery,
|
2018-12-13 19:24:54 +00:00
|
|
|
userPrefColumns,
|
2018-11-26 14:01:20 +00:00
|
|
|
...tableProps
|
|
|
|
} = this.props;
|
|
|
|
|
|
|
|
const { items, query } = tableData;
|
|
|
|
|
|
|
|
const isError = tableData.isError || primaryData.isError;
|
|
|
|
|
|
|
|
if ( isError ) {
|
|
|
|
return <ReportError isError />;
|
|
|
|
}
|
|
|
|
|
|
|
|
const isRequesting = tableData.isRequesting || primaryData.isRequesting;
|
2018-11-29 14:03:04 +00:00
|
|
|
const orderedItems = orderBy( items.data, query.orderby, query.order );
|
2018-11-26 14:01:20 +00:00
|
|
|
const totals = get( primaryData, [ 'data', 'totals' ], null );
|
2018-12-04 19:29:58 +00:00
|
|
|
const totalCount = items.totalCount || 0;
|
2018-12-05 01:44:32 +00:00
|
|
|
const { headers, ids, rows, summary } = applyFilters( TABLE_FILTER, {
|
|
|
|
endpoint: endpoint,
|
|
|
|
headers: getHeadersContent(),
|
|
|
|
orderedItems: orderedItems,
|
|
|
|
ids: itemIdField ? orderedItems.map( item => item[ itemIdField ] ) : null,
|
|
|
|
rows: getRowsContent( orderedItems ),
|
|
|
|
totals: totals,
|
|
|
|
summary: getSummary ? getSummary( totals, totalCount ) : null,
|
|
|
|
} );
|
2018-11-26 14:01:20 +00:00
|
|
|
|
2018-12-13 19:24:54 +00:00
|
|
|
// Hide any headers based on user prefs, if loaded.
|
|
|
|
const filteredHeaders = this.filterShownHeaders( headers, userPrefColumns );
|
|
|
|
|
2018-11-26 14:01:20 +00:00
|
|
|
return (
|
|
|
|
<TableCard
|
|
|
|
downloadable
|
2018-12-13 19:24:54 +00:00
|
|
|
headers={ filteredHeaders }
|
2018-11-26 14:01:20 +00:00
|
|
|
ids={ ids }
|
|
|
|
isLoading={ isRequesting }
|
|
|
|
onQueryChange={ onQueryChange }
|
2018-12-13 19:24:54 +00:00
|
|
|
onColumnsChange={ this.onColumnsChange }
|
2018-11-26 14:01:20 +00:00
|
|
|
rows={ rows }
|
2018-12-04 00:00:13 +00:00
|
|
|
rowsPerPage={ parseInt( query.per_page ) }
|
2018-11-26 14:01:20 +00:00
|
|
|
summary={ summary }
|
2018-12-04 19:29:58 +00:00
|
|
|
totalRows={ totalCount }
|
2018-11-26 14:01:20 +00:00
|
|
|
{ ...tableProps }
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ReportTable.propTypes = {
|
2018-12-13 19:24:54 +00:00
|
|
|
/**
|
|
|
|
* The key for user preferences settings for column visibility.
|
|
|
|
*/
|
|
|
|
columnPrefsKey: PropTypes.string,
|
2018-11-26 14:01:20 +00:00
|
|
|
/**
|
|
|
|
* The endpoint to use in API calls.
|
|
|
|
*/
|
2018-12-03 03:40:57 +00:00
|
|
|
endpoint: PropTypes.string,
|
2018-11-26 14:01:20 +00:00
|
|
|
/**
|
|
|
|
* A function that returns the headers object to build the table.
|
|
|
|
*/
|
|
|
|
getHeadersContent: PropTypes.func.isRequired,
|
|
|
|
/**
|
|
|
|
* A function that returns the rows array to build the table.
|
|
|
|
*/
|
|
|
|
getRowsContent: PropTypes.func.isRequired,
|
|
|
|
/**
|
|
|
|
* A function that returns the summary object to build the table.
|
|
|
|
*/
|
|
|
|
getSummary: PropTypes.func,
|
|
|
|
/**
|
|
|
|
* The name of the property in the item object which contains the id.
|
|
|
|
*/
|
2018-12-03 03:40:57 +00:00
|
|
|
itemIdField: PropTypes.string,
|
2018-11-26 14:01:20 +00:00
|
|
|
/**
|
|
|
|
* Primary data of that report.
|
|
|
|
*/
|
|
|
|
primaryData: PropTypes.object.isRequired,
|
|
|
|
/**
|
|
|
|
* Table data of that report.
|
|
|
|
*/
|
|
|
|
tableData: PropTypes.object.isRequired,
|
|
|
|
/**
|
|
|
|
* Properties to be added to the query sent to the report table endpoint.
|
|
|
|
*/
|
|
|
|
tableQuery: PropTypes.object,
|
|
|
|
/**
|
|
|
|
* String to display as the title of the table.
|
|
|
|
*/
|
|
|
|
title: PropTypes.string.isRequired,
|
|
|
|
};
|
|
|
|
|
|
|
|
ReportTable.defaultProps = {
|
2018-12-10 15:51:11 +00:00
|
|
|
tableData: {},
|
2018-11-26 14:01:20 +00:00
|
|
|
tableQuery: {},
|
|
|
|
};
|
|
|
|
|
|
|
|
export default compose(
|
|
|
|
withSelect( ( select, props ) => {
|
2018-12-13 19:24:54 +00:00
|
|
|
const { endpoint, getSummary, query, tableData, tableQuery, columnPrefsKey } = props;
|
2018-11-26 02:58:19 +00:00
|
|
|
const chartEndpoint = 'variations' === endpoint ? 'products' : endpoint;
|
2018-12-03 03:40:57 +00:00
|
|
|
const primaryData = getSummary
|
|
|
|
? getReportChartData( chartEndpoint, 'primary', query, select )
|
|
|
|
: {};
|
|
|
|
const queriedTableData = tableData || getReportTableData( endpoint, query, select, tableQuery );
|
2018-11-26 14:01:20 +00:00
|
|
|
|
2018-12-13 19:24:54 +00:00
|
|
|
const selectProps = {
|
2018-11-26 14:01:20 +00:00
|
|
|
primaryData,
|
2018-12-03 03:40:57 +00:00
|
|
|
tableData: queriedTableData,
|
2018-11-26 14:01:20 +00:00
|
|
|
};
|
2018-12-13 19:24:54 +00:00
|
|
|
|
|
|
|
if ( columnPrefsKey ) {
|
|
|
|
const { getCurrentUserData } = select( 'wc-api' );
|
|
|
|
const userData = getCurrentUserData();
|
|
|
|
|
|
|
|
selectProps.userPrefColumns = userData[ columnPrefsKey ];
|
|
|
|
}
|
|
|
|
|
|
|
|
return selectProps;
|
|
|
|
} ),
|
|
|
|
withDispatch( dispatch => {
|
|
|
|
const { updateCurrentUserData } = dispatch( 'wc-api' );
|
|
|
|
|
|
|
|
return {
|
|
|
|
updateCurrentUserData,
|
|
|
|
};
|
2018-11-26 14:01:20 +00:00
|
|
|
} )
|
|
|
|
)( ReportTable );
|