🚨 Shai-Hulud Strikes Again:834 Packages Compromised.Technical Analysis →
Socket
Book a DemoInstallSign in
Socket

@blackbox-vision/ra-audit-log

Package Overview
Dependencies
Maintainers
2
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@blackbox-vision/ra-audit-log

> TODO: description

latest
npmnpm
Version
4.1.0
Version published
Weekly downloads
1
Maintainers
2
Weekly downloads
 
Created
Source

RA Audit Log License: MIT

An audit log for React Admin.

Install

You can install this library via NPM or YARN.

NPM

npm i @blackbox-vision/ra-audit-log

YARN

yarn add @blackbox-vision/ra-audit-log

Use case

You need to track user events over your React Admin app.

Usage

The usage is really simple:

Define your dataProvider function like the following:

import { addEventsForMutations } from "@blackbox-vision/ra-audit-log";
import simpleRestProvider from "ra-data-simple-rest";
import authProvider from "./authProvider";

const dataProvider = addEventsForMutations(
  simpleRestProvider("http://path.to.my.api/"),
  authProvider
);

The addEventsForMutations function accepts the following options:

  • name: the name of the event logs resource (defaults to events)
import { addEventsForMutations } from "@blackbox-vision/ra-audit-log";
import simpleRestProvider from "ra-data-simple-rest";
import authProvider from "./authProvider";

const dataProvider = addEventsForMutations(
  simpleRestProvider("http://path.to.my.api/"),
  authProvider,
  { name: "events" }
);
  • resources: the resources and mutations you want to track with events. It can be an array of resource names or an array of arrays defining both the resource and the dataProvider calls to track
import { addEventsForMutations } from "@blackbox-vision/ra-audit-log";
import simpleRestProvider from "ra-data-simple-rest";
import authProvider from "./authProvider";

const dataProvider = addEventsForMutations(
  simpleRestProvider("http://path.to.my.api/"),
  authProvider,
  {
    resources: [
      // create an event for all known mutations on posts
      "posts",
      // create an event only for create and update on comments, but not for delete, deleteMany or updateMany
      ["comments", ["create", "update"]],
    ],
  }
);
  • shouldAudit: as an alternative to resources, you can specify a function which, given a dataProvider method name (create, update, etc.) and the arguments it was called with, should return true to create an event. This allows to target custom dataProvider methods:
import { addEventsForMutations } from "@react-admin/ra-audit-log";
import simpleRestProvider from "ra-data-simple-rest";
import authProvider from "./authProvider";

const dataProvider = addEventsForMutations(
  simpleRestProvider("http://path.to.my.api/"),
  authProvider,
  {
    shouldAudit: (action, ...args) => {
      if (action === "myCustomMethod") {
        return true;
      }
    },
  }
);

Issues

Please, open an issue following one of the issues templates. We will do our best to fix them.

Contributing

If you want to contribute to this project see contributing for more information.

License

Distributed under the MIT license. See LICENSE for more information.

FAQs

Package last updated on 13 Mar 2023

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