dd279a5cc1
* Make WooCommerce breadcrumbs use WooCommerce branding if it is installed * Undo everything * Whoops, add missing reverted code * Push 'WooCommerce' out to breadcrumbs from the server except for where it is built up on the client * Pass translated 'WooCommerce' down from the server to the front end * Fix comment * Use `admin_url` to build up the URL Co-Authored-By: Ron Rennick <ron@ronandandrea.com> * Use admin_url() Co-Authored-By: Ron Rennick <ron@ronandandrea.com> * Show WooCommerce breadcrumb on analytics pages * Stop double appending the admin URL to the root WooCommerce breadcrumb url Co-authored-by: Rebecca Scott <me@becdetat.com> Co-authored-by: Ron Rennick <ron@ronandandrea.com> |
||
---|---|---|
.. | ||
activity-panel | ||
test | ||
README.md | ||
index.js | ||
style.scss |
README.md
Header
A basic component for the app header. The header outputs breadcrumbs via the sections
prop (required) and access to the activity panel. It also sets the document title.
How to use:
import Header from 'header';
render: function() {
return (
<Header
sections={ [
[ '/analytics', __( 'Analytics', 'woocommerce-admin' ) ],
__( 'Report Title', 'woocommerce-admin' ),
] }
/>
);
}
Props
sections
(required): Used to generate breadcrumbs. Accepts a single items or an array of items. To make an item a link, wrap it in an array with a relative link (example:[ '/analytics', __( 'Analytics', 'woocommerce-admin' ) ]
).isEmbedded
: Boolean describing if the header is embedded on an existing wp-admin page. False if rendered as part of a full react page.
Activity Panel
This component contains the Activity Panel. This is shown on every page and is rendered as part of the header.