mirror of
https://github.com/kremalicious/gatsby-plugin-matomo.git
synced 2024-12-22 09:13:19 +01:00
updates for Gatsby v2
This commit is contained in:
parent
c531e47cf5
commit
59e442a31d
@ -7,7 +7,9 @@
|
||||
"url": "https://github.com/kremalicious/gatsby-plugin-matomo/issues"
|
||||
},
|
||||
"dependencies": {
|
||||
"babel-runtime": "^6.26.0"
|
||||
"babel-runtime": "^6.26.0",
|
||||
"react": "^16.4.1",
|
||||
"react-hot-loader": "^4.3.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"babel-cli": "^6.26.0",
|
||||
@ -28,7 +30,7 @@
|
||||
"license": "MIT",
|
||||
"main": "index.js",
|
||||
"peerDependencies": {
|
||||
"gatsby": "^1.9.0"
|
||||
"gatsby": ">=1.9.0"
|
||||
},
|
||||
"repository": "github:kremalicious/gatsby-plugin-matomo",
|
||||
"scripts": {
|
||||
|
@ -1,13 +1,17 @@
|
||||
import React from 'react'
|
||||
|
||||
function buildTrackingCode(pluginOptions) {
|
||||
const script = pluginOptions.localScript ? pluginOptions.localScript : `${pluginOptions.matomoUrl}/piwik.js`
|
||||
const script = pluginOptions.localScript
|
||||
? pluginOptions.localScript
|
||||
: `${pluginOptions.matomoUrl}/piwik.js`
|
||||
|
||||
const html = `
|
||||
window.dev = ${pluginOptions.dev}
|
||||
if (window.dev === true || !(navigator.doNotTrack == '1' || window.doNotTrack == '1')) {
|
||||
window._paq = window._paq || [];
|
||||
window._paq.push(['setTrackerUrl', '${pluginOptions.matomoUrl}/piwik.php']);
|
||||
window._paq.push(['setTrackerUrl', '${
|
||||
pluginOptions.matomoUrl
|
||||
}/piwik.php']);
|
||||
window._paq.push(['setSiteId', '${pluginOptions.siteId}']);
|
||||
window._paq.push(['enableLinkTracking']);
|
||||
window._paq.push(['trackPageView']);
|
||||
@ -15,7 +19,9 @@ function buildTrackingCode(pluginOptions) {
|
||||
window.start = new Date();
|
||||
if (window.dev === true) {
|
||||
console.log('[Matomo] Tracking initialized')
|
||||
console.log('[Matomo] matomoUrl: ${pluginOptions.matomoUrl}, siteId: ${pluginOptions.siteId}')
|
||||
console.log('[Matomo] matomoUrl: ${pluginOptions.matomoUrl}, siteId: ${
|
||||
pluginOptions.siteId
|
||||
}')
|
||||
}
|
||||
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
|
||||
g.defer=true; g.async=true; g.src='${script}'; s.parentNode.insertBefore(g,s);
|
||||
@ -31,7 +37,10 @@ function buildTrackingCode(pluginOptions) {
|
||||
}
|
||||
|
||||
function buildTrackingCodeNoJs(pluginOptions, pathname) {
|
||||
const html = `<img src="${pluginOptions.matomoUrl}/piwik.php?idsite=${pluginOptions.siteId}&rec=1&url=${pluginOptions.siteUrl + pathname}" style="border:0" alt="tracker" />`
|
||||
const html = `<img src="${pluginOptions.matomoUrl}/piwik.php?idsite=${
|
||||
pluginOptions.siteId
|
||||
}&rec=1&url=${pluginOptions.siteUrl +
|
||||
pathname}" style="border:0" alt="tracker" />`
|
||||
|
||||
return (
|
||||
<noscript
|
||||
|
Loading…
Reference in New Issue
Block a user