File size: 1,326 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 |
import { getCurrentUser } from '@automattic/calypso-analytics';
import { refreshCountryCodeCookieGdpr } from 'calypso/lib/analytics/utils';
import { mayWeTrackByTracker } from '../tracker-buckets';
import { debug, TRACKING_IDS } from './constants';
import { recordParamsInFloodlightGtag } from './floodlight';
import { loadTrackingScripts } from './load-tracking-scripts';
// Ensure setup has run.
import './setup';
export async function adTrackSignupStart( flow ) {
await refreshCountryCodeCookieGdpr();
await loadTrackingScripts();
const currentUser = getCurrentUser();
// Floodlight.
if ( mayWeTrackByTracker( 'floodlight' ) ) {
debug( 'adTrackSignupStart: [Floodlight]' );
recordParamsInFloodlightGtag( {
send_to: 'DC-6355556/wordp0/pre-p0+unique',
} );
}
if ( mayWeTrackByTracker( 'floodlight' ) && ! currentUser && 'onboarding' === flow ) {
debug( 'adTrackSignupStart: [Floodlight]' );
recordParamsInFloodlightGtag( {
send_to: 'DC-6355556/wordp0/landi00+unique',
} );
}
// Google Ads.
if ( mayWeTrackByTracker( 'googleAds' ) && ! currentUser && 'onboarding' === flow ) {
const params = [
'event',
'conversion',
{
send_to: TRACKING_IDS.wpcomGoogleAdsGtagSignupStart,
},
];
debug( 'adTrackSignupStart: [Google Ads Gtag]', params );
window.gtag( ...params );
}
}
|