1.8.0 • Published 1 month ago

@whitespace/gatsby-plugin-matomo v1.8.0

Weekly downloads
-
License
AGPL
Repository
-
Last release
1 month 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.8.0

1 month ago

1.7.2

1 month ago

1.7.1

2 months ago

1.7.0

2 months ago

1.6.0

3 months ago

1.4.7

5 months ago

1.5.0-next.32

7 months ago

1.5.0-next.31

7 months ago

1.5.0-next.30

7 months ago

1.5.0-next.35

6 months ago

1.5.0-next.34

6 months ago

1.5.0-next.33

6 months ago

1.6.0-next.0

6 months ago

1.5.0-next.21

7 months ago

1.5.0-next.20

7 months ago

1.5.0-next.25

7 months ago

1.5.0-next.24

7 months ago

1.5.0-next.23

7 months ago

1.5.0-next.22

7 months ago

1.5.0-next.29

7 months ago

1.5.0-next.28

7 months ago

1.5.0-next.27

7 months ago

1.5.0-next.26

7 months ago

1.5.0-next.19

7 months ago

1.5.0

6 months ago

1.5.0-next.10

9 months ago

1.5.0-next.14

8 months ago

1.5.0-next.13

8 months ago

1.5.0-next.12

8 months ago

1.5.0-next.11

8 months ago

1.5.0-next.18

7 months ago

1.5.0-next.17

7 months ago

1.5.0-next.16

8 months ago

1.5.0-next.15

8 months ago

1.4.6

6 months ago

1.5.0-next.9

9 months ago

1.4.5

7 months ago

1.5.0-next.8

9 months ago

1.4.4

9 months ago

1.4.3

9 months ago

1.4.2

10 months ago

1.4.1

10 months ago

1.4.0

10 months ago

1.5.0-next.1

10 months ago

1.4.0-next.45

10 months ago

1.5.0-next.0

10 months ago

1.5.0-next.3

10 months ago

1.5.0-next.2

10 months ago

1.5.0-next.5

9 months ago

1.5.0-next.4

9 months ago

1.5.0-next.7

9 months ago

1.5.0-next.6

9 months ago

1.4.0-next.40

10 months ago

1.4.0-next.41

10 months ago

1.4.0-next.42

10 months ago

1.4.0-next.43

10 months ago

1.4.0-next.44

10 months ago

1.3.2

9 months ago

1.4.0-next.37

11 months ago

1.4.0-next.38

11 months ago

1.4.0-next.39

11 months ago

1.4.0-next.14

1 year ago

1.4.0-next.15

1 year ago

1.4.0-next.16

1 year ago

1.4.0-next.17

12 months ago

1.4.0-next.18

12 months ago

1.4.0-next.19

12 months ago

1.4.0-next.23

11 months ago

1.4.0-next.24

11 months ago

1.4.0-next.25

11 months ago

1.4.0-next.26

11 months ago

1.4.0-next.27

11 months ago

1.4.0-next.28

11 months ago

1.4.0-next.29

11 months ago

1.4.0-next.20

11 months ago

1.4.0-next.21

11 months ago

1.4.0-next.22

11 months ago

1.4.0-next.34

11 months ago

1.4.0-next.35

11 months ago

1.4.0-next.36

11 months ago

1.4.0-next.30

11 months ago

1.4.0-next.31

11 months ago

1.4.0-next.32

11 months ago

1.4.0-next.33

11 months ago

1.4.0-next.5

1 year ago

1.4.0-next.6

1 year ago

1.2.2

1 year ago

1.0.4

1 year ago

1.4.0-next.4

1 year ago

1.4.0-next.9

1 year ago

1.4.0-next.7

1 year ago

1.4.0-next.8

1 year ago

1.4.0-next.12

1 year ago

1.4.0-next.13

1 year ago

1.4.0-next.10

1 year ago

1.4.0-next.11

1 year ago

1.1.1

1 year ago

1.3.1

1 year ago

1.4.0-next.3

1 year ago

1.2.0

2 years ago

1.0.2

2 years ago

1.1.0

2 years ago

1.2.0-next.6

2 years ago

1.2.0-next.5

2 years ago

1.0.2-rc.0

2 years ago

1.2.0-next.8

2 years ago

1.0.2-rc.1

2 years ago

1.2.0-next.7

2 years ago

1.0.2-rc.2

2 years ago

1.4.0-next.1

1 year ago

1.4.0-next.2

1 year ago

1.4.0-next.0

1 year ago

1.3.0

1 year ago

1.0.3

1 year ago

1.2.1

1 year ago

1.2.0-next.2

2 years ago

1.2.0-next.1

2 years ago

1.2.0-next.4

2 years ago

1.2.0-next.3

2 years ago

1.2.0-next.0

2 years ago

1.3.0-next.2

2 years ago

1.3.0-next.3

2 years ago

1.3.0-next.4

2 years ago

1.3.0-next.5

1 year ago

1.3.0-next.0

2 years ago

1.3.0-next.1

2 years ago

1.1.0-next.3

2 years ago

1.1.0-next.2

2 years ago

1.1.0-next.1

2 years ago

1.1.0-next.0

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago

1.0.0-rc.0

2 years ago

0.1.1

2 years ago

0.1.0

2 years ago