2018-05-07 18:29:27 +02:00
|
|
|
let first = true
|
|
|
|
|
|
|
|
function getDuration() {
|
|
|
|
const start = window.start || new Date()
|
|
|
|
const now = new Date()
|
|
|
|
const difference = now.getTime() - start.getTime()
|
|
|
|
|
|
|
|
if (difference === 0) {
|
|
|
|
return null
|
|
|
|
}
|
|
|
|
|
|
|
|
return difference
|
|
|
|
}
|
|
|
|
|
2020-04-04 17:30:35 +02:00
|
|
|
export const onRouteUpdate = ({ location, prevLocation }, pluginOptions) => {
|
2020-02-15 15:21:24 +01:00
|
|
|
if (process.env.NODE_ENV === 'production' || window.dev === true) {
|
|
|
|
if (!window._paq) return
|
2018-05-08 20:52:43 +02:00
|
|
|
|
2020-02-15 15:21:24 +01:00
|
|
|
const { _paq, dev } = window
|
|
|
|
const url = location && location.pathname + location.search + location.hash
|
2019-06-10 02:04:28 +02:00
|
|
|
const prevUrl =
|
|
|
|
prevLocation &&
|
|
|
|
prevLocation.pathname + prevLocation.search + prevLocation.hash
|
2018-05-07 18:29:27 +02:00
|
|
|
|
2020-04-06 10:55:51 +02:00
|
|
|
const { trackLoad = true } = pluginOptions
|
2020-04-04 17:30:35 +02:00
|
|
|
|
2019-03-30 17:09:23 +01:00
|
|
|
// document.title workaround stolen from:
|
|
|
|
// https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby-plugin-google-analytics/src/gatsby-browser.js
|
|
|
|
const sendPageView = () => {
|
|
|
|
const { title } = document
|
|
|
|
|
|
|
|
prevUrl && _paq.push(['setReferrerUrl', prevUrl])
|
|
|
|
_paq.push(['setCustomUrl', url])
|
|
|
|
_paq.push(['setDocumentTitle', title])
|
|
|
|
_paq.push(['trackPageView'])
|
|
|
|
_paq.push(['enableLinkTracking'])
|
2019-07-09 02:01:14 +02:00
|
|
|
_paq.push(['trackAllContentImpressions'])
|
2019-03-30 17:09:23 +01:00
|
|
|
|
|
|
|
if (dev) {
|
2020-02-15 14:07:20 +01:00
|
|
|
console.debug(`[Matomo] Page view for: ${url} - ${title}`)
|
2019-03-30 17:09:23 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-15 15:21:24 +01:00
|
|
|
// Minimum delay for reactHelmet's requestAnimationFrame
|
|
|
|
const delay = Math.max(32, 0)
|
|
|
|
setTimeout(sendPageView, delay)
|
2019-03-30 17:09:23 +01:00
|
|
|
|
2018-05-08 12:45:47 +02:00
|
|
|
if (first) {
|
|
|
|
first = false
|
2020-04-04 17:30:35 +02:00
|
|
|
|
|
|
|
if (trackLoad) {
|
2020-04-06 10:55:51 +02:00
|
|
|
_paq.push([
|
|
|
|
'trackEvent',
|
|
|
|
'javascript',
|
|
|
|
'load',
|
|
|
|
'duration',
|
|
|
|
getDuration()
|
|
|
|
])
|
2020-04-04 17:30:35 +02:00
|
|
|
}
|
2018-05-08 20:52:43 +02:00
|
|
|
|
2019-03-30 17:09:23 +01:00
|
|
|
if (dev) {
|
2020-02-15 14:07:20 +01:00
|
|
|
console.debug(`[Matomo] Tracking duration for: ${url}`)
|
2018-05-08 20:52:43 +02:00
|
|
|
}
|
2018-05-08 12:45:47 +02:00
|
|
|
}
|
2018-05-07 18:29:27 +02:00
|
|
|
}
|
2020-02-15 14:07:20 +01:00
|
|
|
|
2018-05-08 12:45:47 +02:00
|
|
|
return null
|
2018-05-07 18:29:27 +02:00
|
|
|
}
|