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

html-gdpr-guard

v1.1.0

Published

Vanilla JavaScript binding to use gdpr-guard as efficiently and easily as possible, based on data provided in the DOM

Downloads

18

Readme

html-gdpr-guard

Vanilla JavaScript binding to gdpr-guard as efficiently and easily as possible, based on data provided in the DOM

You can have a look at the demo to see it in action and inspect the DOM.

You can also have a look at the docs.

Install

Via NPM: npm i -S html-gdpr-guard

Via Yarn: yarn add html-gdpr-guard

As a 3rd-party script tag:

<script src="/path/to/dist/index.js"></script>

Use

Using modules:

import {
	restoreHtmlGdprManager,
	//
	HtmlGdprGuardError,
	NoManagerDefinitionError,
	NoNameError,
	NoCheckboxError,
} from "html-gdpr-guard"

Using commonjs:

const {
	restoreHtmlGdprManager,
	//
	HtmlGdprGuardError,
	NoManagerDefinitionError,
	NoNameError,
	NoCheckboxError,
} = require("html-gdpr-guard");

In the browser:

const {
	restoreHtmlGdprManager,
	//
	HtmlGdprGuardError,
	NoManagerDefinitionError,
	NoNameError,
	NoCheckboxError,
} = htmlGdprGuard;

Restore your manager instance

To restore your manager instance, you will need an instance of GdprSavior. The simplest one is gdpr-guard-local which relies on local storage.

The simplest way to restore your manager is to let the library do everything:

const gdprSavior = getMyGdprSavior();
const manager = await restoreHtmlGdprManager(gdprSavior);

If it fails, it will throw an instance of HtmlGdprGuardError which can be one of the following:

  • NoManagerDefinitionError
  • NoNameError
  • NoCheckboxError

Create your DOM structure

A guard's data

Guard name (mandatory)

A guard's data is scoped within the root element that is marked using the data-gdpr-guard attribute. That attribute can contain the name of your guard, otherwise the first element that has a data-gdpr-guard-name will be used to retrieve the guard's name. It is mandatory

Guard description (optional)

The guard's description can be added via a data-gdpr-guard-description with a value on the root element, or you can tag an element with data-gdpr-guard-description whose textContent will be treated as its description. It is optional

It will default to an empty string. Note that if the description is the attribute's value it won't be shown to the user.

Guard storage (optional)

The guard's storage can be added via a data-gdpr-guard-storage attribute whose value should be the key in the GdprStorage enum. It is optional

Guard checkbox (mandatory)

The checkbox that controls the guard is resolved (among the guard's children) in the following order based on the guard's name:

  • checkbox whose ID is the guard's name
  • checkbox whose name attribute is the guard's name
  • first checkbox marked with the data-gdpr-checkbox attribute

Guard's required status (optional)

To mark the guard as required you can:

  • Add the gdpr-guard-required attribute on the guard's root element
  • Add the required attribute on the guard's checkbox

Note that, just like the way gdpr-guard handles required guards, if a parent is required then all of its children will be as well.

You don't have to make your checkbox required and disabled, it will be all synced up as the guard is parsed.

A group's data

A group behaves exactly like a guard, except that its root is marked using data-gdpr-group instead of data-gdpr-guard.

The manager's data

The manager behaves a little bit like a guard, but has specific attributes:

  • data-gdpr is used to find the root of your manager, unless you provide it in restoreHtmlGdprManager's options. Its value is treated as the manager's name. You don't have to give it a value. You can skip it altogether.
  • data-gdpr-manager that can be used to store the name of the manager if you didn't provide a value to the data-gdpr attribute (or the attribute itself)

Customize the restoration process

You can pass a set of options as the second argument of restoreHtmlGdprManager. Let's inspect them one by one.

gdprEl HTMLElement

The html element that will serve as root of the manager's definitions. By default, it will use document.querySelector("[data-gdpr]").

If the manager can't be found, it'll throw a NoManagerDefinitionError.

autoCloseBanner bool

Whether the banner should be automatically closed once the manager has been restored if the consent banner has already been shown.

bindEventHandlersHook function

A callback that can be used to attach event listeners to the manager's GdprManagerEventHub.

The callback's signature is the following:

type BindEventsCallback = (eventsHub: GdprManagerEventHub) => void;

For instance:

await restoreHtmlGdprManager(gdprSavior, {
	bindEventHandlersHook(eventsHub) {
		eventsHub.onEnable("myGuard", () => {
			connectToWsApi();
		});

		eventsHub.onDisable("myGuard", () => {
			disconnectFromWsApi();
		});
	},
});

addGuardsBeforeHook function

A callback that can be used to add guards' definitions to the GdprManagerBuilder instance before the library parses data from the DOM.

The callback's signature is the following:

type AddGuardsCallback = (managerBuilder: GdprManagerBuilder) => void;

addGuardsAfterHook function

A callback that can be used to add guards' definitions to the GdprManagerBuilder instance after the library parsed data from the DOM.

The callback's signature is the following:

type AddGuardsCallback = (managerBuilder: GdprManagerBuilder) => void;

onDeclineAllErrorHook function

A callback that can be used to hande/capture errors when the user click on a "decline all" button.

The callback's signature is the following:

type StoreErrorHandler = (didStore: boolean, error?: Error) => void;

onSaveErrorHook function

A callback that can be used to hande/capture errors when the user saves their preferences.

The callback's signature is the following:

type StoreErrorHandler = (didStore: boolean, error?: Error) => void;

onCancelErrorHook function

A callback that can be used to hande/capture errors when the user click on a "cancel" button.

The callback's signature is the following:

type StoreErrorHandler = (didStore: boolean, error?: Error) => void;

onBannerClose function

A callback that can be used to execute code when the GDPR banner is closed.

The callback's signature is the following:

type BannerCallback = () => void;

For instance:

await restoreHtmlGdprManager(gdprSavior, {
	onBannerClose() {
		hideMyGdprBanner();
	},
});

onBannerOpen function

A callback that can be used to execute code when the GDPR banner is closed.

The callback's signature is the following:

type BannerCallback = () => void;

For instance:

await restoreHtmlGdprManager(gdprSavior, {
	onBannerOpen() {
		showMyGdprBanner();
	},
});