2023-02-04 03:58:39 -05:00
|
|
|
const jsesc = require("jsesc");
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a string that represents the javascript that is required to insert the Google Analytics scripts
|
|
|
|
* into a webpage.
|
|
|
|
* @param tagId Google UA/G/AW/DC Property ID to use with the Google Analytics script.
|
|
|
|
* @returns {string}
|
|
|
|
*/
|
|
|
|
function getGoogleAnalyticsScript(tagId) {
|
|
|
|
let escapedTagId = jsesc(tagId, { isScriptContext: true });
|
2023-02-04 04:03:00 -05:00
|
|
|
|
|
|
|
if (escapedTagId) {
|
|
|
|
escapedTagId = escapedTagId.trim();
|
|
|
|
}
|
|
|
|
|
2023-02-04 03:58:39 -05:00
|
|
|
return `
|
|
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id=${escapedTagId}"></script>
|
|
|
|
<script>window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date());gtag('config', '${escapedTagId}'); </script>
|
|
|
|
`;
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
getGoogleAnalyticsScript,
|
|
|
|
};
|