2023-01-10 20:25:45 +00:00
|
|
|
let GoogleAnalytics = (() => {
|
2023-01-12 00:02:11 +00:00
|
|
|
/**
|
|
|
|
* 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}
|
|
|
|
*/
|
2023-01-10 20:25:45 +00:00
|
|
|
function getGoogleAnalyticsScript(tagId) {
|
|
|
|
return "<script async src=\"https://www.googletagmanager.com/gtag/js?id=" + tagId + "\"></script>" +
|
|
|
|
"<script>window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date());gtag('config', '" + tagId + "'); </script>";
|
|
|
|
}
|
2023-01-12 00:02:11 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns true if the tag conforms to the format of 1-2 Letters followed by a dash and 8 numbers.
|
|
|
|
* This should take care of the following property tag formats:
|
|
|
|
* UA-########, G-########, AW-########, DC-########
|
|
|
|
* @param {String} tagInput Google UA/G/AW/DC Property ID
|
|
|
|
* @returns {boolean}
|
|
|
|
*/
|
2023-01-11 21:44:31 +00:00
|
|
|
function isValidTag(tagInput) {
|
|
|
|
const re = /^\w{1,2}-\d{8}$/g;
|
|
|
|
return tagInput.match(re) != null;
|
|
|
|
}
|
2023-01-10 20:25:45 +00:00
|
|
|
return {
|
2023-01-11 21:44:31 +00:00
|
|
|
getGoogleAnalyticsScript: getGoogleAnalyticsScript,
|
|
|
|
isValidTag: isValidTag
|
2023-01-10 20:25:45 +00:00
|
|
|
};
|
|
|
|
})();
|
|
|
|
|
|
|
|
module.exports = GoogleAnalytics;
|