/** @format */ /** * External dependencies */ import { Component, Fragment } from '@wordpress/element'; import { Router, Route, Switch } from 'react-router-dom'; import { Slot } from 'react-slot-fill'; import PropTypes from 'prop-types'; import { get } from 'lodash'; /** * WooCommerce dependencies */ import { getHistory } from '@woocommerce/navigation'; /** * Internal dependencies */ import './style.scss'; import { Controller, getPages } from './controller'; import Header from 'header'; import Notices from './notices'; import { recordPageView } from 'lib/tracks'; import TransientNotices from './transient-notices'; import StoreAlerts from './store-alerts'; export class PrimaryLayout extends Component { render() { const { children } = this.props; return (
{ window.wcAdminFeatures[ 'store-alerts' ] && } { children }
); } } class Layout extends Component { componentDidMount() { this.recordPageViewTrack(); document.body.classList.remove( 'woocommerce-admin-is-loading' ); } componentDidUpdate( prevProps ) { const previousPath = get( prevProps, 'location.pathname' ); const currentPath = get( this.props, 'location.pathname' ); if ( ! previousPath || ! currentPath ) { return; } if ( previousPath !== currentPath ) { this.recordPageViewTrack(); } } recordPageViewTrack() { const pathname = get( this.props, 'location.pathname' ); if ( ! pathname ) { return; } // Remove leading slash, and camel case remaining pathname let path = pathname.substring( 1 ).replace( /\//g, '_' ); // When pathname is `/` we are on the dashboard if ( path.length === 0 ) { path = 'dashboard'; } recordPageView( path ); } render() { const { isEmbedded, ...restProps } = this.props; return (
{ ! isEmbedded && (
) }
); } } Layout.propTypes = { isEmbedded: PropTypes.bool, }; export class PageLayout extends Component { render() { return ( { getPages().map( page => { return ; } ) } ); } } export class EmbedLayout extends Component { render() { return (
); } }