gatsby-plugin-matomo/src/gatsby-ssr.js

62 lines
1.9 KiB
JavaScript
Raw Normal View History

2018-05-07 18:29:27 +02:00
import React from 'react'
function buildTrackingCode(pluginOptions) {
2018-06-19 23:28:44 +02:00
const script = pluginOptions.localScript
? pluginOptions.localScript
: `${pluginOptions.matomoUrl}/piwik.js`
2018-05-10 23:53:41 +02:00
2018-05-07 18:29:27 +02:00
const html = `
window.dev = ${pluginOptions.dev}
if (window.dev === true || !(navigator.doNotTrack == '1' || window.doNotTrack == '1')) {
2018-05-07 18:29:27 +02:00
window._paq = window._paq || [];
2018-06-19 23:28:44 +02:00
window._paq.push(['setTrackerUrl', '${
pluginOptions.matomoUrl
}/piwik.php']);
window._paq.push(['setSiteId', '${pluginOptions.siteId}']);
2018-05-07 18:29:27 +02:00
window._paq.push(['enableLinkTracking']);
window._paq.push(['trackPageView']);
window._paq.push(['enableHeartBeatTimer']);
window.start = new Date();
if (window.dev === true) {
console.log('[Matomo] Tracking initialized')
2018-06-19 23:28:44 +02:00
console.log('[Matomo] matomoUrl: ${pluginOptions.matomoUrl}, siteId: ${
pluginOptions.siteId
}')
}
2018-05-07 18:29:27 +02:00
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
2018-05-23 01:05:36 +02:00
g.defer=true; g.async=true; g.src='${script}'; s.parentNode.insertBefore(g,s);
2018-05-07 18:29:27 +02:00
}
`
return (
<script
key={'gatsby-plugin-matomo'}
dangerouslySetInnerHTML={{ __html: html }}
/>
)
}
function buildTrackingCodeNoJs(pluginOptions, pathname) {
2018-06-19 23:28:44 +02:00
const html = `<img src="${pluginOptions.matomoUrl}/piwik.php?idsite=${
pluginOptions.siteId
}&rec=1&url=${pluginOptions.siteUrl +
pathname}" style="border:0" alt="tracker" />`
2018-05-07 18:29:27 +02:00
return (
<noscript
key={'gatsby-plugin-matomo'}
dangerouslySetInnerHTML={{ __html: html }}
/>
)
}
exports.onRenderBody = ({ setPostBodyComponents, pathname }, pluginOptions) => {
if (process.env.NODE_ENV === 'production' || pluginOptions.dev === true) {
return setPostBodyComponents([
buildTrackingCode(pluginOptions),
buildTrackingCodeNoJs(pluginOptions, pathname)
])
}
2018-05-07 18:29:27 +02:00
return null
}