1.0.1 • Published 2 years ago

@zeerobug/cookie-consent-banner v1.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

GDPR Cookie Consent banner

js-standard-style CircleCI Svelte v3 Svelte v3

What is it?

This is a vanilla JS implementation (thanks to Svelte) of a compliant GDPR banner. It allows the user granular opt-in and out of four different cookie categories.

What are its features?

  • Small, discrete, and non-intrusive
  • GDPR Compliant
  • Responsive
  • Offers four categories
  • Runs any function on opting-in
  • Runs opted-in functions on each visit
  • Changing the choices requires the user to opt-in again.
  • Vanilla JS
  • Svelte Ready
  • No dependencies
  • Choices expire yearly
  • Optional CSS (with BEM) to bootstrap your cookie message right away
  • Modifiable labels and messages

How do I install it?

Via NPM

Simply install the node module into your codebase.

npm install --save-dev @beyonk/gdpr-cookie-consent-banner

then import the banner into your code:

import attachBanner from '@beyonk/gdpr-cookie-consent-banner';
import '@beyonk/gdpr-cookie-consent-banner/dist/style.css'; // import optional styles

attachBanner(document.body);

Using raw javascript

From a CDN
<link
  rel="stylesheet"
  href="//unpkg.com/@beyonk/gdpr-cookie-consent-banner/dist/style.css"
/>
<script src="//unpkg.com/@beyonk/gdpr-cookie-consent-banner/dist/browser/bundle.min.js"></script>
Storing a local copy

Download the contents of dist/browser/bundle.js and dist/style.css to your codebase, and include it in your html:

<link rel="stylesheet" href="path/to/style.css" />
<script src="path/to/bundle.js"></script>
<script>
  GdprConsent.attachBanner(document.body);
</script>

Usage

Because this banner was designed to work across three different technology stacks, usage is a bit different to a regular es module.

I've documented our usage of it below:

Svelte v3

Just use it as a regular svelte component:

<GdprBanner
  cookieName="foo"
  description="bar"
  on:analytics="this.someFunction()"
/>

<script>
  import '@beyonk/gdpr-cookie-consent-banner/dist/style.css'; // optional, you can also define your own styles
  import GdprBanner from '@beyonk/gdpr-cookie-consent-banner';
</script>

Svelte v2

See the v4.x.x tag of this repository.

Nuxt / Vue

You can use the banner in NuxtJS application as follows:

Create a component which uses the library, and mounts it during the render stage:

<template>
  <div ref="gdprBanner"></div>
</template>

<script>
  export default {
    mounted () {
      const { attachBanner } = require('@beyonk/gdpr-cookie-consent-banner/dist/esm/bundle.js')
      attachBanner(this.$refs.gdprBanner, {
        heading: 'Cookie policy'
      })
    }
  }
</script>

Optionally, add this to your CSS array in your nuxt.config.js file:

/**
 * Global CSS
 **/
css: ['your_other_css_file.css', '@beyonk/gdpr-cookie-consent-banner/dist/style.css'],

Configuration

The defaults are shown below, simply put modified versions of as many of the below into an options object, and pass it to attachBanner.

It is not possible to opt-out of 'necessary' cookies.

const options = {
  /**
   * You must set the cookie name.
   **/
  cookieName: 'beyonk_gdpr',

  /**
   * The cookie configuration, such as domain and path.
   **/
  cookieConfig: {
    domain: 'example.com',
    path: '/',
  },

  /**
   * These are the top two lines of text on the banner
   * The 'description' field can include html such as links
   **/
  heading: 'GDPR Notice',
  description:
    'We use cookies to offer a better browsing experience, analyze site traffic, personalize content, and serve targeted advertisements. Please review our <a href="/privacy-policy">privacy policy page</a>. By clicking accept, you consent to our privacy policy & use of cookies.',

  /**
   * All the button labels
   **/
  acceptLabel: 'Confirm all',
  settingsLabel: 'Preferences',
  closeLabel: 'Close window',

  /**
   * These are the default opt-ins and their descriptions.
   * When value is set to true, the option will automatically be checked on load.
   *
   * If you don't want to show a category, simply remove the specified key from this object.
   **/
  choices: {
    necessary: {
      label: 'Required cookies',
      description:
        "These can't be turned off as they are used to control all the other cookies",
      value: true,
    },
    analytics: false,
  },

  /**
   * Show an icon to edit cookies later, when banner is closed.
   **/
  showEditIcon: true,

  /**
   * These are the functions which are run if a user opts-in to that category.
   * You should drop your cookies here (or set a variable to control the later dropping of cookies.
   *
   * If you are using svelte, you can use events instead - see the Svelte section below.
   **/
  categories: {
    analytics: function () {
      console.log('No analytics cookies specified');
    },
    tracking: function () {
      console.log('No tracking cookies specified');
    },
    marketing: function () {
      console.log('No marketing cookies specified');
    },
    necessary: function () {
      console.log('No necessary cookies specified');
    },
  },
  /**
   * Added by zeerobug
   * This is run when the submit button is pressed
   * It contains all categories and their state
   * usefull to toggle cookies on and off
   **/
  choicesHandler: function (choices) {
    console.log('Currrent state of categories', choices);
  },
};
GdprConsent.attachBanner(document.body, options);