woocommerce/plugins/woocommerce-admin/client/analytics/report
Albert Juhé Lluveras 4656f459a7 Remove old comment 2018-12-14 16:35:32 +01:00
..
categories Fix 'categories' value in Categories report table summary (https://github.com/woocommerce/woocommerce-admin/pull/995) 2018-12-04 13:29:58 -06:00
coupons Add screen reader labels to table headers (https://github.com/woocommerce/woocommerce-admin/pull/964) 2018-11-30 14:44:02 -06:00
customers Remove old comment 2018-12-14 16:35:32 +01:00
orders Fix Orders table summary display 'order' in singular when it should be plural (https://github.com/woocommerce/woocommerce-admin/pull/1003) 2018-12-05 15:54:52 -06:00
products REST API: Add stock info to products and variations 2018-12-11 07:19:46 +13:00
revenue Remove debug logging, restore RevenueReportTable component. 2018-12-07 16:39:42 -07:00
taxes Add/tax report filters/924 (https://github.com/woocommerce/woocommerce-admin/pull/1017) 2018-12-06 17:18:46 -05:00
README.md Extensions: Add filter to allow third-party registration of reports (https://github.com/woocommerce/woocommerce-admin/pull/298) 2018-08-20 17:24:17 -04:00
index.js Create Customers Report page 2018-12-06 16:25:31 -06:00
style.scss Add loading indicators, error state, and EmptyContent to the revenue report. (#347, woocommerce/woocommerce-admin#348) 2018-09-05 12:45:49 -04: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 wc-admin, by hooking into the reports filter, woocommerce-reports-list. For example:

addFilter( 'woocommerce-reports-list', 'wc-example/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-reports-list does not add the item to the admin menu, you'll need to do that in PHP with wc_admin_register_page.