/** * External dependencies */ import { __, sprintf } from '@wordpress/i18n'; import { useEffect, useRef, useState } from '@wordpress/element'; import classnames from 'classnames'; import { decodeEntities } from '@wordpress/html-entities'; import { getNewPath } from '@woocommerce/navigation'; import { Link } from '@woocommerce/components'; import { getAdminLink, getSetting } from '@woocommerce/wc-admin-settings'; import { recordEvent } from '@woocommerce/tracks'; /** * Internal dependencies */ import './style.scss'; import ActivityPanel from './activity-panel'; const trackLinkClick = ( event ) => { const target = event.target.closest( 'a' ); const href = target.getAttribute( 'href' ); if ( href ) { recordEvent( 'navbar_breadcrumb_click', { href, text: target.innerText, } ); } }; export const Header = ( { sections, isEmbedded = false, query } ) => { const headerElement = useRef( null ); const rafHandle = useRef( null ); const threshold = useRef( null ); const siteTitle = getSetting( 'siteTitle', '' ); const _sections = Array.isArray( sections ) ? sections : [ sections ]; const [ isScrolled, setIsScrolled ] = useState( false ); const className = classnames( 'woocommerce-layout__header', { 'is-scrolled': isScrolled, } ); useEffect( () => { threshold.current = headerElement.current.offsetTop; const updateIsScrolled = () => { setIsScrolled( window.pageYOffset > threshold.current - 20 ); }; const scrollListener = () => { rafHandle.current = window.requestAnimationFrame( updateIsScrolled ); }; window.addEventListener( 'scroll', scrollListener ); return () => { window.removeEventListener( 'scroll', scrollListener ); window.cancelAnimationFrame( rafHandle.current ); }; }, [] ); useEffect( () => { if ( ! isEmbedded ) { const documentTitle = _sections .map( ( section ) => { return Array.isArray( section ) ? section[ 1 ] : section; } ) .reverse() .join( ' ‹ ' ); const decodedTitle = decodeEntities( sprintf( /* translators: 1: document title. 2: page title */ __( '%1$s ‹ %2$s — WooCommerce', 'woocommerce-admin' ), documentTitle, siteTitle ) ); if ( document.title !== decodedTitle ) { document.title = decodedTitle; } } }, [ isEmbedded, _sections, siteTitle ] ); return (

{ _sections.map( ( section, i ) => { const sectionPiece = Array.isArray( section ) ? ( { section[ 1 ] } ) : ( section ); return ( { decodeEntities( sectionPiece ) } ); } ) }

{ window.wcAdminFeatures[ 'activity-panels' ] && ( ) }
); };