npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

gtm-react-hook

v0.0.17

Published

Easy-to-use React hooks for Google Tag Management based on TypeScript

Downloads

278

Readme

📊 Easy-to-use React hooks for Google Tag Management based on TypeScript

🔥 Features

  • Based on React hooks
  • Fully typed with TypeScript
  • Tiny bundle size ~1kB
  • Support tools for custom GTM configuration
  • React.js is the only dependency
  • Logging events
  • Test covered

🛠 Install

npm install gtm-react-hook
or
yarn add gtm-react-hook

🚀 Quickstart

import React, { useEffect } from "react";
import { useGTM } from "gtm-react-hook";
import { useLocation } from "react-router-dom";

const App = () => {
  const { runGTM, eventGTM } = useGTM();
  const location = useLocation();

  useEffect(() => {
    runGTM({
      tagId: "GTM-XXXXXXX", // Provide your Tag ID
    });
  }, []);

  useEffect(() => {
    eventGTM("page_view", {
      pathname: location.pathname,
    });
  }, [location.pathname]);

  return <>...</>;
};

🧙🏻‍♂️ API

useGTM()

const { runGTM, eventGTM } = useGTM();

runGTM({ tagId: string, dataLayerName?: object, environment?: { gtm_auth: string, gtm_preview: string }, domain?: string, script?: string, nonce?: string, devMode?: boolean })

  1. tagId (required) - your GTM measurement ID;
  2. dataLayerName - custom name of dataLayer object;
  3. environment - GTM environment params;
  4. domain - custom GTM domain;
  5. script - custom GTM script's name;
  6. nonce;
  7. devMode - add logging for GTM initialization & events;

eventGTM(eventName: string, data?: object)

  1. eventName (required) - name of an event;
  2. data - payload of dataLayer (action, url, customerID, etc);

💅🏽 Examples

Page tracking

const { eventGTM } = useGTM();
const location = useLocation();

useEffect(() => {
  eventGTM("page_view", { location: location.pathname });
}, [location]);

Track event

const { eventGTM } = useGTM();

const handleSaveCustomerInfo = (customer) => {
  eventGTM("customer_info", {
    customerId: customer.customerId,
    customerRegion: customer.customerRegion,
  });
};

return <button onClick={handleSaveCustomerInfo}>Submit</button>;

Custom data layer name

const { runGTM } = useGTM();

useEffect(() => {
  runGTM({
    gtmId: "GTM-XXXXXXX",
    dataLayerName: "myGTMLayer", // all GTM events will be stored in `window.myGTMLayer` key
  });
}, []);

Installation only after user has accepted analytics

const { runGTM } = useGTM();

useEffect(() => {
  if (isUserConfirmAnalytics) {
    runGTM({
      gtmId: "GTM-XXXXXXX",
    });
  }
}, [isUserConfirmAnalytics]);

Logging

const { runGTM } = useGTM();

useEffect(() => {
  runGTM({
    gtmId: "GTM-XXXXXXX",
    devMode: true, // add GTM logs to browser's console
  });
}, []);