Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

@keg-hub/rga4

Package Overview
Dependencies
Maintainers
4
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@keg-hub/rga4

React Components and hooks for integrating Google Analytics 4 into an application

latest
Source
npmnpm
Version
0.0.4
Version published
Weekly downloads
1
-80%
Maintainers
4
Weekly downloads
 
Created
Source

RGA4

React context and hooks for integrating Google Analytics 4 into an application

Add / Install

  yarn add @keg-hub/rga4
  npm install @keg-hub/rga4

Setup

Important

  • A Google Analytic 4 Measurement ID is required
  • See this page for more information

Example

  import React, { useEffect, useCallback } from 'react'
  import { RGA4Provider, useRGA4 } from '@keg-hub/rga4'

  const Child = (props) => {

    // Use the hook to get access to the Google Analytics Context
    const rga4 = useRGA4()
    
    useEffect(() => {
      // Call the rga4.event method to send an analytics event
      rga4.event('page_view', {
        label: 'Github Readme',
        category: 'engagement',
      })
    }, [])

    // Custom analytics event when a button is clicked
    const onClick = useCallback(() => {
      // Call the rga4.event method to send an analytics event
      rga4.event('button_click', {
        event_label: 'Demo Button',
        event_category: 'engagement',
      })
    }, [ rga4 ])

    return (
      <div>
        <button onClick={onClick}>
          Demo Analytics Event
        </button>
      </div>
    )
  }

  export const Component = (props) => {
    const measurementID = `Replace with your GA4 Measurement ID`
    
    return (
      <RGA4Provider
        code={measurementID}
        config={{ ...Optional gtag config object }}
        gaCodes={[ ...Optional extra analytics IDs ]}
      >
        <Child />
      </RGA4Provider>
    )
  }

Keywords

react

FAQs

Package last updated on 12 Jan 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts