File size: 6,866 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 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 | import page from '@automattic/calypso-router';
import { getUrlParts } from '@automattic/calypso-url';
import { Dialog } from '@automattic/components';
import { useLocale, useLocalizeUrl } from '@automattic/i18n-utils';
import { useQueryClient } from '@tanstack/react-query';
import clsx from 'clsx';
import { useTranslate } from 'i18n-calypso';
import { useEffect, useRef, useState } from 'react';
import { useDispatch } from 'react-redux';
import { BlankCanvas } from 'calypso/components/blank-canvas';
import { LoadingEllipsis } from 'calypso/components/loading-ellipsis';
import {
showDSP,
usePromoteWidget,
PromoteWidgetStatus,
cleanupDSP,
useDspOriginProps,
} from 'calypso/lib/promote-post';
import './style.scss';
import { useRouteModal } from 'calypso/lib/route-modal';
import { getAdvertisingDashboardPath } from 'calypso/my-sites/promote-post-i2/utils';
import { useSelector } from 'calypso/state';
import getPreviousRoute from 'calypso/state/selectors/get-previous-route';
import { getSiteSlug } from 'calypso/state/sites/selectors';
import { getSelectedSite, getSelectedSiteSlug } from 'calypso/state/ui/selectors';
export type BlazePressPromotionProps = {
isVisible: boolean;
siteId: string | number;
postId: string | number;
campaignId?: string;
keyValue: string;
source?: string;
};
export function goToOriginalEndpoint() {
const { pathname } = getUrlParts( window.location.href );
const index = pathname.indexOf( '/promote/' );
page( index < 0 ? pathname : pathname.replace( /\/promote\/.*?\//, '/' ) );
}
const BlazePressWidget = ( props: BlazePressPromotionProps ) => {
// eslint-disable-next-line @typescript-eslint/no-empty-function
const { isVisible = false, keyValue, siteId } = props;
const [ isLoading, setIsLoading ] = useState( true );
const [ error, setError ] = useState( false );
const [ showCancelDialog, setShowCancelDialog ] = useState( false );
const [ showCancelButton, setShowCancelButton ] = useState( true );
const [ hiddenHeader, setHiddenHeader ] = useState( true );
const widgetContainer = useRef< HTMLDivElement >( null );
const selectedSiteSlug = useSelector( getSelectedSiteSlug );
const translate = useTranslate();
const localizeUrl = useLocalizeUrl();
const previousRoute = useSelector( getPreviousRoute );
const selectedSite = useSelector( getSelectedSite );
const jetpackVersion = selectedSite?.options?.jetpack_version;
const blazeAdsVersion = selectedSite?.options?.blaze_ads_version;
const siteSlug = useSelector( ( state ) => getSiteSlug( state, selectedSite?.ID ) );
const { closeModal } = useRouteModal( 'blazepress-widget', keyValue );
const queryClient = useQueryClient();
const localeSlug = useLocale();
const dspOriginProps = useDspOriginProps();
const dispatch = useDispatch();
// Scroll to top on initial load regardless of previous page position
useEffect( () => {
if ( isVisible ) {
window.scrollTo( 0, 0 );
}
}, [ isVisible ] );
useEffect( () => {
return () => {
// Execute Widget Cleanup function
cleanupDSP();
};
}, [] );
const handleShowCancel = ( show: boolean ) => setShowCancelButton( show );
const handleShowTopBar = ( show: boolean ) => {
setHiddenHeader( ! show );
};
const onClose = ( goToCampaigns?: boolean ) => {
queryClient.invalidateQueries( {
queryKey: [ 'promote-post-campaigns', siteId ],
} );
if ( goToCampaigns ) {
page( getAdvertisingDashboardPath( `/campaigns/${ siteSlug }` ) );
} else {
queryClient &&
queryClient.invalidateQueries( {
queryKey: [ 'promote-post-campaigns', siteId ],
} );
if ( previousRoute ) {
closeModal();
} else {
goToOriginalEndpoint();
}
}
};
useEffect( () => {
isVisible &&
( async () => {
if ( props.siteId === null || props.postId === null ) {
return;
}
const source = props.source || 'blazepress';
try {
await showDSP(
selectedSiteSlug,
props.siteId,
props.postId,
onClose,
source,
translate,
localizeUrl,
widgetContainer.current,
handleShowCancel,
handleShowTopBar,
localeSlug,
jetpackVersion,
blazeAdsVersion,
dispatch,
dspOriginProps,
props.campaignId
);
} catch ( error ) {
setError( true );
setHiddenHeader( false );
}
setIsLoading( false );
} )();
}, [ isVisible, props.postId, props.siteId, selectedSiteSlug ] );
const cancelDialogButtons = [
{
action: 'cancel',
isPrimary: true,
label: translate( 'No, let me finish' ),
},
{
action: 'close',
label: translate( 'Yes, quit' ),
onClick: async () => {
setShowCancelDialog( false );
onClose();
},
},
];
const promoteWidgetStatus = usePromoteWidget();
if ( promoteWidgetStatus === PromoteWidgetStatus.DISABLED ) {
return <></>;
}
return (
<>
{ isVisible && (
<BlankCanvas
className={ clsx( 'blazepress-widget', 'blazepress-i2', {
'hidden-header': hiddenHeader,
} ) }
>
<BlankCanvas.Header
className={ clsx( 'blazepress-widget__header-bar', {
'no-back-button': ! showCancelButton,
} ) }
onBackClick={ () => {
if ( error ) {
// Close without dialog if we are displaying the error page (no need to confirmation there)
setShowCancelDialog( false );
onClose();
} else {
setShowCancelDialog( true );
}
} }
>
<h2>{ translate( 'Blaze - Powered by Jetpack' ) }</h2>
</BlankCanvas.Header>
<div className={ clsx( 'blazepress-widget__content', { loading: isLoading } ) }>
<Dialog
showCloseIcon
additionalOverlayClassNames="blazepress-widget"
isVisible={ showCancelDialog && showCancelButton }
buttons={ cancelDialogButtons }
onClose={ () => setShowCancelDialog( false ) }
>
<h1>{ translate( 'Are you sure you want to quit?' ) }</h1>
<p>
{ translate(
'If you quit, all of the work that has been done during this session will be lost.'
) }
</p>
</Dialog>
{ isLoading && <LoadingEllipsis /> }
{ error && (
<div className="error-notice">
<h3 className="error-notice__title">
{ translate( 'Oops, something went wrong' ) }
</h3>
<p className="error-notice__body">
{ translate( 'Please try again soon or {{a}}contact support{{/a}} for help.', {
components: {
a: (
<a
href="https://wordpress.com/help/contact"
target="_blank"
rel="noopener noreferrer"
/>
),
},
} ) }
</p>
</div>
) }
<div className="blazepress-widget__widget-container" ref={ widgetContainer }></div>
</div>
</BlankCanvas>
) }
</>
);
};
export default BlazePressWidget;
|