woocommerce/plugins/woocommerce-admin/client/analytics/report
Paul Sealock 8205112732 Add currency extension (https://github.com/woocommerce/woocommerce-admin/pull/3328)
* Add currency extension

* use wcSettings

* save

* get revenue working

* all reports

* remove error log

* better rename

* add column

* persist queries

* go back to individual hooks

* comments

* address feedback
2019-12-06 11:38:26 +13:00
..
categories Add currency extension (https://github.com/woocommerce/woocommerce-admin/pull/3328) 2019-12-06 11:38:26 +13:00
coupons Add currency extension (https://github.com/woocommerce/woocommerce-admin/pull/3328) 2019-12-06 11:38:26 +13:00
customers Decouple date package from `wcSettings`. (https://github.com/woocommerce/woocommerce-admin/pull/3278) 2019-11-26 14:39:40 -05:00
downloads Decouple date package from `wcSettings`. (https://github.com/woocommerce/woocommerce-admin/pull/3278) 2019-11-26 14:39:40 -05:00
orders Decouple date package from `wcSettings`. (https://github.com/woocommerce/woocommerce-admin/pull/3278) 2019-11-26 14:39:40 -05:00
products Decouple Navigation from `wcSettings`. (https://github.com/woocommerce/woocommerce-admin/pull/3294) 2019-11-22 12:07:26 -05:00
revenue Add currency extension (https://github.com/woocommerce/woocommerce-admin/pull/3328) 2019-12-06 11:38:26 +13:00
stock Decouple Navigation from `wcSettings`. (https://github.com/woocommerce/woocommerce-admin/pull/3294) 2019-11-22 12:07:26 -05:00
taxes Decouple currency and numbers packages from `wcSettings`. (https://github.com/woocommerce/woocommerce-admin/pull/3277) 2019-11-21 16:51:52 -05:00
README.md update analytics report readme 2019-04-29 08:58:33 -03:00
index.js Refactor: Alternative approach to implementing extendable settings from the server (https://github.com/woocommerce/woocommerce-admin/pull/2917) 2019-09-23 17:47:08 -04:00
style.scss Add wc admin card classes to leaderboards (https://github.com/woocommerce/woocommerce-admin/pull/3267) 2019-11-21 20:10:37 +08: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.