Skip to content

performingdigital/cookie-popup-gdpr

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Cookie Popup Gdpr

Simple cookie popup to ask consent.

image

Installation

npm install @performing/cookie-popup-gpdr

Usage

import '@performing/cookie-popup-gdpr'
import '@performing/cookie-popup-gdpr/dist/style.css'

useCookies({
  description: 'We use cookies...',
  acceptButtonText: 'Accept All',
  rejectButtonText: 'Reject All',
  saveButtonText: 'Save',
  customizeButtonText: 'Customize',
}, {
  necessary: { 
    default: true, 
    optional: false, 
    title: 'Necessary:',
    description: 'This type of cookie is necessary',
  },
  statistics: { 
    default: false, 
    optional: true, 
    title: 'Statistics:',
    description: 'This type of cookie is for gather statistics',
  },
}, (p) => { 

  if (p.statistics) {
    // gather statistics  
  }

});

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

MIT

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

 
 
 

Contributors