-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathCookieConsentProvider.tsx
More file actions
261 lines (238 loc) · 7.65 KB
/
CookieConsentProvider.tsx
File metadata and controls
261 lines (238 loc) · 7.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
import type { SerializeOptions } from 'cookie'
import { parse, serialize } from 'cookie'
import type { ComponentType, Context, PropsWithChildren } from 'react'
import {
createContext,
useCallback,
useContext,
useEffect,
useMemo,
useState,
} from 'react'
import { uniq } from '../helpers/array'
import { stringToHash } from '../helpers/misc'
import { IS_CLIENT, isCategoryKind } from './helpers'
import type { Config, Consent, Integrations } from './types'
import { useSegmentIntegrations } from './useSegmentIntegrations'
const COOKIE_PREFIX = '_scw_rgpd' as const
const HASH_COOKIE = `${COOKIE_PREFIX}_hash` as const
// Appx 13 Months
const CONSENT_MAX_AGE: number = 13 * 30 * 24 * 60 * 60
// Appx 6 Months
const CONSENT_ADVERTISING_MAX_AGE: number = 6 * 30 * 24 * 60 * 60
const COOKIES_OPTIONS: SerializeOptions = {
path: '/',
sameSite: 'strict',
secure: true,
} as const
type CookieContext = {
integrations: Integrations
needConsent: boolean
isSegmentAllowed: boolean
isSegmentIntegrationsLoaded: boolean
segmentIntegrations: Record<string, boolean>
categoriesConsent: Partial<Consent>
saveConsent: (categoriesConsent: Partial<Consent>) => void
}
const CookieConsentContext: Context<CookieContext | undefined> = createContext<
CookieContext | undefined
>(undefined)
const useCookieConsent = (): CookieContext => {
const context = useContext(CookieConsentContext)
if (context === undefined) {
throw new Error(
'useCookieConsent must be used within a CookieConsentProvider',
)
}
return context
}
type CookieConsentProviderProps = PropsWithChildren<{
isConsentRequired: boolean
essentialIntegrations: string[]
config: Config
cookiePrefix?: string
consentMaxAge?: number
consentAdvertisingMaxAge?: number
cookiesOptions?: SerializeOptions
}>
const CookieConsentProvider: ComponentType<CookieConsentProviderProps> = ({
children,
isConsentRequired,
essentialIntegrations,
config,
cookiePrefix = COOKIE_PREFIX,
consentMaxAge = CONSENT_MAX_AGE,
consentAdvertisingMaxAge = CONSENT_ADVERTISING_MAX_AGE,
cookiesOptions = COOKIES_OPTIONS,
}) => {
const [needConsent, setNeedsConsent] = useState(false)
const [cookies, setCookies] = useState<Record<string, string | undefined>>(
IS_CLIENT ? parse(document.cookie) : {},
)
const {
integrations: segmentIntegrations,
isLoaded: isSegmentIntegrationsLoaded,
} = useSegmentIntegrations(config)
const integrations: Integrations = useMemo(
() =>
uniq([
...(segmentIntegrations ?? []),
...(essentialIntegrations.map(integration => ({
category: 'essential',
name: integration,
})) as Integrations),
]),
[segmentIntegrations, essentialIntegrations],
)
// We compute a hash with all the integrations that are enabled
// This hash will be used to know if we need to ask for consent
// when a new integration is added
const integrationsHash = useMemo(
() =>
stringToHash(
uniq([
...(segmentIntegrations ?? []).map(({ name }) => name),
...essentialIntegrations,
])
.sort()
.join(undefined),
),
[segmentIntegrations, essentialIntegrations],
)
useEffect(() => {
// We set needConsent at false until we have an answer from segment
// This is to avoid showing setting needConsent to true only to be set
// to false after receiving segment answer and flicker the UI
setNeedsConsent(
isConsentRequired &&
cookies[HASH_COOKIE] !== integrationsHash.toString() &&
segmentIntegrations !== undefined,
)
}, [isConsentRequired, integrationsHash, segmentIntegrations, cookies])
// We store unique categories names in an array
const categories = useMemo(
() =>
uniq((segmentIntegrations ?? []).map(({ category }) => category)).sort(
undefined,
),
[segmentIntegrations],
)
// From the unique categories names we can now build our consent object
// and check if there is already a consent in a cookie
// Default consent if none is found is false
const cookieConsent = useMemo(
() =>
categories.reduce<Partial<Consent>>(
(acc, category) => ({
...acc,
[category]:
isConsentRequired || needConsent
? cookies[`${cookiePrefix}_${category}`] === 'true'
: true,
}),
{},
),
[isConsentRequired, categories, cookiePrefix, needConsent, cookies],
)
const saveConsent = useCallback(
(categoriesConsent: Partial<Consent>) => {
for (const [consentName, consentValue] of Object.entries(
categoriesConsent,
)) {
const consentCategoryName = isCategoryKind(consentName)
? consentName
: 'unknown'
const cookieName = `${cookiePrefix}_${consentCategoryName}`
if (consentValue) {
document.cookie = serialize(cookieName, consentValue.toString(), {
...cookiesOptions,
maxAge:
consentCategoryName === 'advertising'
? consentAdvertisingMaxAge
: consentMaxAge,
})
} else {
// If consent is set to false we have to delete the cookie
document.cookie = serialize(cookieName, '', {
...cookiesOptions,
expires: new Date(0),
})
}
setCookies(prevCookies => ({
...prevCookies,
[cookieName]: consentValue ? 'true' : 'false',
}))
}
// We set the hash cookie to the current consented integrations
document.cookie = serialize(HASH_COOKIE, integrationsHash.toString(), {
...cookiesOptions,
// Here we use the shortest max age to force to ask again for expired consent
maxAge: consentAdvertisingMaxAge,
})
setCookies(prevCookies => ({
...prevCookies,
[HASH_COOKIE]: integrationsHash.toString(),
}))
setNeedsConsent(false)
},
[
integrationsHash,
consentAdvertisingMaxAge,
consentMaxAge,
cookiePrefix,
cookiesOptions,
],
)
const isSegmentAllowed = useMemo(
() =>
isConsentRequired
? !needConsent &&
!!segmentIntegrations?.some(
integration => cookieConsent[integration.category],
)
: true,
[isConsentRequired, segmentIntegrations, cookieConsent, needConsent],
)
// 'All': false tells Segment not to send data to any Destinations by default, unless they’re explicitly listed as true in the next lines.
// In this case we should not have any integration, so we protect the user. Maybe unecessary as we always set true of false for an integration.
const segmentEnabledIntegrations = useMemo(
() =>
segmentIntegrations?.length === 0
? { All: !isConsentRequired }
: (segmentIntegrations ?? []).reduce<Record<string, boolean>>(
(acc, integration) => ({
...acc,
[integration.name]: cookieConsent[integration.category] ?? false,
}),
{},
),
[cookieConsent, isConsentRequired, segmentIntegrations],
)
const value = useMemo(
() => ({
categoriesConsent: cookieConsent,
integrations,
isSegmentAllowed,
isSegmentIntegrationsLoaded,
needConsent,
saveConsent,
segmentIntegrations: segmentEnabledIntegrations,
}),
[
integrations,
needConsent,
isSegmentAllowed,
isSegmentIntegrationsLoaded,
segmentEnabledIntegrations,
cookieConsent,
saveConsent,
],
)
return (
<CookieConsentContext.Provider value={value}>
{children}
</CookieConsentContext.Provider>
)
}
export { CookieConsentProvider }
export { useCookieConsent }