openreplay/tracker/tracker-zustand
2023-03-13 10:36:39 +01:00
..
src change(ui): cleanup 2022-09-26 12:32:36 +02:00
.gitignore feat(tracker): add zustand support 2022-09-09 11:55:31 +02:00
.npmignore feat(tracker): add zustand support 2022-09-09 11:55:31 +02:00
LICENSE feat(tracker): add zustand support 2022-09-09 11:55:31 +02:00
package.json change(tracker): restart worker if its dead; fix zustand peer d version 2023-03-13 10:36:39 +01:00
README.md change(tracker): zustand 1.0.2 2022-09-13 17:01:27 +02:00
tsconfig-cjs.json feat(tracker): add zustand support 2022-09-09 11:55:31 +02:00
tsconfig.json feat(tracker): add zustand support 2022-09-09 11:55:31 +02:00

OpenReplay Tracker Zustand plugin

A Zustand plugin for OpenReplay Tracker. This plugin allows you to see the application state during session replay.

Installation

npm i @openreplay/tracker-zustand

Usage

Initialize the @openreplay/tracker package as usual and load the plugin into it. Then put the generated plugin into your plugins field of your store.

import create from "zustand";
import Tracker from '@openreplay/tracker';
import trackerZustand from '@openreplay/tracker-zustand';


const tracker = new Tracker({
  projectKey: YOUR_PROJECT_KEY,
});

const zustandPlugin = tracker.use(trackerZustand())
// store name, optional
// randomly generated if undefined
const bearStoreLogger = zustandPlugin('bear_store')


const useBearStore = create(
  bearStoreLogger((set: any) => ({
    bears: 0,
    increasePopulation: () => set((state: any) => ({ bears: state.bears + 1 })),
    removeAllBears: () => set({ bears: 0 }),
  }))
)

You can customize the plugin behavior with options to sanitize your data. They are similar to the ones from the standard createLogger plugin.

trackerZustand({
  filter (mutation, state) {
    // returns `true` if a mutation should be logged
    // `mutation` is a `{ type, payload }`
    return mutation.type !== "aBlacklistedMutation";
  },
  transformer (state) {
    // transform the state before logging it.
    // for example return only a specific sub-tree
    return state.subTree;
  },
  mutationTransformer (mutation) {
    // mutations are logged in the format of `{ type, payload }`
    // we can format it any way we want.
    return mutation.type;
  },
})