/* eslint-disable @woocommerce/dependency-group */ /* eslint-disable @typescript-eslint/ban-ts-comment */ /** * External dependencies */ import { __ } from '@wordpress/i18n'; import { useCallback, createInterpolateElement, useContext, useEffect, useMemo, } from '@wordpress/element'; import { Link } from '@woocommerce/components'; import { Spinner } from '@wordpress/components'; import { useSelect } from '@wordpress/data'; // @ts-expect-error No types for this exist yet. import { store as coreStore } from '@wordpress/core-data'; /** * Internal dependencies */ import { SidebarNavigationScreen } from './sidebar-navigation-screen'; import { ADMIN_URL } from '~/utils/admin-settings'; import { usePatternsByCategory } from '../hooks/use-patterns'; import { useSelectedPattern } from '../hooks/use-selected-pattern'; import { useEditorBlocks } from '../hooks/use-editor-blocks'; import { HighlightedBlockContext } from '../context/highlighted-block-context'; import { useEditorScroll } from '../hooks/use-editor-scroll'; import { findPatternByBlock } from './utils'; import BlockPatternList from '../block-pattern-list'; import { CustomizeStoreContext } from '~/customize-store/assembler-hub'; import { FlowType } from '~/customize-store/types'; import { headerTemplateId } from '~/customize-store/data/homepageTemplates'; import { trackEvent } from '~/customize-store/tracking'; const SUPPORTED_HEADER_PATTERNS = [ 'woocommerce-blocks/header-centered-menu', 'woocommerce-blocks/header-essential', 'woocommerce-blocks/header-minimal', 'woocommerce-blocks/header-large', ]; export const SidebarNavigationScreenHeader = ( { onNavigateBackClick, }: { onNavigateBackClick: () => void; } ) => { const { scroll } = useEditorScroll( { editorSelector: '.woocommerce-customize-store__block-editor iframe', scrollDirection: 'top', } ); const { isLoading, patterns } = usePatternsByCategory( 'woo-commerce' ); const currentTemplate = useSelect( ( select ) => // @ts-expect-error No types for this exist yet. select( coreStore ).__experimentalGetTemplateForLink( '/' ), [] ); const [ mainTemplateBlocks ] = useEditorBlocks( 'wp_template', currentTemplate?.id ?? '' ); const [ blocks, , onChange ] = useEditorBlocks( 'wp_template_part', headerTemplateId ); const headerTemplatePartBlock = mainTemplateBlocks.find( ( block ) => block.attributes.slug === 'header' ); const { setHighlightedBlockClientId, resetHighlightedBlockClientId } = useContext( HighlightedBlockContext ); // eslint-disable-next-line react-hooks/exhaustive-deps const { selectedPattern, setSelectedPattern } = useSelectedPattern(); useEffect( () => { setHighlightedBlockClientId( headerTemplatePartBlock?.clientId ?? null ); }, [ headerTemplatePartBlock?.clientId, setHighlightedBlockClientId ] ); const headerPatterns = useMemo( () => patterns .filter( ( pattern ) => SUPPORTED_HEADER_PATTERNS.includes( pattern.name ) ) .sort( ( a, b ) => SUPPORTED_HEADER_PATTERNS.indexOf( a.name ) - SUPPORTED_HEADER_PATTERNS.indexOf( b.name ) ), [ patterns ] ); useEffect( () => { if ( selectedPattern || ! blocks.length || ! headerPatterns.length ) { return; } const currentSelectedPattern = findPatternByBlock( headerPatterns, blocks[ 0 ] ); setSelectedPattern( currentSelectedPattern ); // eslint-disable-next-line react-hooks/exhaustive-deps -- we don't want to re-run this effect when currentSelectedPattern changes }, [ blocks, headerPatterns ] ); const onClickHeaderPattern = useCallback( ( pattern, selectedBlocks ) => { setSelectedPattern( pattern ); onChange( [ selectedBlocks[ 0 ], ...blocks.slice( 1 ) ], { selection: {}, } ); scroll(); }, [ blocks, onChange, setSelectedPattern, scroll ] ); const { context } = useContext( CustomizeStoreContext ); const aiOnline = context.flowType === FlowType.AIOnline; const title = aiOnline ? __( 'Change your header', 'woocommerce' ) : __( 'Choose your header', 'woocommerce' ); return ( { resetHighlightedBlockClientId(); onNavigateBackClick(); } } description={ createInterpolateElement( __( "Select a new header from the options below. Your header includes your site's navigation and will be added to every page. You can continue customizing this via the Editor.", 'woocommerce' ), { EditorLink: ( { trackEvent( 'customize_your_store_assembler_hub_editor_link_click', { source: 'header', } ); window.open( `${ ADMIN_URL }site-editor.php`, '_blank' ); return false; } } href="" /> ), } ) } content={ <>
{ isLoading && ( ) } { ! isLoading && ( {} } showTitlesAsTooltip={ true } /> ) }
} /> ); };