196 lines
5.5 KiB
TypeScript
196 lines
5.5 KiB
TypeScript
/* 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 {
|
|
__experimentalBlockPatternsList as BlockPatternList,
|
|
// @ts-expect-error No types for this exist yet.
|
|
} from '@wordpress/block-editor';
|
|
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';
|
|
|
|
import './style.scss';
|
|
|
|
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 (
|
|
<SidebarNavigationScreen
|
|
title={ title }
|
|
onNavigateBackClick={ () => {
|
|
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 <EditorLink>Editor</EditorLink>.",
|
|
'woocommerce'
|
|
),
|
|
{
|
|
EditorLink: (
|
|
<Link
|
|
onClick={ () => {
|
|
trackEvent(
|
|
'customize_your_store_assembler_hub_editor_link_click',
|
|
{
|
|
source: 'header',
|
|
}
|
|
);
|
|
window.open(
|
|
`${ ADMIN_URL }site-editor.php`,
|
|
'_blank'
|
|
);
|
|
return false;
|
|
} }
|
|
href=""
|
|
/>
|
|
),
|
|
}
|
|
) }
|
|
content={
|
|
<>
|
|
<div className="woocommerce-customize-store__sidebar-header-content">
|
|
{ isLoading && (
|
|
<span className="components-placeholder__preview">
|
|
<Spinner />
|
|
</span>
|
|
) }
|
|
|
|
{ ! isLoading && (
|
|
<BlockPatternList
|
|
shownPatterns={ headerPatterns }
|
|
blockPatterns={ headerPatterns }
|
|
onClickPattern={ onClickHeaderPattern }
|
|
label={ 'Headers' }
|
|
orientation="vertical"
|
|
isDraggable={ false }
|
|
onHover={ () => {} }
|
|
showTitlesAsTooltip={ true }
|
|
/>
|
|
) }
|
|
</div>
|
|
</>
|
|
}
|
|
/>
|
|
);
|
|
};
|