Fix Cookie Banner.

This commit is contained in:
2025-04-18 13:48:11 +02:00
parent 76d178f54e
commit 5c3da709df
12 changed files with 397 additions and 46 deletions
+1 -1
View File
@@ -82,7 +82,7 @@ define(['./workbox-4a2e5f00'], (function (workbox) { 'use strict';
"revision": "3ca0b8505b4bec776b69afdba2768812" "revision": "3ca0b8505b4bec776b69afdba2768812"
}, { }, {
"url": "index.html", "url": "index.html",
"revision": "0.lgbjrbj51sg" "revision": "0.umc7krbmrh"
}], {}); }], {});
workbox.cleanupOutdatedCaches(); workbox.cleanupOutdatedCaches();
workbox.registerRoute(new workbox.NavigationRoute(workbox.createHandlerBoundToURL("index.html"), { workbox.registerRoute(new workbox.NavigationRoute(workbox.createHandlerBoundToURL("index.html"), {
+1 -1
View File
File diff suppressed because one or more lines are too long
+13 -2
View File
@@ -1,6 +1,6 @@
// App.tsx // App.tsx
import { useEffect, Suspense } from 'react'; import { useEffect, Suspense } from 'react';
import { BrowserRouter } from 'react-router-dom'; import { BrowserRouter, useLocation } from 'react-router-dom';
import { HelmetProvider } from 'react-helmet-async'; import { HelmetProvider } from 'react-helmet-async';
import Layout from './components/Layout'; import Layout from './components/Layout';
import AppRoutes from './routes'; import AppRoutes from './routes';
@@ -12,9 +12,19 @@ import DebugOverlay from './components/DebugOverlay';
import { logPageView } from './utils/analytics'; import { logPageView } from './utils/analytics';
import './styles/scrollbar.css'; import './styles/scrollbar.css';
function App() { // RouteTracker Component für präzises Seiten-Tracking
const RouteTracker = () => {
const location = useLocation();
useEffect(() => { useEffect(() => {
logPageView(); logPageView();
}, [location]);
return null;
};
function App() {
useEffect(() => {
document.documentElement.classList.add('custom-scrollbar'); document.documentElement.classList.add('custom-scrollbar');
}, []); }, []);
@@ -27,6 +37,7 @@ function App() {
<PageTransition> <PageTransition>
<Layout> <Layout>
<ErrorBoundary> <ErrorBoundary>
<RouteTracker /> {/* Tracking bei Routenwechsel */}
<AppRoutes /> <AppRoutes />
</ErrorBoundary> </ErrorBoundary>
<CookieBanner /> <CookieBanner />
+304 -33
View File
@@ -1,42 +1,313 @@
import CookieConsent from 'react-cookie-consent'; import { useEffect, useState } from 'react';
import { useTranslation } from 'react-i18next'; import { useTranslation } from 'react-i18next';
import { initGA, logPageView } from '../utils/analytics';
// Feste Übersetzungen direkt in der Komponente
const translations = {
de: {
title: "Cookie-Einstellungen",
message: "Diese Website verwendet Cookies, um Ihr Erlebnis zu verbessern. Daten werden nicht an Dritte weitergegeben.",
acceptAll: "Alle akzeptieren",
save: "Einstellungen speichern",
decline: "Ablehnen",
necessary: "Notwendige Cookies",
necessaryDesc: "Für grundlegende Funktionen der Website",
analytics: "Analyse-Cookies",
analyticsDesc: "Für Analysen zur Verbesserung der Website",
marketing: "Marketing-Cookies",
marketingDesc: "Für personalisierte Werbung und Inhalte",
functional: "Funktionale Cookies",
functionalDesc: "Für erweiterte Funktionen und Personalisierung",
learnMore: "Mehr erfahren",
alwaysActive: "Immer aktiv"
},
en: {
title: "Cookie Settings",
message: "This website uses cookies to enhance your browsing experience. The data will not be shared with third parties.",
acceptAll: "Accept All",
save: "Save Settings",
decline: "Decline All",
necessary: "Necessary Cookies",
necessaryDesc: "For basic website functions",
analytics: "Analytics Cookies",
analyticsDesc: "For analyzing website usage",
marketing: "Marketing Cookies",
marketingDesc: "For personalized ads and content",
functional: "Functional Cookies",
functionalDesc: "For enhanced functionality and personalization",
learnMore: "Learn more",
alwaysActive: "Always active"
},
sr: {
title: "Podešavanja kolačića",
message: "Ovaj sajt koristi kolačiće za bolje iskustvo pretraživanja. Podaci neće biti deljeni sa trećim licima.",
acceptAll: "Prihvati sve",
save: "Sačuvaj podešavanja",
decline: "Odbij sve",
necessary: "Neophodni kolačići",
necessaryDesc: "Za osnovne funkcije sajta",
analytics: "Analitički kolačići",
analyticsDesc: "Za analizu korišćenja sajta",
marketing: "Marketing kolačići",
marketingDesc: "Za personalizovane reklame i sadržaj",
functional: "Funkcionalni kolačići",
functionalDesc: "Za napredne funkcije i personalizaciju",
learnMore: "Saznajte više",
alwaysActive: "Uvek aktivno"
}
};
interface CookieSettings {
necessary: boolean;
analytics: boolean;
marketing: boolean;
functional: boolean;
}
const CookieBanner = () => { const CookieBanner = () => {
const { t } = useTranslation(); const { i18n } = useTranslation();
const [currentLang, setCurrentLang] = useState<'de' | 'en' | 'sr'>('de');
const [showSettings, setShowSettings] = useState(false);
const [cookieSettings, setCookieSettings] = useState<CookieSettings>({
necessary: true, // Always true and disabled
analytics: false,
marketing: false,
functional: false
});
// Aktuelle Sprache erkennen
useEffect(() => {
const lang = i18n.language.substring(0, 2);
if (lang === 'de' || lang === 'en' || lang === 'sr') {
setCurrentLang(lang);
} else {
setCurrentLang('en'); // Fallback to English
}
}, [i18n.language]);
// Get text based on current language
const getText = (key: keyof typeof translations.en) => {
return translations[currentLang][key];
};
// Prüfe beim Laden, ob bereits Zustimmung vorhanden ist
useEffect(() => {
try {
const storedSettings = localStorage.getItem('cookieSettings');
if (storedSettings) {
const parsedSettings = JSON.parse(storedSettings) as CookieSettings;
setCookieSettings(parsedSettings);
// Nur Google Analytics laden, wenn zugestimmt wurde
if (parsedSettings.analytics) {
initGA();
logPageView();
}
}
} catch (error) {
console.error('Error loading cookie settings:', error);
}
}, []);
const handleSaveSettings = () => {
localStorage.setItem('cookieSettings', JSON.stringify(cookieSettings));
localStorage.setItem('cookieConsent', 'true');
if (cookieSettings.analytics) {
initGA();
logPageView();
}
setShowSettings(false);
};
const handleAcceptAll = () => {
const allSettings: CookieSettings = {
necessary: true,
analytics: true,
marketing: true,
functional: true
};
localStorage.setItem('cookieSettings', JSON.stringify(allSettings));
localStorage.setItem('cookieConsent', 'true');
setCookieSettings(allSettings);
initGA();
logPageView();
setShowSettings(false);
};
const handleDeclineAll = () => {
const minimalSettings: CookieSettings = {
necessary: true,
analytics: false,
marketing: false,
functional: false
};
localStorage.setItem('cookieSettings', JSON.stringify(minimalSettings));
localStorage.setItem('cookieConsent', 'false');
setCookieSettings(minimalSettings);
setShowSettings(false);
};
const toggleSetting = (setting: keyof Omit<CookieSettings, 'necessary'>) => {
setCookieSettings({
...cookieSettings,
[setting]: !cookieSettings[setting]
});
};
// If consent already given, don't show banner
if (localStorage.getItem('cookieConsent')) {
return null;
}
return ( return (
<CookieConsent <div className="fixed bottom-0 left-0 right-0 z-50">
location="bottom" <div
buttonText={t('common.cookies.accept')} className="bg-[rgba(18,18,18,0.95)] backdrop-blur-md border-t border-white/5 text-white p-4 md:p-6"
declineButtonText={t('common.cookies.decline')} style={{ fontFamily: 'Inter, sans-serif' }}
enableDeclineButton
style={{
background: '#1a1a1a',
borderTop: '1px solid rgba(255, 255, 255, 0.1)'
}}
buttonStyle={{
background: '#ff6b00',
color: 'white',
fontSize: '14px',
borderRadius: '6px',
padding: '8px 16px',
}}
declineButtonStyle={{
background: 'transparent',
border: '1px solid rgba(255, 255, 255, 0.2)',
color: 'white',
fontSize: '14px',
borderRadius: '6px',
padding: '8px 16px',
}}
expires={365}
onAccept={() => {
// Initialize analytics only after consent
window.initializeAnalytics();
}}
> >
{t('common.cookies.message')} <div className="max-w-7xl mx-auto">
</CookieConsent> {!showSettings ? (
<div className="flex flex-col md:flex-row items-start md:items-center justify-between gap-4">
<div className="flex-1">
<p className="text-sm md:text-base font-light">{getText('message')}</p>
</div>
<div className="flex flex-wrap gap-3 mt-2 md:mt-0">
<button
onClick={() => setShowSettings(true)}
className="px-4 py-2 text-xs uppercase tracking-wider font-light text-white border border-white/30 hover:bg-white/10 transition-all"
>
{getText('learnMore')}
</button>
<button
onClick={handleDeclineAll}
className="px-4 py-2 text-xs uppercase tracking-wider font-light text-white border border-white/30 hover:bg-white/10 transition-all"
>
{getText('decline')}
</button>
<button
onClick={handleAcceptAll}
className="px-4 py-2 text-xs uppercase tracking-wider font-light bg-white text-black hover:bg-gray-200 transition-all"
>
{getText('acceptAll')}
</button>
</div>
</div>
) : (
<div>
<div className="flex justify-between items-center mb-4">
<h3 className="text-lg font-medium">{getText('title')}</h3>
<button
onClick={() => setShowSettings(false)}
className="text-white/70 hover:text-white"
>
<svg xmlns="http://www.w3.org/2000/svg" className="h-5 w-5" viewBox="0 0 20 20" fill="currentColor">
<path fillRule="evenodd" d="M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z" clipRule="evenodd" />
</svg>
</button>
</div>
<div className="mb-6">
<p className="text-sm text-white/80 mb-4">{getText('message')}</p>
{/* Cookie categories */}
<div className="space-y-4">
{/* Necessary cookies - always enabled */}
<div className="p-3 border border-white/10 bg-white/5">
<div className="flex items-center justify-between mb-2">
<div className="font-medium">{getText('necessary')}</div>
<div className="text-xs text-white/60">{getText('alwaysActive')}</div>
</div>
<p className="text-xs text-white/70">{getText('necessaryDesc')}</p>
</div>
{/* Analytics cookies */}
<div className="p-3 border border-white/10 bg-white/5">
<div className="flex items-center justify-between mb-2">
<div className="font-medium">{getText('analytics')}</div>
<label className="relative inline-flex items-center cursor-pointer">
<input
type="checkbox"
className="sr-only peer"
checked={cookieSettings.analytics}
onChange={() => toggleSetting('analytics')}
/>
<div className="w-9 h-5 bg-white/20 peer-focus:outline-none rounded-full peer peer-checked:after:translate-x-full peer-checked:after:border-white after:content-[''] after:absolute after:top-[2px] after:left-[2px] after:bg-white after:border-gray-300 after:border after:rounded-full after:h-4 after:w-4 after:transition-all peer-checked:bg-white/50"></div>
</label>
</div>
<p className="text-xs text-white/70">{getText('analyticsDesc')}</p>
</div>
{/* Marketing cookies */}
<div className="p-3 border border-white/10 bg-white/5">
<div className="flex items-center justify-between mb-2">
<div className="font-medium">{getText('marketing')}</div>
<label className="relative inline-flex items-center cursor-pointer">
<input
type="checkbox"
className="sr-only peer"
checked={cookieSettings.marketing}
onChange={() => toggleSetting('marketing')}
/>
<div className="w-9 h-5 bg-white/20 peer-focus:outline-none rounded-full peer peer-checked:after:translate-x-full peer-checked:after:border-white after:content-[''] after:absolute after:top-[2px] after:left-[2px] after:bg-white after:border-gray-300 after:border after:rounded-full after:h-4 after:w-4 after:transition-all peer-checked:bg-white/50"></div>
</label>
</div>
<p className="text-xs text-white/70">{getText('marketingDesc')}</p>
</div>
{/* Functional cookies */}
<div className="p-3 border border-white/10 bg-white/5">
<div className="flex items-center justify-between mb-2">
<div className="font-medium">{getText('functional')}</div>
<label className="relative inline-flex items-center cursor-pointer">
<input
type="checkbox"
className="sr-only peer"
checked={cookieSettings.functional}
onChange={() => toggleSetting('functional')}
/>
<div className="w-9 h-5 bg-white/20 peer-focus:outline-none rounded-full peer peer-checked:after:translate-x-full peer-checked:after:border-white after:content-[''] after:absolute after:top-[2px] after:left-[2px] after:bg-white after:border-gray-300 after:border after:rounded-full after:h-4 after:w-4 after:transition-all peer-checked:bg-white/50"></div>
</label>
</div>
<p className="text-xs text-white/70">{getText('functionalDesc')}</p>
</div>
</div>
</div>
<div className="flex justify-end gap-3">
<button
onClick={handleDeclineAll}
className="px-4 py-2 text-xs uppercase tracking-wider font-light text-white border border-white/30 hover:bg-white/10 transition-all"
>
{getText('decline')}
</button>
<button
onClick={handleSaveSettings}
className="px-4 py-2 text-xs uppercase tracking-wider font-light bg-white text-black hover:bg-gray-200 transition-all"
>
{getText('save')}
</button>
</div>
<div className="mt-4 text-center">
<a
href="/privacy-policy"
className="text-xs text-white/70 hover:text-white underline"
>
{getText('learnMore')}
</a>
</div>
</div>
)}
</div>
</div>
</div>
); );
}; };
+6 -1
View File
@@ -2,7 +2,12 @@ const cookiebanner = {
cookies: { cookies: {
message: "Diese Website verwendet Cookies, um Ihr Browsing-Erlebnis zu verbessern. Die Daten werden nicht an Dritte weitergegeben.", message: "Diese Website verwendet Cookies, um Ihr Browsing-Erlebnis zu verbessern. Die Daten werden nicht an Dritte weitergegeben.",
accept: "Cookies akzeptieren", accept: "Cookies akzeptieren",
decline: "Ablehnen" decline: "Ablehnen",
necessary: "Notwendige Cookies",
necessaryDesc: "Für grundlegende Funktionen der Website",
analytics: "Analyse-Cookies",
analyticsDesc: "Für Analysen zur Verbesserung der Website",
learnMore: "Mehr erfahren"
} }
}; };
+6 -1
View File
@@ -67,7 +67,12 @@ const translations = {
cookies: { cookies: {
message: "Diese Website verwendet Cookies, um Ihr Browsing-Erlebnis zu verbessern. Die Daten werden nicht an Dritte weitergegeben.", message: "Diese Website verwendet Cookies, um Ihr Browsing-Erlebnis zu verbessern. Die Daten werden nicht an Dritte weitergegeben.",
accept: "Cookies akzeptieren", accept: "Cookies akzeptieren",
decline: "Ablehnen" decline: "Ablehnen",
necessary: "Notwendige Cookies",
necessaryDesc: "Für grundlegende Funktionen der Website",
analytics: "Analyse-Cookies",
analyticsDesc: "Für Analysen zur Verbesserung der Website",
learnMore: "Mehr erfahren"
} }
}, },
meta, meta,
+6 -1
View File
@@ -2,7 +2,12 @@ const cookiebanner = {
cookies: { cookies: {
message: "This website uses cookies to enhance your browsing experience. The data will not be shared with third parties.", message: "This website uses cookies to enhance your browsing experience. The data will not be shared with third parties.",
accept: "Accept Cookies", accept: "Accept Cookies",
decline: "Decline" decline: "Decline",
necessary: "Necessary Cookies",
necessaryDesc: "For basic website functions",
analytics: "Analytics Cookies",
analyticsDesc: "For analyzing website usage",
learnMore: "Learn more"
} }
}; };
+6 -1
View File
@@ -67,7 +67,12 @@ const translations = {
cookies: { cookies: {
message: "This website uses cookies to enhance your browsing experience and provide personalized content. The collected data will not be shared with third parties.", message: "This website uses cookies to enhance your browsing experience and provide personalized content. The collected data will not be shared with third parties.",
accept: "Accept Cookies", accept: "Accept Cookies",
decline: "Decline" decline: "Decline",
necessary: "Necessary Cookies",
necessaryDesc: "For basic website functions",
analytics: "Analytics Cookies",
analyticsDesc: "For analyzing website usage",
learnMore: "Learn more"
} }
}, },
meta, meta,
+6 -1
View File
@@ -2,7 +2,12 @@ const cookiebanner = {
cookies: { cookies: {
message: "Ovaj sajt koristi kolačiće za bolje iskustvo pretraživanja. Podaci neće biti deljeni sa trećim licima.", message: "Ovaj sajt koristi kolačiće za bolje iskustvo pretraživanja. Podaci neće biti deljeni sa trećim licima.",
accept: "Prihvati kolačiće", accept: "Prihvati kolačiće",
decline: "Odbij" decline: "Odbij",
necessary: "Neophodni kolačići",
necessaryDesc: "Za osnovne funkcije sajta",
analytics: "Analitički kolačići",
analyticsDesc: "Za analizu korišćenja sajta",
learnMore: "Saznajte više"
} }
}; };
+6 -1
View File
@@ -67,7 +67,12 @@ const translations = {
cookies: { cookies: {
message: "Ovaj sajt koristi kolačiće kako bi poboljšao vaše iskustvo pretraživanja i pružio personalizovan sadržaj. Prikupljeni podaci neće biti deljeni sa trećim licima.", message: "Ovaj sajt koristi kolačiće kako bi poboljšao vaše iskustvo pretraživanja i pružio personalizovan sadržaj. Prikupljeni podaci neće biti deljeni sa trećim licima.",
accept: "Prihvati kolačiće", accept: "Prihvati kolačiće",
decline: "Odbij" decline: "Odbij",
necessary: "Neophodni kolačići",
necessaryDesc: "Za osnovne funkcije sajta",
analytics: "Analitički kolačići",
analyticsDesc: "Za analizu korišćenja sajta",
learnMore: "Saznajte više"
} }
}, },
meta, meta,
+9
View File
@@ -6,6 +6,15 @@ import './index.css';
import './i18n'; import './i18n';
import { register as registerServiceWorker } from './utils/serviceWorkerRegistration'; import { register as registerServiceWorker } from './utils/serviceWorkerRegistration';
// Typdefinition für Google Analytics
declare global {
interface Window {
dataLayer: unknown[];
gtag: (command: string, ...args: unknown[]) => void;
initializeAnalytics: () => void;
}
}
const rootElement = document.getElementById('root'); const rootElement = document.getElementById('root');
if (!rootElement) { if (!rootElement) {
+32 -2
View File
@@ -3,14 +3,35 @@ import ReactGA from 'react-ga4';
const TRACKING_ID = 'G-N0PZBL7X18'; const TRACKING_ID = 'G-N0PZBL7X18';
export const initGA = () => { export const initGA = () => {
ReactGA.initialize(TRACKING_ID); if (localStorage.getItem('cookieConsent') !== 'true') {
return; // Keine Analytics-Initialisierung ohne Zustimmung
}
ReactGA.initialize(TRACKING_ID, {
gaOptions: {
anonymizeIp: true, // DSGVO-konform
cookieFlags: 'SameSite=None;Secure'
}
});
}; };
export const logPageView = () => { export const logPageView = () => {
ReactGA.send({ hitType: "pageview", page: window.location.pathname }); if (localStorage.getItem('cookieConsent') !== 'true') {
return; // Kein Tracking ohne Zustimmung
}
ReactGA.send({
hitType: "pageview",
page: window.location.pathname,
anonymizeIp: true
});
}; };
export const trackEvent = (category: string, action: string, label?: string) => { export const trackEvent = (category: string, action: string, label?: string) => {
if (localStorage.getItem('cookieConsent') !== 'true') {
return; // Kein Tracking ohne Zustimmung
}
ReactGA.event({ ReactGA.event({
category, category,
action, action,
@@ -19,6 +40,10 @@ export const trackEvent = (category: string, action: string, label?: string) =>
}; };
export const trackConversion = (value?: number) => { export const trackConversion = (value?: number) => {
if (localStorage.getItem('cookieConsent') !== 'true') {
return; // Kein Tracking ohne Zustimmung
}
ReactGA.event({ ReactGA.event({
category: 'Conversion', category: 'Conversion',
action: 'Complete', action: 'Complete',
@@ -27,6 +52,10 @@ export const trackConversion = (value?: number) => {
}; };
export const trackTiming = (category: string, variable: string, value: number) => { export const trackTiming = (category: string, variable: string, value: number) => {
if (localStorage.getItem('cookieConsent') !== 'true') {
return; // Kein Tracking ohne Zustimmung
}
ReactGA.event({ ReactGA.event({
category, category,
action: 'timing', action: 'timing',
@@ -43,6 +72,7 @@ declare global {
// Make analytics initialization available globally for the cookie consent // Make analytics initialization available globally for the cookie consent
window.initializeAnalytics = () => { window.initializeAnalytics = () => {
localStorage.setItem('cookieConsent', 'true');
initGA(); initGA();
logPageView(); logPageView();
}; };