Socket
Socket
Sign inDemoInstall

cookiesjsr

Package Overview
Dependencies
0
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    cookiesjsr

Cookies JSR. Easy plug-able cookie consent management tool.


Version published
Weekly downloads
17
increased by240%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

Cookies JSR

Easy plug-able cookie consent management tool built with React.

  • Allows GDPR conform cookie consent management.
  • Allows grouped and individual consent.
  • Allows easy integration of new 3rd-party services.
  • Supports translation.
  • Allows custom styling.

This tool does not contain any services that implements external resources, such as Analytics or Youtube. It is an easily configurable framework, with which it is possible to obtain the user's consent to the use of cookies, to save his decisions (also in a cookie) and provides an event as entry point for dispatching own services.

Install

  1. Create your cookiesjsr-config.json file where you define your groups and services.
  2. Create your cookiesjsr-init.js file where you initialize the services.
  3. Place the following HTML before the closing body-tag.

... and you are done.

<html lang="de">
  <head>
    ...
    <link
      rel="stylesheet"
      media="screen"
      href="https://cdn.jsdelivr.net/gh/jfeltkamp/cookiesjsr@1/dist/cookiesjsr.min.css"
    />
  </head>
  <body>
    ...

    <!-- The Place where cookiesjsr can live in. -->
    <div id="cookiesjsr"></div>
    <script src="/path/to/your/cookiesjsr-init.js"></script>
    <script src="https://cdn.jsdelivr.net/gh/jfeltkamp/cookiesjsr@1/dist/cookiesjsr.min.js"></script>
  </body>
</html>

Example cookiesjsr-config.json

(Documentation)

{
  "config": {
    "cookie": {
      "name": "cookiesjsr",
      "expires": 31536000000
    },
    "interface": {
      "openSettingsHash": "#editCookieSettings",
      "translationQuery": "/cookiesjsr/lang/%lang_id/translation.json",
      "availableLangs": ["en", "de", "es", "fr", "it", "nl", "pl", "ru"],
      "defaultLang": "en"
    }
  },
  "services": {
    "default": {
      "id": "default",
      "services": []
    },
    "analytic": {
      "id": "analytic",
      "services": [
        {
          "key": "gtag",
          "type": "analytic",
          "name": "Google Analytics",
          "uri": "https://support.google.com/analytics/answer/6004245",
          "needConsent": true
        },
        {
          "key": "matomo",
          "type": "analytic",
          "name": "Matomo",
          "uri": "https://matomo.org/docs/privacy/",
          "needConsent": true
        }
      ]
    }
  }
}

Example cookiesjsr-init.js

This file basically gives the base config to the JS library (see object: document.cookiesjsr), where the library can find their config file. (Documentation)

But you can also dispatch your consent dependent services inside of this file. (Further best practices)

// Base configuration
document.cookiesjsr = {
  apiUrl: "",
  configQuery: "/path/to/your/cookiesjsr-config.json",
};

var dispatcher = {
  matomo: {
    activate: function () {
      // Do stuff to enable Matomo. See best practices below.
    },
    fallback: function () {
      // Do stuff to fallback. E.g. display layer where the benefits are explained,
      // when Matomo is enabled.
    },
  },
  analytics: {
    activate: function () {
      // Do stuff to enable Google Analytics. See best practices below.
    },
    fallback: function () {
      // Do stuff to fallback. E.g. display layer where the benefits are explained,
      // when Google Analytics is enabled.
    },
  },
};

/**
 * Entry to your custom code:
 * Catch the Event 'cookiesjsrUserConsent' that comes with an object services inside the
 * event object called with event.detail.services. It contains the current user decisions.
 *
 * This event is fired when DOM is loaded or user updates his settings.
 */
document.addEventListener("cookiesjsrUserConsent", function (event) {
  var services =
    typeof event.detail.services === "object" ? event.detail.services : {};
  for (var sid in services) {
    if (typeof dispatcher[sid] === "object") {
      if (
        services[sid] === true &&
        typeof dispatcher[sid].activate === "function"
      ) {
        dispatcher[sid].activate();
      } else if (typeof dispatcher[sid].fallback === "function") {
        dispatcher[sid].fallback();
      }
    }
  }
});

Documentation cookiesjsr-config.json

In the config file are two objects expected: config, services and optinal translation.

The config object

In config you define some options about the

  1. interface: Some common option about
    • where to find the translation,
    • how to display the cookie consent widget.
    • ... and more
  2. cookie: The users decisions what cookies will be allowed or not, are saved in another 'required' cookie. Here you define the properties for this single cookie.
  3. callback: Each time the user saves changes of his cookie settings, a callback can be invoked, sending these data to the backend.
ParentChildrenType
configobject
cookieobject (keys: name, expires, sameSite, secure)
callbackobject (keys: method, url, headers)
interfaceobject (keys: openSettingsHash, ...)
servicesobject (see docs here)
translationobject, optional (see docs here)
Details
ParentChildrenType: Description
cookie
namestring: the cookie name
expiresinteger: (optional) time (ms) cookie is valid.
domainstring: (optional) domain cookie is valid for.
pathstring: (optional) path cookie is valid for.
secureboolean: (optional, default: false)
sameSitestring: (optional, None/Lax/Strict, default: Lax)
callbackdocs see section "Callback" below
urlstring: (optional) the callback url
methodstring: (optional, get/post, default: get)
headersobject: (optional), key-value pairs
interface
openSettingsHashstring: (optional, default: cookiesjsr) The location.hash value to open the cookie settings dialog.
showDenyAllboolean (optional, default: true) Add "deny all" button to dialog that makes all cookies forbidden.
translationQuerystring (optional, path/url) the absolute path or url where translation data can be load. ("%lang_id" is placeholder for language ID ISO 639-1 e.g. "en". This option you can use, when you use static translation files. You can also add the translation to your config-file.
availableLangsarray(string(2)): language IDs ISO 639-1 e.g. ["en", "de"]
defaultLangstring(2): (optional, default: en) Fallback language, if requested language not available
groupConsentboolean: (optional, default: false) The user can only en-/disable entire groups not individual services. Services are not shown in detail.
cookieDocsboolean: (optional, default: false) Display links to cookie documentation where explicitly is described what 3rd-party services and cookies are used. This is required, if you use groupConsent. Link and link text are provided by translation.
The services object

The services object is a simple homogeneous structure of multiple service groups containing the services that users have to accept or deny.

{
  "services": {
    "group_1": {
      "id": "group_1",
      "services": [
        { "service_1": "..." },
        { "service_2": "..." },
        { "...": "..." }
      ]
    },
    "group_2": {
      "...": "..."
    }
  }
}

Each contained service in a group has 5 properties:

PropertyTypeDescription
keystring (uid)The unique Id of the service. e.g. "gtag"
typestringGroup the service belongs to.
namestringDisplay name shown in the dialog widget
uristringURL for the ext. documentation of the resource.
needConsentstringIf service needs users consent or not (required cookies)
The translation object

The content of this object is just the same as the content of a translation file.

If the translation from a CMS or similar the translation can also be included in the config file. In this case, the path to the config file must contain a placeholder for the language ID (% lang_id).

However, you have to decide how you want to load the translation. A good option is to load static files as they are offered here in the Git repo. In this case, simply adjust the path where the files are stored at config.interface.translationQuery.

If the translations are to be maintained via a CMS or similar, it can be advantageous to deliver the translation with the configuration, because otherwise two API calls will be executed in succession, which can delay the display of the app. To achieve that the config delivers the correct translation you will have to provide a translation parameter in the configQuery route (see paragraph below).

However, IF a translation object is included in the config, the translationQuery will not be invoked.

How the language is determined?

<html lang="de"></html>

By the way: The app determines the language based on the lang parameter in the HTML tag. If no parameter is available, the default language of the browser is determining.

Base Config

Content of your cookiesjsr-init.js:

// Base configuration
document.cookiesjsr = {
  apiUrl: "",
  configQuery: "/path/to/your/cookiesjsr-config.json",
};

The base config tells the library where to find the config. If the config is load from an other domain, you must give an apiUrl (leave empty if not).

apiUrl: (optional, e.g. 'https://hi-api.io/path') The base URL where your API can be reached. Leave empty if your website has same origin. No pending slash.

configQuery: (required) Path to your config-file (cookiesjsr-config.json). If your config-file contains the translation data, the path must include a param "%lang_id" for the language id.

configQuery: '/path/to/%lang_id/cookiesjsr-config.json'

In the code example above you see how to catch the event and distribute the users consents to the individual service activation. Here we want to have a look on how to handle the 3rd-party service activation. The content of the functions provided in the dispatcher event (activate and fallback).

In order to effectively suppress 3rd party cookies, the resources must already be switched off in the supplied source code. I.e. that corresponding script tags or iframes (these are the most common use cases) have to be manipulated so that they do not work. => We have to find a reversible knock-out technique.

What the activate() function has to do is to reanimate the service.

What the fallback() function has to do is to repair gaps in the layout, inform user, that something is missing, or ask again if he now wants to activate the service.

Reversible knock-outs for <script> and <iframe>

<!-- before -->
<script src="https://ext-service.net/js/install_many_cookies.js"></script>
<!-- after (knocked out javascript) -->
<script
  src="https://ext-service.net/js/install_many_cookies.js"
  data-sid="extservice"
  type="text/plain"
></script>

<!-- before -->
<iframe
  src="https://www.youtube.com/embed/XGT82nnmF4c"
  width="560"
  height="315"
></iframe>
<!-- after (knocked out iframe) -->
<iframe
  src="/path/to/myIframeFallback.html"
  data-sid="youtube"
  data-src="https://www.youtube.com/embed/XGT82nnmF4c"
  width="560"
  height="315"
></iframe>

Re-animation of knocked out services

var dispatch = {
  extservice: {
    activate: function () {
      jQuery('script[data-sid="extservice"]').each(function () {
        var replacement = jQuery(this).clone().removeAttr("type");
        jQuery(this).replaceWith(replacement.html());
      });
    },
    fallback: function () {
      // No need.
    },
  },
  youtube: {
    activate: function () {
      jQuery('iframe[data-sid="youtube"]').each(function () {
        jQuery(this).attr("src", jQuery(this).data("src"));
      });
    },
    fallback: function () {
      jQuery('iframe[data-sid="youtube"]')
        .parent()
        .prepend(jQuery("<div>Sorry, but YouTube disabled.</div>"));
    },
  },
};

En-/disable 3rd-party services from anywhere

It is possible to activate third party services from anywhere on the website. It is not necessary to open the cookie widget for this. It just has to be fired a Javascript event cookiesjsrSetService.

Suppose you have a link on the page that should be used to activate the Matomo service...

<a href="#enable-matomo" id="cookiesjsr-enable-matomo">Enable matomo</a>

... your javascript could look like this.

var element = document.getElementById("cookiesjsr-enable-matomo");
element.addEventListener("click", function (e) {
  e.preventDefault();
  var options = { services: { matomo: true } };
  document.dispatchEvent(
    new CustomEvent("cookiesjsrSetService", { detail: options })
  );
});

As you can see, the event expects a data object, which is stored in the detail property of the CustomEvents. This data object should have at least one of the following properties:

PropertyValueDescription
allbooleanEn-/disables all 3rd-party services
servicesobjectAn object with key/value-pairs where the key is the id of a 3rd-parts service and value is a boolean if the service should be enabled (true) or disabled (false).
groupsobjectAn object with key/value-pairs where the key is the id of a entire group of services and value is a boolean if the services should be enabled (true) or disabled (false).

Callback

If you have defined a callback URL, this will be called (to your backend or wherever you want) immediately after the cookiesjsr cookie was set or updated. When you send a POST request, the answer of the callback should be a JSON response. The returned data is available in a JS event. The following code is required to process the returned data.

document.addEventListener("cookiesjsrCallbackResponse", function (event) {
  // process returned data in frontend here.
  console.log(event.detail.response);
});

Styling

If you just want to customize colors use css vars. Copy the following code to your css and play with the values.

You shouldn't have any trouble overwriting the css. The CSS is plain BEM-style and there are no "!importants" or inline-styles.

<style>
  body #cookiesjsr {
    --default-margin: 1.25em;
    --font-size-reset: 1rem;

    --btn-font-color: #fff;
    --btn-border-color: #fff;
    --btn-bg-color: #286839;
    --btn-prime-font-color: #286839;
    --btn-prime-border-color: #fff;
    --btn-prime-bg-color: #fff;
    --btn-inv-font-color: #286839;
    --btn-inv-border-color: #286839;
    --btn-inv-bg-color: #fff;
    --btn-prime-inv-font-color: #fff;
    --btn-prime-inv-border-color: #286839;
    --btn-prime-inv-bg-color: #286839;

    --link-list-font-color: #fff;
    --link-list-separator-color: #fff;

    --banner-logo-offset: 100px;
    --banner-bg-color: #286839;
    --banner-font-color: #fff;

    --layer-header-height: 3.5em;
    --layer-header-bg-color: #fff;
    --layer-header-font-color: #000f37;
    --layer-body-bg-color: #fff;
    --layer-tab-bg-color: #fff;
    --layer-tab-font-color: #000f37;
    --layer-tab-active-bg-color: #286839;
    --layer-tab-active-font-color: #fff;
    --layer-bg-dark: #286839;
    --layer-font-light: #fff;
    --layer-font-dark: #000f37;
    --layer-border-color: #e4e5e6;
    --layer-footer-bg-color: #fff;
    --layer-footer-font-color: #000f37;
    --layer-footer-height: 4.5em;

    --switch-border-color: #e4e5e6;
    --switch-handle-color: #fff;
    --switch-bg-off: #fff;
    --switch-bg-on: #00aa00;
    --switch-width: 45px;
    --switch-height: 20px;
    --switch-always-on-font-color: #00aa00;
    --switch-always-on-bg-color: #fff;
  }
</style>

Rewrite CSS

The original .scss files are in the repo. If you want to do a full CSS rewrite, this might be a good starting point. In that case, you can simply do without integrating the original CSS.

The MarkUp is fixed because the JS is a rendered React-App. You can't change anything here.

FAQs

Last updated on 28 Jul 2022

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc