import { isEnabled } from '@automattic/calypso-config';
import page from '@automattic/calypso-router';
import { Button } from '@automattic/components';
import { useLocale, addLocaleToPathLocaleInFront } from '@automattic/i18n-utils';
import styled from '@emotion/styled';
import { Icon, category as iconCategory } from '@wordpress/icons';
import clsx from 'clsx';
import { Substitution, useTranslate } from 'i18n-calypso';
import { useState, useEffect, useRef } from 'react';
import { CategoryPillNavigation } from 'calypso/components/category-pill-navigation';
import { recordTracksEvent } from 'calypso/lib/analytics/tracks';
import { PatternsCopyPasteInfo } from 'calypso/my-sites/patterns/components/copy-paste-info';
import { PatternsGetStarted } from 'calypso/my-sites/patterns/components/get-started';
import { PatternsHeader } from 'calypso/my-sites/patterns/components/header';
import { PatternsPageViewTracker } from 'calypso/my-sites/patterns/components/page-view-tracker';
import { ReadymadeTemplates } from 'calypso/my-sites/patterns/components/readymade-templates';
import { PatternsSearchField } from 'calypso/my-sites/patterns/components/search-field';
import { TypeToggle } from 'calypso/my-sites/patterns/components/type-toggle';
import { ViewToggle } from 'calypso/my-sites/patterns/components/view-toggle';
import { usePatternsContext } from 'calypso/my-sites/patterns/context';
import { usePatternCategories } from 'calypso/my-sites/patterns/hooks/use-pattern-categories';
import { usePatterns } from 'calypso/my-sites/patterns/hooks/use-patterns';
import { useReadymadeTemplates } from 'calypso/my-sites/patterns/hooks/use-readymade-templates';
import { useRecordPatternsEvent } from 'calypso/my-sites/patterns/hooks/use-record-patterns-event';
import { filterPatternsByTerm } from 'calypso/my-sites/patterns/lib/filter-patterns-by-term';
import { filterPatternsByType } from 'calypso/my-sites/patterns/lib/filter-patterns-by-type';
import { getPatternPermalink } from 'calypso/my-sites/patterns/lib/get-pattern-permalink';
import { getTracksPatternType } from 'calypso/my-sites/patterns/lib/get-tracks-pattern-type';
import { getCategoryUrlPath, getOnboardingUrl } from 'calypso/my-sites/patterns/paths';
import {
PatternTypeFilter,
PatternView,
CategoryGalleryFC,
PatternGalleryFC,
} from 'calypso/my-sites/patterns/types';
import { useSelector } from 'calypso/state';
import { isUserLoggedIn } from 'calypso/state/current-user/selectors';
import getUserSetting from 'calypso/state/selectors/get-user-setting';
import './style.scss';
// We use this unstyled Emotion component simply to prevent errors related to the use of Emotion's
// `useCx` hook in `ToggleGroupControl`
const PatternLibraryBody = styled.div``;
export const patternFiltersClassName = 'pattern-library__filters';
// Scroll to anchoring position of category pill navigation element
function scrollToPatternView( stickyFiltersElement: HTMLDivElement, onlyIfBelowThreshold = false ) {
const coords = stickyFiltersElement.getBoundingClientRect();
const style = getComputedStyle( stickyFiltersElement );
const parsedTop = /(\d+(\.\d+)?)px/.exec( style.top );
const topStyle = parseFloat( parsedTop?.[ 1 ] ?? '0' );
if ( onlyIfBelowThreshold && coords.top > topStyle ) {
return;
}
stickyFiltersElement.style.position = 'static';
requestAnimationFrame( () => {
const staticCoords = stickyFiltersElement.getBoundingClientRect();
stickyFiltersElement.style.removeProperty( 'position' );
window.scrollBy( {
behavior: 'smooth',
top: staticCoords.top,
} );
} );
}
function scrollToSection( element: HTMLDivElement, scrollBehavior: ScrollBehavior = 'smooth' ) {
requestAnimationFrame( () => {
element.scrollIntoView( {
behavior: scrollBehavior,
block: 'center',
} );
} );
}
type PatternLibraryProps = {
categoryGallery: CategoryGalleryFC;
patternGallery: PatternGalleryFC;
};
export const PatternLibrary = ( {
categoryGallery: CategoryGallery,
patternGallery: PatternGallery,
}: PatternLibraryProps ) => {
const locale = useLocale();
const translate = useTranslate();
const navRef = useRef< HTMLDivElement >( null );
const readymadeTemplateSectionRef = useRef< HTMLDivElement >( null );
const { recordPatternsEvent } = useRecordPatternsEvent();
const { category, searchTerm, section, isGridView, patternTypeFilter, patternPermalinkId } =
usePatternsContext();
const { data: categories = [] } = usePatternCategories( locale );
const { data: rawPatterns = [], isFetching: isFetchingPatterns } = usePatterns(
locale,
category,
{ enabled: Boolean( category || searchTerm ) }
);
const { data: readymadeTemplates = [] } = useReadymadeTemplates();
const patterns = searchTerm
? filterPatternsByTerm( rawPatterns, searchTerm )
: filterPatternsByType( rawPatterns, patternTypeFilter );
let patternPermalinkName;
if ( patternPermalinkId && ! isFetchingPatterns ) {
patternPermalinkName = patterns.find( ( pattern ) => pattern.ID === patternPermalinkId )?.name;
}
const isLoggedIn = useSelector( isUserLoggedIn );
const isDevAccount = useSelector( ( state ) => getUserSetting( state, 'is_dev_account' ) );
const recordClickEvent = (
tracksEventName: string,
view?: PatternView,
typeFilter?: PatternTypeFilter
) => {
recordTracksEvent( tracksEventName, {
category,
search_term: searchTerm || undefined,
is_logged_in: isLoggedIn,
type: getTracksPatternType( typeFilter ),
user_is_dev_account: isDevAccount ? '1' : '0',
view,
} );
};
const currentView = isGridView ? 'grid' : 'list';
// If the user has scrolled below the anchoring position of the category pill navigation then we
// scroll back up when the category changes
useEffect( () => {
if ( navRef.current ) {
scrollToPatternView( navRef.current, true );
}
}, [ category ] );
// Scroll to anchoring position of category pill navigation when the search form is submitted
useEffect( () => {
if ( navRef.current && searchTerm ) {
scrollToPatternView( navRef.current );
}
}, [ searchTerm ] );
const [ isSticky, setIsSticky ] = useState( false );
const prevNavTopValue = useRef( 0 );
useEffect( () => {
const handleScroll = () => {
if ( ! navRef.current ) {
return;
}
const navbarPosition = navRef.current.getBoundingClientRect().top;
setIsSticky( navbarPosition === prevNavTopValue.current );
prevNavTopValue.current = navbarPosition;
};
window.addEventListener( 'scroll', handleScroll, { passive: true } );
return () => {
window.removeEventListener( 'scroll', handleScroll );
};
}, [] );
useEffect( () => {
if (
'readymade-templates-section' === section &&
readymadeTemplateSectionRef.current &&
! searchTerm
) {
scrollToSection( readymadeTemplateSectionRef.current, 'instant' );
}
}, [ searchTerm, section ] );
// `calypso-router` has trouble with the onboarding URL we use. This code prevents click
// events on onboarding links from propagating to the `calypso-router` event listener,
// which fixes the problem.
useEffect( () => {
const onboardingUrl = getOnboardingUrl( locale, isLoggedIn );
function stopPropagationOnClick( event: MouseEvent ) {
if (
event.target instanceof HTMLAnchorElement &&
event.target.getAttribute( 'href' ) === onboardingUrl
) {
event.stopPropagation();
}
}
document.addEventListener( 'click', stopPropagationOnClick, { capture: true } );
return () => {
document.removeEventListener( 'click', stopPropagationOnClick );
};
}, [ locale, isLoggedIn ] );
const categoryObject = categories?.find( ( { name } ) => name === category );
const shouldDisplayPatternTypeToggle =
category && ! searchTerm && !! categoryObject?.pagePatternCount;
const categoryNavList = categories.map( ( category ) => {
const patternTypeFilterFallback =
category.pagePatternCount === 0 ? PatternTypeFilter.REGULAR : patternTypeFilter;
return {
id: category.name,
label: category.label,
link: getCategoryUrlPath( category.name, patternTypeFilterFallback, false, isGridView ),
};
} );
const isHomePage = ! category && ! searchTerm;
const patternGalleryKey = searchTerm
? `${ searchTerm }-${ category }-${ patternTypeFilter }`
: `${ category }-${ patternTypeFilter }`;
let mainHeading: Substitution = '';
if ( searchTerm && isFetchingPatterns && ! patterns.length ) {
// Non-breaking space
mainHeading = '\u00A0';
} else if ( searchTerm ) {
mainHeading = translate( '%(count)d pattern', '%(count)d patterns', {
count: patterns.length,
args: { count: patterns.length },
} );
} else if ( patternTypeFilter === PatternTypeFilter.PAGES ) {
mainHeading = translate( 'Page Layouts', {
comment: 'Refers to block patterns that contain entire page layouts',
} );
} else if ( patternTypeFilter === PatternTypeFilter.REGULAR ) {
mainHeading = translate( 'Patterns', {
comment: 'Refers to block patterns',
} );
}
return (
<>
{ isHomePage ? (