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

react-analytics-keys

v1.0.0

Published

Easily create unique analytics key ids based on document structure

Downloads

6

Readme

react-analytics-keys

Quickly and easily generate unique and reasonably-stable analytics attributes for integrating with user-behavior tracking apps like Heap or Pendo.

Installation

npm install react-analytics-keys

Usage

Use useAnalyticsKeyBuilder to generate analytics keys:

import {AnalyticsNode, useAnalyticsKeyBuilder} from "./index";

function Todo({info}) {
  const keyBuilder = useAnalyticsKeyBuilder('todo');
  
  return (
    <div {...keyBuilder()}>
      <p>{todo.text}</p>
      <button {...keyBuilder('edit')}>Update Item</button>
      <button {...keyBuilder('remove')}>Remove Item</button>
    </div>
  );
}

function App() {
  return (
    <AnalyticsNode value="todos-app">
      <h1>Todo Application</h1>
      <AnalyticsNode value="todo-list">
        <ul>
          {todos.map(t => <li key={t.id}><Todo info={t}/></li>)}
        </ul>
      </AnalyticsNode>
    </AnalyticsNode>
  );
}

By default, this might render something like:

<h1>Todo Application</h1>
<ul>
  <li>
    <div data-analytics="todos-app/todos-list/todo">
      <p>Get groceries</p>
      <button data-analytics="todos-app/todos-list/todo/edit">Update Item</button>
      <button data-analytics="todos-app/todos-list/todo/remove">Remove Item</button>
    </div>
  </li>
</ul>

Use AnalyticsContextProvider to change the way that analytics keys are generated:

Let's say that data-analytics is too generic, or slash delimiters are inappropriate. In this case, you can override the key generation behavior by specifying a new configuration function:

import {AnalyticsContextProvider} from "./index";

function myKeyGenerator(names: readonly string[]): Record<string, string> {
  return {
    'data-heap-id': names.join(':'),
    'data-heap-enabled': true
  };
}

function App() {
  return (
    <AnalyticsContextProvider value={myKeyGenerator}>
      <h1>Todo Application</h1>
      ...
    </AnalyticsContextProvider>
  );
}

This might render like:

<h1>Todo Application</h1>
<ul>
  <li>
    <div data-heap-id="todos-app:todos-list:todo" data-heap-enabled>
      <p>Get groceries</p>
      <button data-heap-id="todos-app:todos-list:todo:edit" data-heap-enabled>Update Item</button>
      <button data-heap-id="todos-app:todos-list:todo:remove" data-heap-enabled>Remove Item</button>
    </div>
  </li>
</ul>

Rationale

User behavior tracking tools like Heap insert themselves into the DOM and use this position of power to scoop up almost all user behavior. Clicks, page changes, window resizes, etc. This sounds like a performance and compatibility nightmare, but somehow they pull it off ok. These apps can aggregate this information just-in-time: if the BI team is interested in how many users clicked a button, they can find a unique selector for that button and add instrumentation without an additional code deployment.

Modern React applications are resistant to this sort of tracking. Many React apps use Styled Components (or similar technologies) that use opaque hashes for their class names. This technology massively improves developer productivity, but one important side effect is that class names are for machines and not for people. CSS class names aren't guaranteed to be consistent between builds.

More generally, though, web applications tend to change significantly over time. This means that CSS selectors (like button.some-class-name) will tend to quietly become invalid. Practically-speaking CSS selectors aren't an external contract. This is similar to how a grocery store's physical layout isn't a contract: the managers of a grocery store may change the layout at will, moving products as necessary, as long as the aisle indexes remain correct (the signs saying things like "Frozen Foods" and "Baking Needs").

We need to make "aisle indexes" for elements in our app so that selecting UI elements does not break, or breaks far less frequently. react-analytics-keys attempts to solve this problem by tying analytics keys to the semantic structure of an application.