Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import config from '@automattic/calypso-config';
import debug from 'debug';
import isJetpackCloud from 'calypso/lib/jetpack/is-jetpack-cloud';
import { mayWeTrackByTracker } from './tracker-buckets';
const hotjarDebug = debug( 'calypso:analytics:hotjar' );
let hotJarScriptLoaded = false;
export function mayWeLoadHotJarScript() {
return config( 'hotjar_enabled' ) && mayWeTrackByTracker( 'hotjar' );
}
export function getHotjarSiteSettings() {
return isJetpackCloud()
? { hjid: 3165344, hjsv: 6 } // Calypso green (cloud.jetpack.com)
: { hjid: 227769, hjsv: 5 }; // Calypso blue (wordpress.com)
}
export function addHotJarScript() {
if ( hotJarScriptLoaded || ! mayWeLoadHotJarScript() ) {
hotjarDebug( 'Not loading HotJar script' );
return;
}
( function ( h, o, t, j, a, r ) {
hotjarDebug( 'Loading HotJar script' );
h.hj =
h.hj ||
function () {
( h.hj.q = h.hj.q || [] ).push( arguments );
};
h._hjSettings = getHotjarSiteSettings();
a = o.getElementsByTagName( 'head' )[ 0 ];
r = o.createElement( 'script' );
r.async = 1;
r.src = t + h._hjSettings.hjid + j + h._hjSettings.hjsv;
a.appendChild( r );
} )( window, document, '//static.hotjar.com/c/hotjar-', '.js?sv=' );
hotJarScriptLoaded = true;
}