1.4.8 • Published 1 year ago

@whitespace/gatsby-plugin-matomo v1.4.8

Weekly downloads
-
License
AGPL
Repository
-
Last release
1 year ago

Gatsby Plugin for Matomo

Integrates your site with Matomo.

Install

yarn add @whitespace/gatsby-plugin-matomo

How to use

// gatsby-config.js

plugins: [
  {
    resolve: "gatsby-plugin-matomo",
    options: {
      mtmHost: "YOUR_SELF_HOSTED_ORIGIN",
      mtmContainerId: "YOUR_MATOMO_CONTAINER_ID",
      includeInDevelopment: false,
      routeChangeEventName: "gatsby-route-change", // Set this `false` to disable events
      trackPageViews: false, // Change to `true` to track page views
      requireCookieConsent: false, // Change to true to require cookie consent. See below how to handle consent.
    },
  },
];

Integration with @whitespace/gatsby-plugin-cookie-consent

If you are using @whitespace/gatsby-plugin-cookie-consent it’s recommended to whitelist the container url and hook into the store to check if consent has been given:

  1. Add this to gatsby-browser.js:
// gatsby-browser.js

import MatomoCookieHandler from "./src/components/MatomoCookieHandler";

export function wrapPageElement({ element }) {
  return (
    <>
      <MatomoCookieHandler />
      {element}
    </>
  );
}
  1. And this to src/components/MatomoCookieHandler.js:
// src/components/MatomoCookieHandler.js

import { useStore } from "@whitespace/gatsby-plugin-cookie-consent/src/hooks/store";
import React, { useEffect } from "react";

MatomoCookieHandler.propTypes = {};

/**
 * Pushes "setCookieConsentGiven" to Matomo if/when cookies are accepted
 */
export default function MatomoCookieHandler() {
  let [store] = useStore();

  let cookiesAreAccepted = store.answer === "accept";

  useEffect(() => {
    if (cookiesAreAccepted && typeof window !== "undefined") {
      window._paq.push(["setCookieConsentGiven"]);
    }
  }, [cookiesAreAccepted]);

  return null;
}
1.4.8

1 year ago

1.8.0

1 year ago

1.7.2

1 year ago

1.7.1

1 year ago

1.7.0

1 year ago

1.6.0

1 year ago

1.4.7

1 year ago

1.5.0-next.32

2 years ago

1.5.0-next.31

2 years ago

1.5.0-next.30

2 years ago

1.5.0-next.35

2 years ago

1.5.0-next.34

2 years ago

1.5.0-next.33

2 years ago

1.6.0-next.0

2 years ago

1.5.0-next.21

2 years ago

1.5.0-next.20

2 years ago

1.5.0-next.25

2 years ago

1.5.0-next.24

2 years ago

1.5.0-next.23

2 years ago

1.5.0-next.22

2 years ago

1.5.0-next.29

2 years ago

1.5.0-next.28

2 years ago

1.5.0-next.27

2 years ago

1.5.0-next.26

2 years ago

1.5.0-next.19

2 years ago

1.5.0

2 years ago

1.5.0-next.10

2 years ago

1.5.0-next.14

2 years ago

1.5.0-next.13

2 years ago

1.5.0-next.12

2 years ago

1.5.0-next.11

2 years ago

1.5.0-next.18

2 years ago

1.5.0-next.17

2 years ago

1.5.0-next.16

2 years ago

1.5.0-next.15

2 years ago

1.4.6

2 years ago

1.5.0-next.9

2 years ago

1.4.5

2 years ago

1.5.0-next.8

2 years ago

1.4.4

2 years ago

1.4.3

2 years ago

1.4.2

2 years ago

1.4.1

2 years ago

1.4.0

2 years ago

1.5.0-next.1

2 years ago

1.4.0-next.45

2 years ago

1.5.0-next.0

2 years ago

1.5.0-next.3

2 years ago

1.5.0-next.2

2 years ago

1.5.0-next.5

2 years ago

1.5.0-next.4

2 years ago

1.5.0-next.7

2 years ago

1.5.0-next.6

2 years ago

1.4.0-next.40

2 years ago

1.4.0-next.41

2 years ago

1.4.0-next.42

2 years ago

1.4.0-next.43

2 years ago

1.4.0-next.44

2 years ago

1.3.2

2 years ago

1.4.0-next.37

2 years ago

1.4.0-next.38

2 years ago

1.4.0-next.39

2 years ago

1.4.0-next.14

2 years ago

1.4.0-next.15

2 years ago

1.4.0-next.16

2 years ago

1.4.0-next.17

2 years ago

1.4.0-next.18

2 years ago

1.4.0-next.19

2 years ago

1.4.0-next.23

2 years ago

1.4.0-next.24

2 years ago

1.4.0-next.25

2 years ago

1.4.0-next.26

2 years ago

1.4.0-next.27

2 years ago

1.4.0-next.28

2 years ago

1.4.0-next.29

2 years ago

1.4.0-next.20

2 years ago

1.4.0-next.21

2 years ago

1.4.0-next.22

2 years ago

1.4.0-next.34

2 years ago

1.4.0-next.35

2 years ago

1.4.0-next.36

2 years ago

1.4.0-next.30

2 years ago

1.4.0-next.31

2 years ago

1.4.0-next.32

2 years ago

1.4.0-next.33

2 years ago

1.4.0-next.5

2 years ago

1.4.0-next.6

2 years ago

1.2.2

2 years ago

1.0.4

2 years ago

1.4.0-next.4

2 years ago

1.4.0-next.9

2 years ago

1.4.0-next.7

2 years ago

1.4.0-next.8

2 years ago

1.4.0-next.12

2 years ago

1.4.0-next.13

2 years ago

1.4.0-next.10

2 years ago

1.4.0-next.11

2 years ago

1.1.1

2 years ago

1.3.1

2 years ago

1.4.0-next.3

2 years ago

1.2.0

3 years ago

1.0.2

3 years ago

1.1.0

3 years ago

1.2.0-next.6

3 years ago

1.2.0-next.5

3 years ago

1.0.2-rc.0

3 years ago

1.2.0-next.8

3 years ago

1.0.2-rc.1

3 years ago

1.2.0-next.7

3 years ago

1.0.2-rc.2

3 years ago

1.4.0-next.1

2 years ago

1.4.0-next.2

2 years ago

1.4.0-next.0

2 years ago

1.3.0

3 years ago

1.0.3

3 years ago

1.2.1

3 years ago

1.2.0-next.2

3 years ago

1.2.0-next.1

3 years ago

1.2.0-next.4

3 years ago

1.2.0-next.3

3 years ago

1.2.0-next.0

3 years ago

1.3.0-next.2

3 years ago

1.3.0-next.3

3 years ago

1.3.0-next.4

3 years ago

1.3.0-next.5

3 years ago

1.3.0-next.0

3 years ago

1.3.0-next.1

3 years ago

1.1.0-next.3

3 years ago

1.1.0-next.2

3 years ago

1.1.0-next.1

3 years ago

1.1.0-next.0

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago

1.0.0-rc.0

3 years ago

0.1.1

3 years ago

0.1.0

3 years ago