woocommerce/plugins/woocommerce-admin/client/analytics/report
Jeff Stieler d591d77a53 Fix deleted products breaking Downloads Report (https://github.com/woocommerce/woocommerce-admin/pull/4582)
* Don't attempt order download information retrieval when the product has been deleted.

* Handle display of download names when product has been deleted.

* Add deleted product test case for download report endpoint.

* Fix date() usage in download report tests.
2020-06-16 09:47:27 -04:00
..
categories Filters: Fix static query parameters (https://github.com/woocommerce/woocommerce-admin/pull/4458) 2020-06-02 11:03:26 +12:00
coupons Filters: Fix static query parameters (https://github.com/woocommerce/woocommerce-admin/pull/4458) 2020-06-02 11:03:26 +12:00
customers Filters: Fix static query parameters (https://github.com/woocommerce/woocommerce-admin/pull/4458) 2020-06-02 11:03:26 +12:00
downloads Fix deleted products breaking Downloads Report (https://github.com/woocommerce/woocommerce-admin/pull/4582) 2020-06-16 09:47:27 -04:00
orders Filters: Fix static query parameters (https://github.com/woocommerce/woocommerce-admin/pull/4458) 2020-06-02 11:03:26 +12:00
products Filters: Fix static query parameters (https://github.com/woocommerce/woocommerce-admin/pull/4458) 2020-06-02 11:03:26 +12:00
revenue make revenue total sales column optional (https://github.com/woocommerce/woocommerce-admin/pull/4397) 2020-05-20 13:03:30 -03:00
stock Filters: Fix static query parameters (https://github.com/woocommerce/woocommerce-admin/pull/4458) 2020-06-02 11:03:26 +12:00
taxes Filters: Fix static query parameters (https://github.com/woocommerce/woocommerce-admin/pull/4458) 2020-06-02 11:03:26 +12:00
README.md update analytics report readme 2019-04-29 08:58:33 -03:00
get-reports.js Use Route based code splitting to optimize bundle size (https://github.com/woocommerce/woocommerce-admin/pull/4094) 2020-04-29 12:01:27 -06:00
index.js Use Route based code splitting to optimize bundle size (https://github.com/woocommerce/woocommerce-admin/pull/4094) 2020-04-29 12:01:27 -06:00
style.scss Align WooCommerce javascript code standards/linting/styles with WordPress core. (https://github.com/woocommerce/woocommerce-admin/pull/3674) 2020-02-14 15:23:21 +13:00

README.md

Reports

The core reports offered by WooCommerce live in this folder. The Header is added automatically by the parent Report component, each individual component should contain just the report contents.

Extending Reports

New reports can be added by third-parties without altering woocommerce-admin, by hooking into the reports filter, woocommerce_admin_reports_list. For example:

addFilter( 'woocommerce_admin_reports_list', 'analytics/my-report', pages => {
	return [
		...pages,
		{
			report: 'example',
			title: 'My Example Extension',
			component: Report,
		},
	];
} );

Each report is defined by an object containing report, title, component.

  • report (string): The path used to show the report, ex: /analytics/example
  • title (string): The title shown in the breadcrumbs & document title.
  • component (react component): The component containing the report content- everything on the page under the breadcrumbs header.

The component will get the following props:

  • query (object): The query string for the current view, can be used to paginate reports, or sort/filter report data.
  • path (string): The exact path for this view.
  • pathMatch (string): The route matched for this view, should always be /analytics/:report.
  • params (object): This will contain the report from the path, which should match report in the page object.

Note: Adding your page to woocommerce_admin_reports_list does not add the item to the admin menu, you'll need to do that in PHP with the woocommerce_admin_report_menu_items filter.