File size: 4,247 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 |
import { GlobalStylesProvider, useSyncGlobalStylesUserConfig } from '@automattic/global-styles';
import { NavigatorScreenObject } from '@automattic/onboarding';
import { Navigator } from '@wordpress/components/build-types/navigator/types';
import { useViewportMatch } from '@wordpress/compose';
import { Element } from '@wordpress/element';
import clsx from 'clsx';
import { MutableRefObject, useMemo, useState } from 'react';
import { useInlineCss } from '../hooks';
import Sidebar from './sidebar';
import SitePreview from './site-preview';
import type { Category, StyleVariation } from '@automattic/design-picker/src/types';
import type { GlobalStylesObject } from '@automattic/global-styles';
import './style.scss';
export interface DesignPreviewProps {
previewUrl: string;
siteInfo?: {
title: string;
tagline: string;
};
title?: Element;
author?: string;
categories?: Category[];
description?: string;
shortDescription?: string;
pricingBadge?: React.ReactNode;
variations?: StyleVariation[];
selectedVariation?: StyleVariation;
screens: NavigatorScreenObject[];
selectedDesignTitle: string;
onSelectVariation: ( variation: StyleVariation ) => void;
splitDefaultVariation: boolean;
needsUpgrade?: boolean;
onClickCategory?: ( category: Category ) => void;
actionButtons: React.ReactNode;
recordDeviceClick: ( device: string ) => void;
siteId: number;
stylesheet: string;
screenshot?: string;
isExternallyManaged?: boolean;
selectedColorVariation: GlobalStylesObject | null;
selectedFontVariation: GlobalStylesObject | null;
onGlobalStylesChange: ( globalStyles?: GlobalStylesObject | null ) => void;
onNavigatorPathChange?: ( path?: string ) => void;
navigatorRef: MutableRefObject< Navigator | null >;
}
// @todo Get the style variations of theme, and then combine the selected one with colors & fonts for consistency
const Preview: React.FC< DesignPreviewProps > = ( {
previewUrl,
siteInfo,
title,
author,
categories = [],
description,
shortDescription,
pricingBadge,
variations,
selectedVariation,
screens,
onClickCategory,
actionButtons,
recordDeviceClick,
screenshot,
isExternallyManaged,
selectedColorVariation,
selectedFontVariation,
onGlobalStylesChange,
selectedDesignTitle,
onNavigatorPathChange,
navigatorRef,
} ) => {
const isDesktop = useViewportMatch( 'large' );
const [ isInitialScreen, setIsInitialScreen ] = useState( true );
const selectedVariations = useMemo(
() =>
[ selectedColorVariation, selectedFontVariation ].filter( Boolean ) as GlobalStylesObject[],
[ selectedColorVariation, selectedFontVariation ]
);
const inlineCss = useInlineCss( variations, selectedVariation );
const isFullscreen = ! isDesktop && ( screens.length === 1 || ! isInitialScreen );
const handleNavigatorPathChange = ( path?: string ) => {
setIsInitialScreen( path === '/' );
onNavigatorPathChange?.( path );
};
useSyncGlobalStylesUserConfig( selectedVariations, onGlobalStylesChange );
return (
<div
className={ clsx( 'design-preview', {
'design-preview--has-multiple-screens': screens.length > 1,
'design-preview--is-fullscreen': isFullscreen,
} ) }
>
<Sidebar
navigatorRef={ navigatorRef }
title={ title }
author={ author }
categories={ categories }
description={ description }
shortDescription={ shortDescription }
pricingBadge={ pricingBadge }
screens={ screens }
actionButtons={ actionButtons }
onClickCategory={ onClickCategory }
onNavigatorPathChange={ handleNavigatorPathChange }
/>
<SitePreview
url={ previewUrl }
siteInfo={ siteInfo }
inlineCss={ inlineCss }
isFullscreen={ isFullscreen }
animated={ ! isDesktop && screens.length > 0 }
screenshot={ screenshot }
title={ selectedDesignTitle }
isExternallyManaged={ isExternallyManaged }
recordDeviceClick={ recordDeviceClick }
/>
</div>
);
};
const DesignPreview = ( props: DesignPreviewProps ) => {
if ( props.isExternallyManaged ) {
return <Preview { ...props } />;
}
return (
<GlobalStylesProvider
siteId={ props.siteId }
stylesheet={ props.stylesheet }
placeholder={ null }
>
<Preview { ...props } />
</GlobalStylesProvider>
);
};
export default DesignPreview;
|