From 905d440d07e13ccbcd41f221f7808af505aa21e1 Mon Sep 17 00:00:00 2001 From: Stephanie Freitag <stephanie.freitag@holi.team> Date: Fri, 28 Mar 2025 11:18:05 +0100 Subject: [PATCH] HOLI-11059: store guest mode cookie for one year --- apps/web/public/documents/privacyPolicy_de.html | 4 ++-- apps/web/public/documents/privacyPolicy_en.html | 4 ++-- .../onboarding/helpers/__tests__/guestModeStorage.web.test.ts | 4 +++- core/screens/onboarding/helpers/guestModeStorage.web.ts | 3 ++- 4 files changed, 9 insertions(+), 6 deletions(-) diff --git a/apps/web/public/documents/privacyPolicy_de.html b/apps/web/public/documents/privacyPolicy_de.html index daaf3d13a1..0a0a2c67f6 100644 --- a/apps/web/public/documents/privacyPolicy_de.html +++ b/apps/web/public/documents/privacyPolicy_de.html @@ -671,9 +671,9 @@ <p>„fr"(90 Tage): Ausspielen von Werbeanzeigen, Nutzungsanalyse und Conversion-Tracking.</p> </li> <li> - <p>„guest_mode“ (unbegrenzt): Speichern der Information, ob Nutzende ohne Account die nötigen + <p>„guest_mode“ (1 Jahr): Speichern der Information, ob Nutzende ohne Account die nötigen Erstinformationen zur Nutzung der Plattform bereits gesehen haben oder sie angezeigt werden sollten. Die - Speicherdauer ist unbegrenzt, aber die Daten werden bei Login oder Anlage eines Accounts entfernt.</p> + Speicherdauer beträgt ein Jahr, aber wird bei Login oder Anlage eines Accounts entfernt.</p> </li> </ul> </li> diff --git a/apps/web/public/documents/privacyPolicy_en.html b/apps/web/public/documents/privacyPolicy_en.html index aee12aa5b2..d8588c0533 100644 --- a/apps/web/public/documents/privacyPolicy_en.html +++ b/apps/web/public/documents/privacyPolicy_en.html @@ -637,9 +637,9 @@ <p>‘fr’ (90 days): Serving ads, usage analysis and conversion tracking.</p> </li> <li> - <p>‘guest_mode’ (unlimited): Saves the information as to whether users without account have already + <p>‘guest_mode’ (1 year): Saves the information as to whether users without account have already seen the initial information required to use the platform or whether it should be displayed. It is stored - indefinitely, but is removed when the user logs in or creates an account.</p> + for one year, but is removed when the user logs in or creates an account.</p> </li> </ul> </li> diff --git a/core/screens/onboarding/helpers/__tests__/guestModeStorage.web.test.ts b/core/screens/onboarding/helpers/__tests__/guestModeStorage.web.test.ts index 8f99062388..5dbcafd5fe 100644 --- a/core/screens/onboarding/helpers/__tests__/guestModeStorage.web.test.ts +++ b/core/screens/onboarding/helpers/__tests__/guestModeStorage.web.test.ts @@ -51,7 +51,9 @@ describe('guestModeStorage', () => { it('should store true when guest mode is enabled', async () => { await storeGuestMode(true) - expect(mockSetCookie).toHaveBeenCalledWith('guest_mode', 'true') + expect(mockSetCookie).toHaveBeenCalledWith('guest_mode', 'true', { + maxAge: 31536000, // 1 year in seconds + }) }) it('should remove storage when guest mode is disabled', async () => { diff --git a/core/screens/onboarding/helpers/guestModeStorage.web.ts b/core/screens/onboarding/helpers/guestModeStorage.web.ts index 896af40610..c7ab3f08e9 100644 --- a/core/screens/onboarding/helpers/guestModeStorage.web.ts +++ b/core/screens/onboarding/helpers/guestModeStorage.web.ts @@ -2,11 +2,12 @@ import { logError } from '@holi/core/errors/helpers' import { getCookie, setCookie, deleteCookie } from 'cookies-next' export const GUEST_MODE_COOKIE_NAME = 'guest_mode' +const one_year_in_seconds: number = 60 * 60 * 24 * 365 export const storeGuestMode = async (guestMode?: boolean): Promise<void> => { try { if (guestMode) { - setCookie(GUEST_MODE_COOKIE_NAME, 'true') + setCookie(GUEST_MODE_COOKIE_NAME, 'true', { maxAge: one_year_in_seconds }) } else { deleteCookie(GUEST_MODE_COOKIE_NAME) } -- GitLab