Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

react-cookie-consent

Mastermindzh329.7kMIT9.0.0TypeScript support: included

A small, simple and customizable cookie consent bar for use in React applications.

react, cookie, consent, cookiebar

readme

:cookie: react-cookie-consent :cookie:

A small, simple and customizable cookie consent bar for use in React applications.

NPM

Demo (storybook): https://mastermindzh.github.io/react-cookie-consent/

Downloads Dependent repos (via libraries.io) GitHub contributors Minified size npm type definitions license-mit

Default look

default look

Table of contents

Installation

npm install react-cookie-consent

or use yarn:

yarn add react-cookie-consent

Using it

You can import the cookie bar like this:

import CookieConsent from "react-cookie-consent";

If you want to set/remove cookies yourself you can optionally import Cookies (straight from js-cookie) like this:

import CookieConsent, { Cookies } from "react-cookie-consent";

Then you can use the component anywhere in your React app like so:

<CookieConsent>This website uses cookies to enhance the user experience.</CookieConsent>

You can optionally set some props like this (next chapter will show all props):

<CookieConsent
  location="bottom"
  buttonText="Sure man!!"
  cookieName="myAwesomeCookieName2"
  style={{ background: "#2B373B" }}
  buttonStyle={{ color: "#4e503b", fontSize: "13px" }}
  expires={150}
>
  This website uses cookies to enhance the user experience.{" "}
  <span style={{ fontSize: "10px" }}>This bit of text is smaller :O</span>
</CookieConsent>

One of the props (onAccept) is a function, this function will be called after the user has clicked the accept button. It is called with an object containing a boolean property acceptedByScrolling to indicate if the acceptance was triggered by the user scrolling You can provide a function like so:

<CookieConsent
  onAccept={(acceptedByScrolling) => {
    if (acceptedByScrolling) {
      // triggered if user scrolls past threshold
      alert("Accept was triggered by user scrolling");
    } else {
      alert("Accept was triggered by clicking the Accept button");
    }
  }}
></CookieConsent>

If the decline button is enabled then the (onDecline) prop function can be used, this function will be called after the user has clicked the decline button. You can enable the button and provide a function like so:

<CookieConsent
  enableDeclineButton
  onDecline={() => {
    alert("nay!");
  }}
></CookieConsent>

getting the cookies value in your own code

react-cookie-consent exports a function called getCookieConsentValue(cookieName: string). You can use it in your own code like so:

import CookieConsent, { Cookies, getCookieConsentValue } from "react-cookie-consent";

console.log(getCookieConsentValue("your_custom_cookie_name"));

reset the cookies value in your own code

react-cookie-consent exports a function called resetCookieConsentValue. You can use it in order to remove cookie in client-site:

import CookieConsent, { Cookies, resetCookieConsentValue } from "react-cookie-consent";

console.log(resetCookieConsentValue());

That option would be interesting if you want to allow user to change their consent. If you want to show again the consent bar, you must force "visible" prop to show again the bar.

Props

Prop Type Default value Description
location string, "top", "bottom" or "none" "bottom" Syntactic sugar to easily enable you to place the bar at the top or the bottom of the browser window. Use "none" to disable.
visible string, "show", "hidden" or "byCookieValue" "byCookieValue" Force the consent bar visibility. If "byCookieValue", visibility are defined by cookie consent existence.
children string or React component | Content to appear inside the bar
disableStyles boolean false If enabled the component will have no default style. (you can still supply style through props)
hideOnAccept boolean true If disabled the component will not hide it self after the accept button has been clicked. You will need to hide yourself (see onAccept)
buttonText string or React component "I understand" Text to appear on the button
declineButtonText string or React component "I decline" Text to appear on the decline button
cookieName string "CookieConsent" Name of the cookie used to track whether the user has agreed. Note that you also have to pass this to the getCookieConsentValue and resetCookieConsentValue functions as they default to "CookieConsent" as well.
cookieValue string or boolean or number true Value to be saved under the cookieName.
declineCookieValue string or boolean or number false Value to be saved under the cookieName when declined.
setDeclineCookie boolean true Whether to set a cookie when the user clicks "decline"
onAccept function () => {} Function to be called after the accept button has been clicked.
onDecline function () => {} Function to be called after the decline button has been clicked.
debug boolean undefined Bar will be drawn regardless of cookie for debugging purposes.
expires number 365 Number of days before the cookie expires.
extraCookieOptions object {} Extra info (apart from expiry date) to add to the cookie
overlay boolean false Whether to show a page obscuring overlay or not.
containerClasses string "" CSS classes to apply to the surrounding container
buttonClasses string "" CSS classes to apply to the button
buttonWrapperClasses string "" CSS classes to apply to the div wrapping the buttons
customButtonWrapperAttributes React.HTMLAttributes<HTMLDivElement> {} Allows you to set custom (data) attributes on the button wrapper div
declineButtonClasses string "" CSS classes to apply to the decline button
buttonId string "" Id to apply to the button
declineButtonId string "" Id to apply to the decline button
contentClasses string "" CSS classes to apply to the content
overlayClasses string "" CSS classes to apply to the surrounding overlay
style object look at source React styling object for the bar.
buttonStyle object look at source React styling object for the button.
declineButtonStyle object look at source React styling object for the decline button.
contentStyle object look at source React styling object for the content.
overlayStyle object look at source React styling object for the overlay.
disableButtonStyles boolean false If enabled the button will have no default style. (you can still supply style through props)
enableDeclineButton boolean false If enabled the decline button will be rendered
flipButtons boolean false If enabled the accept and decline buttons will be flipped
ButtonComponent React component button React Component to render as a button.
sameSite string, "strict", "lax" or "none" none Cookies sameSite attribute value
cookieSecurity boolean undefined Cookie security level. Defaults to true unless running on http.
ariaAcceptLabel string Accept cookies Aria label to set on the accept button
ariaDeclineLabel string Decline cookies Aria label to set on the decline button
acceptOnScroll boolean false Defines whether "accept" should be fired after the user scrolls a certain distance (see acceptOnScrollPercentage)
acceptOnScrollPercentage number 25 Percentage of the page height the user has to scroll to trigger the accept function if acceptOnScroll is enabled
customContentAttributes object {} Allows you to set custom (data) attributes on the content div
customContainerAttributes object {} Allows you to set custom (data) attributes on the container div
onOverlayClick function () => {} allows you to react to a click on the overlay
acceptOnOverlayClick boolean false Determines whether the cookies should be accepted after clicking on the overlay
customButtonProps object {} Allows you to set custom props on the button component
customDeclineButtonProps object {} Allows you to set custom props on the decline button component

Debugging it

Because the cookie consent bar will be hidden once accepted, you will have to set the prop debug={true} to evaluate styling changes:

<CookieConsent debug={true}></CookieConsent>

Note: Don't forget to remove the debug-property for production.

Why are there two cookies? One of which named "Legacy"

The short story is that some browsers don't support the SameSite=None attribute. The modern browsers force you to have SameSite set to something other than none.

So react-cookie-consent fixes this like so:

  • set the fallback cookie (e.g -legacy) first, this will always succeed (on all browsers)
  • set the correct cookie second (this will work on modern browsers, fail on older ones)

This happens on lines 29-37

When checking the cookie it'll do it in reverse. If the regular cookie exists, it'll use that. If no regular cookie exists it'll check whether the legacy cookie exists. If both are non-existent no consent was given.

The long story can be found here: pull-request#68

Styling it

You can provide styling for the bar, the button and the content. Note that the bar has a display: flex property as default and is parent to its children "content" and "button".

The styling behaves kind of responsive. The minimum content width has been chosen to be "300px" as a default value. If the button does not fit into the same line it is wrapped around into the next line.

You can style each component by using the style, buttonStyle and contentStyle prop. These will append / replace the default styles of the components. Alternatively you can provide CSS classnames as containerClasses, buttonClasses and contentClasses to apply predefined CSS classes.

You can use disableStyles={true} to disable any built-in styling.

Examples

Changing the bar background to red

<CookieConsent style={{ background: "red" }}></CookieConsent>

Changing the button font-weight to bold

<CookieConsent buttonStyle={{ fontWeight: "bold" }}></CookieConsent>

Using predefined CSS classes

You can pass predefined CSS classes to the components using the containerClasses, buttonClasses and contentClasses props. The example below uses bootstrap classes:

<CookieConsent
  disableStyles={true}
  location={OPTIONS.BOTTOM}
  buttonClasses="btn btn-primary"
  containerClasses="alert alert-warning col-lg-12"
  contentClasses="text-capitalize"
>
  This website uses cookies to enhance the user experience.{" "}
  <span style={{ fontSize: "10px" }}>This bit of text is smaller :O</span>
</CookieConsent>

Which results in:

bootstrap styling

Accept on scroll

You can make the cookiebar disappear after scrolling a certain percentage using acceptOnScroll and acceptOnScrollPercentage. It is legal in some use-cases, Italy being one of them. Consult your legislation on whether this is allowed.

<CookieConsent
  acceptOnScroll={true}
  acceptOnScrollPercentage={50}
  onAccept={(byScroll) => {
    alert(`consent given. \n\n By scrolling? ${byScroll}`);
  }}
>
  Hello scroller :)
</CookieConsent>

Flipping the buttons

If you enable the decline button you can pass along the "flipButtons" property to turn the buttons around:

<CookieConsent enableDeclineButton flipButtons>
  Flipped buttons
</CookieConsent>

Which results in:

flipped buttons

You can add more cookie options using the extraCookieOptions parameter like so:

<CookieConsent extraCookieOptions={{ domain: "myexample.com" }}>cookie bar</CookieConsent>

Rainbows

rainbows!

If you're crazy enough you can even make a rainbow colored bar:

<CookieConsent
  buttonText="OMG DOUBLE RAINBOW"
  cookieName="myAwesomeCookieName2"
  style={{
    background: "linear-gradient(to right, orange , yellow, green, cyan, blue, violet)",
    textShadow: "2px 2px black",
  }}
  buttonStyle={{
    background: "linear-gradient(to left, orange , yellow, green, cyan, blue, violet)",
    color: "white",
    fontWeight: "bolder",
    textShadow: "2px 2px black",
  }}
>
  This website uses cookies to enhance the user experience.{" "}
  <span style={{ fontSize: "10px" }}>This bit of text is smaller :O</span>
</CookieConsent>

Overlay

overlay

You can also generate a page-obfuscating overlay that will prevent actions other than interacting with the cookie consent button(s).

<CookieConsent location="bottom" cookieName="myAwesomeCookieName3" expires={999} overlay>
  This website uses cookies to enhance the user experience.
</CookieConsent>

Contributor information

When making a PR please think about the following things:

  • Update the ChangeLog (or include what you did in the PR and I'll add it, up to you)
  • No need to build or update the package.json. I will do both on release.
  • Please don't change code convention / style

The list below features the projects which use react-cookie-consent (that I know off):

changelog

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

Made all props optional and fixed documentation. Fixes #191 and #193

Second try of np... Removed postinstall np is not my thing.. reverted to old release strategy

  • Switched to tsdx and Typescript
  • Added storybook with examples from readme
  • Added customButtonWrapperAttributes prop which allows to add custom attributes to the button wrapper div

[7.5.0]

  • Added customDeclineButtonProps to add custom properties to the decline button

[7.4.1]

  • Small version error in package.json that actually didn't make it work with React 18

[7.4.0]

  • Added support for React 18
  • Updated example and codebase to use React 18

[7.3.1]

  • Added type annotations on public functions

[7.3.0]

  • added customButtonProps that allows to use custom props with the button component. Specifically useful for library buttons components, for e.g. MUI Button.

[7.2.1]

  • hideOnDecline added to typescript files
  • Added .prettieringore

[7.2.0]

  • Added onOverlayClick which allows you to react to a click on the overlay
  • Added acceptOnOverlayClick which accepts the cookies when the overlay is clicked and runs onOverlayClick

[7.1.1]

  • customContentAttributes and customContainerAttributes are now optional in the typing file as they should be

[7.1.0]

  • Added custom attribute props for content and container

[7.0.1]

  • Configured webpack to remove self from build artefact. Should now work in Nextjs and Gatsby (only tested those..)

[7.0.0]

  • Switched from CommonJS to UMD module

[6.4.1)]

  • Added missing typing

[6.4.0)]

  • Added visible prop

[6.3.0)]

  • Added the (optional) scrolling effect back in as it is declared legal in some countries now.

[6.2.4]

  • version bumps :)

[6.2.3]

  • Added support for IE11, the webpack generated runtime-code should not use arrow functions

[6.2.2]

  • Fixed the return type of getCookieConsentValue in the dts file.

[6.2.1]

Added the getCookieConsentValue to the dts file.

[6.2.0]

Added the exported function getCookieConsentValue to get the cookie value from custom code

[6.1.0]

Added support for React 17

[6.0.0]

removed

Accepting by scrolling is no longer allowed and has thus been removed from the package. For details see issue 88

[5.2.0]

added

Added aria labels for both the decline and accept button

[5.1.4]

changed

  • set default SameSite attribute to "lax" because browsers are already implementing the cookie policy changes.

[5.1.3]

changed

  • Fix missing buttonWrapperClasses prop in type definition

[5.1.2]

changed

  • Set cookie value before handling side-effects.
  • The overlay is now conditional. Meaning that the component behaves exactly as it did prior to 5.1.0 when you do not use the overlay

[5.1.0]

A new feature! This time it's an "overlay" on the entire website to block access whilst the cookiebar is displayed. This is all opt-in of course and the README covers it nicely (just add overlay to the props and see what happens).

We got an update picture, with a cute cat... unfortunately the cat won't be included by default:

overlay example image

[5.0.1]

  • Fixed Issue 69 by removing location from the proptypes to avoid build-time issues

[5.0.0]

added

  • CookieSecurity prop - allows securing the cookie
  • sameSite prop - allows you to set sameSite properties so browser won't warn about non-secure cookies :)

[4.1.0]

changed

  • Added CookieConsent back in as the default for the containerClasses property.

[4.0.0]

I decided to update react-cookie-consent to version 4 because this version has a buttonWrapper which will break appearance. I consider appearance a major feature.

Added

  • Changelog :D
  • A wrapper around the buttons so they always stay together. (still possible to change with css using buttonWrapperClasses)

Changed

  • Default ids for the buttons (rcc stands for react-cookie-consent, cookie-consent is blocked by some adblockers nowadays so I abbreviated it)

Updated

dependencies

  • js-cookie updated from 2.2.0 to 2.2.1

peer dependencies

  • react updated from 16.4.0 to 16.13.1

development dependencies

  • @types/js-cookie updated from 2.2.2 to 2.2.6
  • babel-cli updated from 6.24.1 to 6.26.0
  • babel-preset-env updated from 1.5.1 to 1.7.0
  • react updated from 16.8.6 to 16.13.1