File size: 3,852 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 | import { localize } from 'i18n-calypso';
import PropTypes from 'prop-types';
import { Component } from 'react';
import { connect } from 'react-redux';
import QueryCanonicalTheme from 'calypso/components/data/query-canonical-theme';
import WebPreview from 'calypso/components/web-preview';
import { recordTracksEvent } from 'calypso/state/analytics/actions';
import isSiteWPForTeams from 'calypso/state/selectors/is-site-wpforteams';
import { getSiteSlug, isJetpackSite } from 'calypso/state/sites/selectors';
import { hideThemePreview } from 'calypso/state/themes/actions';
import {
getThemeDemoUrl,
getThemePreviewThemeOptions,
themePreviewVisibility,
isActivatingTheme,
} from 'calypso/state/themes/selectors';
import { getSelectedSiteId } from 'calypso/state/ui/selectors';
import { connectOptions } from './theme-options';
class ThemePreview extends Component {
static displayName = 'ThemePreview';
static propTypes = {
// connected props
belowToolbar: PropTypes.element,
demoUrl: PropTypes.string,
isActivating: PropTypes.bool,
isJetpack: PropTypes.bool,
themeId: PropTypes.string,
themeOptions: PropTypes.object,
};
// @TODO: Please update https://github.com/Automattic/wp-calypso/issues/58453 if you are refactoring away from UNSAFE_* lifecycle methods!
UNSAFE_componentWillReceiveProps( nextProps ) {
if ( this.props.isActivating && ! nextProps.isActivating ) {
this.props.hideThemePreview();
}
}
componentWillUnmount() {
this.props.hideThemePreview();
}
getStyleVariationOption = () => {
return this.props.themeOptions?.styleVariation;
};
appendStyleVariationOptionToUrl = ( url, key = 'slug' ) => {
const styleVariationOption = this.getStyleVariationOption();
if ( ! styleVariationOption ) {
return url;
}
const [ base, query ] = url.split( '?' );
const params = new URLSearchParams( query );
params.set( 'style_variation', styleVariationOption[ key ] );
return `${ base }?${ params.toString() }`;
};
render() {
const { themeId, siteId, demoUrl, children, isWPForTeamsSite, themeOptions, locale } =
this.props;
if ( ! themeId || isWPForTeamsSite ) {
return null;
}
let previewUrl = demoUrl + '?demo=true&iframe=true&theme_preview=true';
if ( locale && locale.length > 0 && locale !== 'en' ) {
previewUrl += '&language=' + locale;
}
return (
<div>
<QueryCanonicalTheme siteId={ siteId } themeId={ themeId } />
{ children }
{ demoUrl && (
<WebPreview
themeId={ themeId }
showPreview
showExternal={ false }
showEditHeaderLink
showSEO={ false }
onClose={ this.props.hideThemePreview }
previewUrl={ this.appendStyleVariationOptionToUrl( previewUrl, 'title' ) }
externalUrl={ demoUrl }
belowToolbar={ this.props.belowToolbar }
themeOptions={ themeOptions }
/>
) }
</div>
);
}
}
// make all actions available to preview.
const ConnectedThemePreview = connectOptions( ThemePreview );
export default connect(
( state ) => {
const themeId = themePreviewVisibility( state );
if ( ! themeId ) {
return { themeId };
}
const siteId = getSelectedSiteId( state );
const siteSlug = getSiteSlug( state, siteId );
const isJetpack = isJetpackSite( state, siteId );
const themeOptions = getThemePreviewThemeOptions( state );
return {
themeId,
siteId,
siteSlug,
isJetpack,
themeOptions,
isActivating: isActivatingTheme( state, siteId ),
demoUrl: getThemeDemoUrl( state, themeId, siteId ),
isWPForTeamsSite: isSiteWPForTeams( state, siteId ),
options: [
'activate',
'preview',
'purchase',
'upgradePlan',
'tryandcustomize',
'customize',
'separator',
'info',
'signup',
'support',
'help',
],
};
},
{ hideThemePreview, recordTracksEvent }
)( localize( ConnectedThemePreview ) );
|