The CookieManager Component is a Vue.js component designed to handle cookie consent and settings on a website. It provides users with options to accept or reject cookies and customize their preferences via a modal interface.
The HTML template handles the rendering of the cookie banner and settings modal. It uses Vue.js directives to dynamically generate the content based on the model data:
model: The component receives a model object as a prop, containing configuration and data used for rendering the cookie consent banner and settings modal.
2.
Data:
showCookieBanner: Controls the visibility of the cookie consent banner.
necessaryCookieNames: Array of names for necessary cookies, used for validation and display.
3.
Methods:
initializeCookieConsent(): Initializes the component based on existing cookie consent data.
enableScriptsFromConsentTypes(consentTypes): Enables scripts based on the user's consent preferences.
cookieTableIsNotEmpty(block): Checks if the cookie table for a given block contains rows.
cookieTableHeadersNotEmpty(): Checks if the cookie table headers are defined and not empty.
handleCookieSave(): Handles saving the user's cookie preferences from the settings modal.
HandleCookieRejectAll(): Handles rejecting all cookies and hides the consent banner.
HandleCookieSaveAll(): Handles accepting all cookies and hides the consent banner.
4.
Mounted Lifecycle Hook:
mounted(): Initializes the cookie consent state when the component is mounted.