153 lines
4.3 KiB
TypeScript
153 lines
4.3 KiB
TypeScript
/* eslint-disable @woocommerce/dependency-group */
|
|
/* eslint-disable @typescript-eslint/ban-ts-comment */
|
|
/**
|
|
* External dependencies
|
|
*/
|
|
import { __ } from '@wordpress/i18n';
|
|
import {
|
|
createInterpolateElement,
|
|
useCallback,
|
|
useContext,
|
|
useEffect,
|
|
useMemo,
|
|
} from '@wordpress/element';
|
|
import { Link } from '@woocommerce/components';
|
|
import { recordEvent } from '@woocommerce/tracks';
|
|
import { Spinner } from '@wordpress/components';
|
|
|
|
/**
|
|
* Internal dependencies
|
|
*/
|
|
import { SidebarNavigationScreen } from './sidebar-navigation-screen';
|
|
import { ADMIN_URL } from '~/utils/admin-settings';
|
|
import { useEditorBlocks } from '../hooks/use-editor-blocks';
|
|
import { usePatternsByCategory } from '../hooks/use-patterns';
|
|
import { HighlightedBlockContext } from '../context/highlighted-block-context';
|
|
import { useEditorScroll } from '../hooks/use-editor-scroll';
|
|
import { useSelectedPattern } from '../hooks/use-selected-pattern';
|
|
import { findPatternByBlock } from './utils';
|
|
import BlockPatternList from '../block-pattern-list';
|
|
|
|
const SUPPORTED_FOOTER_PATTERNS = [
|
|
'woocommerce-blocks/footer-simple-menu',
|
|
'woocommerce-blocks/footer-with-3-menus',
|
|
'woocommerce-blocks/footer-large',
|
|
];
|
|
|
|
export const SidebarNavigationScreenFooter = () => {
|
|
const { scroll } = useEditorScroll( {
|
|
editorSelector: '.woocommerce-customize-store__block-editor iframe',
|
|
scrollDirection: 'bottom',
|
|
} );
|
|
|
|
const { isLoading, patterns } = usePatternsByCategory( 'woo-commerce' );
|
|
const [ blocks, , onChange ] = useEditorBlocks();
|
|
const { setHighlightedBlockIndex, resetHighlightedBlockIndex } = useContext(
|
|
HighlightedBlockContext
|
|
);
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
const { selectedPattern, setSelectedPattern } = useSelectedPattern();
|
|
|
|
useEffect( () => {
|
|
if ( blocks && blocks.length ) {
|
|
setHighlightedBlockIndex( blocks.length - 1 );
|
|
}
|
|
}, [ setHighlightedBlockIndex, blocks ] );
|
|
|
|
const footerPatterns = useMemo(
|
|
() =>
|
|
patterns
|
|
.filter( ( pattern ) =>
|
|
SUPPORTED_FOOTER_PATTERNS.includes( pattern.name )
|
|
)
|
|
.sort(
|
|
( a, b ) =>
|
|
SUPPORTED_FOOTER_PATTERNS.indexOf( a.name ) -
|
|
SUPPORTED_FOOTER_PATTERNS.indexOf( b.name )
|
|
),
|
|
[ patterns ]
|
|
);
|
|
|
|
useEffect( () => {
|
|
// Set the selected pattern when the footer screen is loaded.
|
|
if ( selectedPattern || ! blocks.length || ! footerPatterns.length ) {
|
|
return;
|
|
}
|
|
|
|
const currentSelectedPattern = findPatternByBlock(
|
|
footerPatterns,
|
|
blocks[ blocks.length - 1 ]
|
|
);
|
|
setSelectedPattern( currentSelectedPattern );
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps -- we don't want to re-run this effect when currentSelectedPattern changes
|
|
}, [ blocks, footerPatterns ] );
|
|
|
|
const onClickFooterPattern = useCallback(
|
|
( pattern, selectedBlocks ) => {
|
|
setSelectedPattern( pattern );
|
|
onChange( [ ...blocks.slice( 0, -1 ), selectedBlocks[ 0 ] ], {
|
|
selection: {},
|
|
} );
|
|
scroll();
|
|
},
|
|
[ blocks, onChange, setSelectedPattern, scroll ]
|
|
);
|
|
|
|
return (
|
|
<SidebarNavigationScreen
|
|
title={ __( 'Change your footer', 'woocommerce' ) }
|
|
onNavigateBackClick={ resetHighlightedBlockIndex }
|
|
description={ createInterpolateElement(
|
|
__(
|
|
"Select a new footer from the options below. Your footer includes your site's secondary navigation and will be added to every page. You can continue customizing this via the <EditorLink>Editor</EditorLink>.",
|
|
'woocommerce'
|
|
),
|
|
{
|
|
EditorLink: (
|
|
<Link
|
|
onClick={ () => {
|
|
recordEvent(
|
|
'customize_your_store_assembler_hub_editor_link_click',
|
|
{
|
|
source: 'footer',
|
|
}
|
|
);
|
|
window.open(
|
|
`${ ADMIN_URL }site-editor.php`,
|
|
'_blank'
|
|
);
|
|
return false;
|
|
} }
|
|
href=""
|
|
/>
|
|
),
|
|
}
|
|
) }
|
|
content={
|
|
<>
|
|
<div className="woocommerce-customize-store__sidebar-footer-content">
|
|
{ isLoading && (
|
|
<span className="components-placeholder__preview">
|
|
<Spinner />
|
|
</span>
|
|
) }
|
|
|
|
{ ! isLoading && (
|
|
<BlockPatternList
|
|
shownPatterns={ footerPatterns }
|
|
blockPatterns={ footerPatterns }
|
|
onClickPattern={ onClickFooterPattern }
|
|
label={ 'Footers' }
|
|
orientation="vertical"
|
|
isDraggable={ false }
|
|
onHover={ () => {} }
|
|
showTitlesAsTooltip={ true }
|
|
/>
|
|
) }
|
|
</div>
|
|
</>
|
|
}
|
|
/>
|
|
);
|
|
};
|