react-cookienotice
TypeScript icon, indicating that this package has built-in type declarations

6.0.3 • Public • Published

react-cookienotice

A lightweight & customizable cookie banner for your React App

Preview Light

npm npm@next coverage minzipped downloads storybook

  • 🍃 No dependency, full self-made package (Bundlephobia)
  • 📱 Mobile first & responsive
  • ⚙️ Customizable with several props
  • ⏱️ Very fast setup (less than 1 minute)
  • 🧪 Tested with unit & functional tests
  • 🌙 Dark mode based on system settings
  • 🌎 Translated in Deutsch, English, Español, Français, Italiano, 한국인, Occitan & 中文 (create issue or submit pull request for more languages)

Install

npm

npm i --save react-cookienotice

Yarn

yarn add react-cookienotice

If you're using a SSR framework like Next.js, see Troubleshooting section.

Usage

import React from 'react'
import { CookieNotice } from 'react-cookienotice'
import 'react-cookienotice/dist/style.css'

const Example = () => <CookieNotice />

export default Example

Props

All props are optionals.

If you want a "Read More" link, you must set all of the following props:

  • readMoreLabel
  • readMoreLink
  • readMoreInNewTab
Key Type Description Default value
acceptAllButtonLabel string The label for the accept all cookies button. Accept all (translated in browser language)
onAcceptAllButtonClick Function A callback function to be called when the accept all cookies button is clicked. -
declineAllButtonLabel string The label for the decline all cookies button. Decline all (translated in browser language)
onDeclineAllButtonClick Function A callback function to be called when the decline all cookies button is clicked. -
customizeButtonLabel string The label for the customize cookies button. Customize (translated in browser language)
customizeTitleLabel string The title for the customize view. Customize (translated in browser language)
services string[] List of services to be customized. -
acceptButtonLabel string The label for the accept button. Accept (translated in browser language)
onAcceptButtonClick Function A callback function to be called when the accept cookies button is clicked. The first param returns the checked services. -
backButtonLabel string The label for the back button. Back (translated in browser language)
titleLabel string The title for the cookie banner. Cookie consent (translated in browser language)
descriptionLabel string The description for the cookie banner. By clicking Accept, you consent to our website's use of cookies to provide you with the most relevant experience by remembering your cookie preferences. (translated in browser language)
readMoreLabel string The label for the read more link. -
readMoreLink string The link for the read more label. -
readMoreInNewTab boolean Whether the read more link should open in a new tab. -
cookieExpiration number Days after cookie expires and user should reaccept cookies. 30
cookieName string The name of the cookie that saves the user consent. hide-notice

Troubleshooting

I'm using a SSR framework like Next.js and I have this error on build: document is not defined

For SSR you need to import dynamically the module with next/dynamic using { ssr: false }. This prevents the component from being included on the server, and dynamically loads it on the client-side only.

Create a new file which include the CookieNotice component :

import { CookieNotice } from 'react-cookienotice'
import 'react-cookienotice/dist/style.css'

export default function CookieBanner() {
  return <CookieNotice />
}

then you can import it wherever the component is used :

import dynamic from 'next/dynamic'

const CookieBanner = dynamic(() => import('./cookie-banner'), { ssr: false })

export default function Home() {
  return <CookieBanner />
}

License

MIT © xavierbriole

Credits

Built with Vite

Vite logo

Package Sidebar

Install

npm i react-cookienotice

Weekly Downloads

143

Version

6.0.3

License

MIT

Unpacked Size

81.1 kB

Total Files

29

Last publish

Collaborators

  • xavierbriole