@c15t/nextjs 2.2.1 → 3.0.0-alpha.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (221) hide show
  1. package/AGENTS.md +103 -142
  2. package/README.md +4 -4
  3. package/dist/api.js +1 -0
  4. package/dist/config.js +1 -0
  5. package/dist/devtools.js +2 -0
  6. package/dist/headers.js +1 -0
  7. package/dist/iab/styles.css +1 -1
  8. package/dist/iab/styles.tw3.css +27 -19
  9. package/dist/index.js +1 -1
  10. package/dist/middleware.js +1 -0
  11. package/dist/node-bridge.js +1 -0
  12. package/dist/pages.js +1 -0
  13. package/dist/proxy.js +1 -0
  14. package/dist/root.js +2 -0
  15. package/dist/server.js +1 -0
  16. package/dist/static.js +1 -0
  17. package/dist/styles.css +1 -1
  18. package/dist/styles.tw3.css +67 -29
  19. package/dist/version.js +1 -1
  20. package/dist-types/api.d.ts +88 -0
  21. package/dist-types/config.d.ts +110 -0
  22. package/dist-types/devtools.d.ts +1 -0
  23. package/dist-types/headers.d.ts +4 -0
  24. package/dist-types/index.d.ts +28 -10
  25. package/dist-types/middleware.d.ts +15 -0
  26. package/dist-types/node-bridge.d.ts +57 -0
  27. package/dist-types/pages.d.ts +88 -0
  28. package/dist-types/proxy.d.ts +34 -0
  29. package/dist-types/root.d.ts +92 -0
  30. package/dist-types/server.d.ts +164 -0
  31. package/dist-types/static.d.ts +42 -0
  32. package/dist-types/types.d.ts +5 -36
  33. package/dist-types/version.d.ts +1 -1
  34. package/docs/README.md +103 -142
  35. package/docs/assets/v3/brand-bar.png +0 -0
  36. package/docs/assets/v3/brand-card.png +0 -0
  37. package/docs/assets/v3/choice-wall.png +0 -0
  38. package/docs/assets/v3/mobile-card.png +0 -0
  39. package/docs/assets/v3/preferences.png +0 -0
  40. package/docs/customization/overview.md +45 -0
  41. package/docs/customization/recipes.md +79 -0
  42. package/docs/customization/slots.md +55 -0
  43. package/docs/customization/tokens.md +76 -0
  44. package/docs/customization/translations.md +49 -0
  45. package/docs/frameworks/next/api-reference/data-fetching.md +416 -0
  46. package/docs/frameworks/next/app-router.md +403 -0
  47. package/docs/frameworks/next/client-side.md +118 -0
  48. package/docs/frameworks/next/components/consent-banner.md +251 -211
  49. package/docs/frameworks/next/components/consent-dialog-link.md +96 -35
  50. package/docs/frameworks/next/components/consent-dialog-trigger.md +74 -149
  51. package/docs/frameworks/next/components/consent-dialog.md +189 -134
  52. package/docs/frameworks/next/components/consent-manager-provider.md +68 -318
  53. package/docs/frameworks/next/components/consent-widget.md +172 -114
  54. package/docs/frameworks/next/components/dev-tools.md +199 -40
  55. package/docs/frameworks/next/components/frame.md +137 -42
  56. package/docs/frameworks/next/concepts/consent-categories.md +24 -89
  57. package/docs/frameworks/next/concepts/policy-presets.md +142 -0
  58. package/docs/frameworks/next/content-security-policy.md +189 -0
  59. package/docs/frameworks/next/data-fetching.md +74 -0
  60. package/docs/frameworks/next/geography-headers.md +251 -0
  61. package/docs/frameworks/next/headless.md +95 -185
  62. package/docs/frameworks/next/hooks/use-consent-manager/overview.md +42 -163
  63. package/docs/frameworks/next/iab/overview.md +37 -107
  64. package/docs/frameworks/next/optimization.md +158 -194
  65. package/docs/frameworks/next/pages-router.md +296 -0
  66. package/docs/frameworks/next/quickstart.md +31 -132
  67. package/docs/frameworks/next/script-loader.md +140 -465
  68. package/docs/frameworks/next/server-side.md +97 -130
  69. package/docs/frameworks/next/static-export.md +164 -0
  70. package/docs/frameworks/next/styling/overview.md +174 -248
  71. package/docs/frameworks/next/troubleshooting.md +134 -144
  72. package/docs/guides/consent-state.md +60 -0
  73. package/docs/guides/data-fetching.md +163 -0
  74. package/docs/guides/deployment-modes.md +63 -0
  75. package/docs/guides/troubleshooting.md +68 -0
  76. package/docs/guides/verify-consent.md +62 -0
  77. package/docs/integrations/adobe-analytics.md +239 -105
  78. package/docs/integrations/ahrefs-analytics.md +238 -104
  79. package/docs/integrations/amplitude.md +219 -157
  80. package/docs/integrations/building-integrations.md +32 -224
  81. package/docs/integrations/clear-on-revocation.md +167 -0
  82. package/docs/integrations/clearbit.md +247 -86
  83. package/docs/integrations/cloudflare-web-analytics.md +250 -84
  84. package/docs/integrations/crisp.md +251 -97
  85. package/docs/integrations/databuddy.md +259 -153
  86. package/docs/integrations/fathom-analytics.md +239 -96
  87. package/docs/integrations/google-maps.md +328 -207
  88. package/docs/integrations/google-tag-manager.md +248 -96
  89. package/docs/integrations/google-tag.md +261 -90
  90. package/docs/integrations/heap.md +222 -149
  91. package/docs/integrations/hightouch.md +225 -131
  92. package/docs/integrations/hotjar.md +239 -90
  93. package/docs/integrations/intercom.md +239 -98
  94. package/docs/integrations/linkedin-insights.md +243 -113
  95. package/docs/integrations/logrocket.md +241 -123
  96. package/docs/integrations/matomo-analytics.md +256 -111
  97. package/docs/integrations/meta-pixel.md +197 -324
  98. package/docs/integrations/microsoft-clarity.md +233 -114
  99. package/docs/integrations/microsoft-uet.md +245 -110
  100. package/docs/integrations/mixpanel-analytics.md +252 -87
  101. package/docs/integrations/openai-pixel.md +441 -0
  102. package/docs/integrations/overview.md +95 -133
  103. package/docs/integrations/pirsch.md +249 -96
  104. package/docs/integrations/plausible-analytics.md +241 -100
  105. package/docs/integrations/posthog.md +353 -214
  106. package/docs/integrations/promptwatch.md +251 -81
  107. package/docs/integrations/reddit-pixel.md +226 -173
  108. package/docs/integrations/rudderstack.md +244 -187
  109. package/docs/integrations/rybbit-analytics.md +244 -91
  110. package/docs/integrations/segment.md +238 -92
  111. package/docs/integrations/snapchat-pixel.md +240 -110
  112. package/docs/integrations/tiktok-pixel.md +249 -81
  113. package/docs/integrations/umami-analytics.md +242 -95
  114. package/docs/integrations/vercel-analytics.md +242 -90
  115. package/docs/integrations/x-pixel.md +238 -104
  116. package/docs/integrations/youtube.md +354 -142
  117. package/docs/upgrade-v3.md +334 -0
  118. package/iab/styles.css +1 -1
  119. package/iab/styles.tw3.css +1 -1
  120. package/package.json +106 -65
  121. package/readme.json +3 -3
  122. package/src/iab/styles.css +1 -1
  123. package/src/iab/styles.tw3.css +1 -1
  124. package/src/styles.css +1 -1
  125. package/src/styles.tw3.css +1 -1
  126. package/styles.css +1 -1
  127. package/styles.tw3.css +1 -1
  128. package/client/components/consent-dialog-link.js +0 -3
  129. package/client/components/integrations.js +0 -3
  130. package/dist/components/integrations/index.cjs +0 -1
  131. package/dist/components/integrations/index.js +0 -1
  132. package/dist/headless.cjs +0 -1
  133. package/dist/index.cjs +0 -1
  134. package/dist/libs/browser-initial-data.cjs +0 -1
  135. package/dist/libs/browser-initial-data.js +0 -1
  136. package/dist/libs/initial-data.cjs +0 -1
  137. package/dist/libs/initial-data.js +0 -1
  138. package/dist/types.cjs +0 -1
  139. package/dist/version.cjs +0 -1
  140. package/dist-types/components/integrations/index.d.ts +0 -1
  141. package/dist-types/libs/browser-initial-data.d.ts +0 -9
  142. package/dist-types/libs/initial-data.d.ts +0 -33
  143. package/docs/frameworks/next/building-headless-components.md +0 -379
  144. package/docs/frameworks/next/callbacks.md +0 -186
  145. package/docs/frameworks/next/concepts/client-modes.md +0 -177
  146. package/docs/frameworks/next/concepts/consent-models.md +0 -117
  147. package/docs/frameworks/next/concepts/cookie-management.md +0 -122
  148. package/docs/frameworks/next/concepts/glossary.md +0 -24
  149. package/docs/frameworks/next/concepts/initialization-flow.md +0 -149
  150. package/docs/frameworks/next/concepts/policy-packs.md +0 -230
  151. package/docs/frameworks/next/hooks/use-color-scheme.md +0 -41
  152. package/docs/frameworks/next/hooks/use-consent-manager/checking-consent.md +0 -96
  153. package/docs/frameworks/next/hooks/use-consent-manager/location-info.md +0 -97
  154. package/docs/frameworks/next/hooks/use-consent-manager/setting-consent.md +0 -94
  155. package/docs/frameworks/next/hooks/use-draggable.md +0 -59
  156. package/docs/frameworks/next/hooks/use-focus-trap.md +0 -42
  157. package/docs/frameworks/next/hooks/use-reduced-motion.md +0 -37
  158. package/docs/frameworks/next/hooks/use-ssr-status.md +0 -32
  159. package/docs/frameworks/next/hooks/use-text-direction.md +0 -50
  160. package/docs/frameworks/next/hooks/use-translations.md +0 -55
  161. package/docs/frameworks/next/iab/consent-banner.md +0 -91
  162. package/docs/frameworks/next/iab/consent-dialog.md +0 -129
  163. package/docs/frameworks/next/iab/use-gvl-data.md +0 -21
  164. package/docs/frameworks/next/iframe-blocking.md +0 -106
  165. package/docs/frameworks/next/internationalization.md +0 -207
  166. package/docs/frameworks/next/network-blocker.md +0 -140
  167. package/docs/frameworks/next/policy-packs.md +0 -248
  168. package/docs/frameworks/next/styling/classnames.md +0 -94
  169. package/docs/frameworks/next/styling/color-scheme.md +0 -84
  170. package/docs/frameworks/next/styling/css-variables.md +0 -53
  171. package/docs/frameworks/next/styling/slots.md +0 -94
  172. package/docs/frameworks/next/styling/tailwind.md +0 -137
  173. package/docs/frameworks/next/styling/tokens.md +0 -156
  174. package/docs/shared/concepts/client-modes.md +0 -103
  175. package/docs/shared/concepts/consent-categories.md +0 -41
  176. package/docs/shared/concepts/consent-models.md +0 -72
  177. package/docs/shared/concepts/cookie-management.md +0 -88
  178. package/docs/shared/concepts/glossary.md +0 -24
  179. package/docs/shared/concepts/initialization-flow.md +0 -105
  180. package/docs/shared/concepts/policy-packs.md +0 -225
  181. package/docs/shared/react/components/consent-banner.md +0 -242
  182. package/docs/shared/react/components/consent-dialog-link.md +0 -45
  183. package/docs/shared/react/components/consent-dialog-trigger.md +0 -185
  184. package/docs/shared/react/components/consent-dialog.md +0 -119
  185. package/docs/shared/react/components/consent-manager-provider.md +0 -225
  186. package/docs/shared/react/components/consent-widget.md +0 -121
  187. package/docs/shared/react/components/dev-tools.md +0 -81
  188. package/docs/shared/react/components/frame.md +0 -52
  189. package/docs/shared/react/guides/building-headless-components.md +0 -110
  190. package/docs/shared/react/guides/callbacks.md +0 -89
  191. package/docs/shared/react/guides/headless.md +0 -31
  192. package/docs/shared/react/guides/iframe-blocking.md +0 -65
  193. package/docs/shared/react/guides/internationalization.md +0 -123
  194. package/docs/shared/react/guides/network-blocker.md +0 -72
  195. package/docs/shared/react/guides/optimization.md +0 -44
  196. package/docs/shared/react/guides/policy-packs.md +0 -173
  197. package/docs/shared/react/guides/script-loader.md +0 -311
  198. package/docs/shared/react/hooks/use-color-scheme.md +0 -31
  199. package/docs/shared/react/hooks/use-consent-manager/checking-consent.md +0 -95
  200. package/docs/shared/react/hooks/use-consent-manager/location-info.md +0 -96
  201. package/docs/shared/react/hooks/use-consent-manager/overview.md +0 -74
  202. package/docs/shared/react/hooks/use-consent-manager/setting-consent.md +0 -93
  203. package/docs/shared/react/hooks/use-draggable.md +0 -30
  204. package/docs/shared/react/hooks/use-focus-trap.md +0 -20
  205. package/docs/shared/react/hooks/use-reduced-motion.md +0 -33
  206. package/docs/shared/react/hooks/use-ssr-status.md +0 -16
  207. package/docs/shared/react/hooks/use-text-direction.md +0 -38
  208. package/docs/shared/react/hooks/use-translations.md +0 -15
  209. package/docs/shared/react/iab/consent-banner.md +0 -60
  210. package/docs/shared/react/iab/consent-dialog.md +0 -76
  211. package/docs/shared/react/iab/overview.md +0 -80
  212. package/docs/shared/react/iab/use-gvl-data.md +0 -21
  213. package/docs/shared/react/styling/classnames.md +0 -93
  214. package/docs/shared/react/styling/color-scheme.md +0 -35
  215. package/docs/shared/react/styling/css-variables.md +0 -53
  216. package/docs/shared/react/styling/overview.md +0 -261
  217. package/docs/shared/react/styling/slots.md +0 -93
  218. package/docs/shared/react/styling/stylesheet-entrypoint.md +0 -8
  219. package/docs/shared/react/styling/tailwind.md +0 -88
  220. package/docs/shared/react/styling/tokens.md +0 -155
  221. package/docs/shared/troubleshooting.md +0 -82
@@ -1,205 +1,311 @@
1
1
  ---
2
2
  title: Databuddy
3
- description: Databuddy is a privacy-focused analytics platform that helps you
4
- understand user behavior and track events. It supports cookieless tracking and
5
- manages consent automatically through c15t's consent state synchronization.
6
- icon: databuddy
3
+ description: Configure Databuddy's initial and updated consent state with c15t v3.
7
4
  group: integrations
8
5
  ---
9
- The Databuddy script automatically respects consent preferences by toggling tracking on and off based on the user's consent state.
10
6
 
11
- ## Integrate with c15t
7
+ ## Configure Databuddy
12
8
 
13
- **React**
9
+ Use the client ID for your Databuddy project. Supply both configuration objects
10
+ so the initial script load has an explicit allowed and denied state.
14
11
 
15
- ```tsx
16
- import { type ReactNode } from 'react';
17
- import { ConsentManagerProvider } from '@c15t/react';
12
+ | Package manager | Command |
13
+ | :-------------- | :-------------------------- |
14
+ | npm | `npm install @c15t/scripts` |
15
+ | pnpm | `pnpm add @c15t/scripts` |
16
+ | yarn | `yarn add @c15t/scripts` |
17
+ | bun | `bun add @c15t/scripts` |
18
+
19
+ ```ts title="src/consent-scripts.ts"
18
20
  import { databuddy } from '@c15t/scripts/databuddy';
19
21
 
20
- const scripts = [
22
+ export const scripts = [
21
23
  databuddy({
22
- clientId: 'your-client-id',
23
- scriptUrl: 'https://cdn.databuddy.cc/databuddy.js',
24
- apiUrl: 'https://basket.databuddy.cc',
25
- configWhenGranted: {
26
- clientId: 'your-client-id',
27
- apiUrl: 'https://basket.databuddy.cc',
28
- disabled: false,
29
- },
30
- configWhenDenied: {
31
- clientId: 'your-client-id',
32
- apiUrl: 'https://basket.databuddy.cc',
33
- disabled: true,
34
- },
24
+ clientId: 'YOUR_CLIENT_ID',
25
+ configWhenGranted: { disabled: false },
26
+ configWhenDenied: { disabled: true },
35
27
  }),
36
28
  ];
37
-
38
- export function ConsentProvider({ children }: { children: ReactNode }) {
39
- return (
40
- <ConsentManagerProvider
41
- options={{
42
- mode: 'hosted',
43
- backendURL: 'https://your-instance.c15t.dev',
44
- scripts,
45
- }}
46
- >
47
- {children}
48
- </ConsentManagerProvider>
49
- );
50
- }
51
29
  ```
52
30
 
31
+ ## Register the scripts
32
+
33
+ Complete your [framework quickstart](https://c15t.com/docs/frameworks) first. Keep its Inth
34
+ endpoint, policy, styles and consent UI. Remove the vendor's original script,
35
+ SDK initializer or tag-manager entry so c15t owns loading once.
36
+
37
+ The `scripts` export in `src/consent-scripts.ts` is a configuration, not an
38
+ initializer. Add it to your existing consent owner using the registration point
39
+ below. These are partial edits to that owner, not additional providers.
40
+
53
41
  **Next.js**
54
42
 
43
+ Import the configuration into the client boundary from your router guide:
44
+
45
+ ```ts
46
+ import { ConsentRoot } from 'c15t/next';
47
+ import { scripts } from './consent-scripts';
48
+ ```
49
+
50
+ Keep the server-resolved `state` and shared `consentConfig` from your
51
+ router guide. Its manifest, init and save URLs stay in effect. Add
52
+ `scripts` as a top-level prop on the existing root:
53
+
55
54
  ```tsx
56
- 'use client';
55
+ <ConsentRoot state={state} config={consentConfig} scripts={scripts}>
56
+ {children}
57
+ </ConsentRoot>
58
+ ```
57
59
 
58
- import { type ReactNode } from 'react';
59
- import { ConsentManagerProvider } from '@c15t/nextjs';
60
- import { databuddy } from '@c15t/scripts/databuddy';
60
+ For a Pages Router or static-export setup using `ConsentProvider`, add
61
+ `scripts` to its existing `options` instead. Keep the router-specific setup
62
+ from [Next.js script loading](../frameworks/next/script-loader.md).
61
63
 
62
- const scripts = [
63
- databuddy({
64
- clientId: 'your-client-id',
65
- scriptUrl: 'https://cdn.databuddy.cc/databuddy.js',
66
- apiUrl: 'https://basket.databuddy.cc',
67
- configWhenGranted: {
68
- clientId: 'your-client-id',
69
- apiUrl: 'https://basket.databuddy.cc',
70
- disabled: false,
71
- },
72
- configWhenDenied: {
73
- clientId: 'your-client-id',
74
- apiUrl: 'https://basket.databuddy.cc',
75
- disabled: true,
76
- },
77
- }),
78
- ];
64
+ **TanStack Start**
65
+
66
+ In your existing root route component, import the scripts alongside
67
+ `ConsentRoot`. Keep the server loader from the [TanStack Start quickstart](https://c15t.com/docs/frameworks/tanstack-start/quickstart).
68
+
69
+ ```tsx
70
+ import { Outlet } from '@tanstack/react-router';
71
+ import { ConsentRoot } from 'c15t/tanstack-start';
72
+ import { scripts } from '../consent-scripts';
79
73
 
80
- export function ConsentProvider({ children }: { children: ReactNode }) {
74
+ function Root() {
75
+ const state = Route.useLoaderData();
81
76
  return (
82
- <ConsentManagerProvider
83
- options={{
84
- mode: 'hosted',
85
- backendURL: '/api/c15t',
86
- scripts,
87
- }}
88
- >
89
- {children}
90
- </ConsentManagerProvider>
77
+ <ConsentRoot state={state} backendURL={backendURL} initRoute={false} scripts={scripts}>
78
+ <Outlet />
79
+ {/* Keep your consent banner, dialog and preferences link here. */}
80
+ </ConsentRoot>
91
81
  );
92
82
  }
93
83
  ```
94
84
 
95
- **JavaScript**
85
+ This edits the existing route. `Route` and `backendURL` come from its setup;
86
+ keep the document shell and head components if they are part of your root.
87
+ `initRoute={false}` keeps the quickstart's direct-backend initialization.
88
+ If your app mounts a consent server route, retain its existing `initRoute`
89
+ instead. Do not return script callbacks from a server function or route loader.
90
+
91
+ **React**
92
+
93
+ Import the scripts into your existing provider component:
96
94
 
97
95
  ```ts
98
- import { getOrCreateConsentRuntime } from 'c15t';
99
- import { databuddy } from '@c15t/scripts/databuddy';
96
+ import { ConsentProvider } from 'c15t/react';
97
+ import { scripts } from './consent-scripts';
98
+ ```
99
+
100
+ Keep the existing options and add `scripts`:
101
+
102
+ ```tsx
103
+ <ConsentProvider options={{ ...consentOptions, scripts }}>
104
+ {children}
105
+ </ConsentProvider>
106
+ ```
107
+
108
+ Here `consentOptions` is your existing configuration, including
109
+ `mode: hosted({ url: backendURL })`. Keep the banner, dialog and preferences
110
+ link inside the provider. See [React script loading](https://c15t.com/docs/frameworks/react/script-loader).
111
+
112
+ **Nuxt**
113
+
114
+ Attach one loader from the root `app.vue`, after the Nuxt module has
115
+ started its browser runtime. This keeps vendor callbacks in application code rather
116
+ than serialized `nuxt.config.ts` runtime configuration.
100
117
 
101
- getOrCreateConsentRuntime({
102
- mode: 'hosted',
103
- backendURL: 'https://your-instance.c15t.dev',
104
- scripts: [
105
- databuddy({
106
- clientId: 'your-client-id',
107
- scriptUrl: 'https://cdn.databuddy.cc/databuddy.js',
108
- apiUrl: 'https://basket.databuddy.cc',
109
- configWhenGranted: {
110
- clientId: 'your-client-id',
111
- apiUrl: 'https://basket.databuddy.cc',
112
- disabled: false,
113
- },
114
- configWhenDenied: {
115
- clientId: 'your-client-id',
116
- apiUrl: 'https://basket.databuddy.cc',
117
- disabled: true,
118
- },
119
- }),
120
- ],
118
+ ```vue title="app/app.vue"
119
+ <script setup lang="ts">
120
+ import { onUnmounted } from 'vue';
121
+ import { createScriptLoader } from 'c15t/modules/script-loader';
122
+ import { scripts } from '../src/consent-scripts';
123
+
124
+ const nuxtApp = useNuxtApp();
125
+ const kernel = useConsentKernel();
126
+ let loader: ReturnType<typeof createScriptLoader> | undefined;
127
+
128
+ const removeMountedHook = nuxtApp.hook('app:mounted', () => {
129
+ loader = createScriptLoader({ kernel, scripts });
130
+ });
131
+ onUnmounted(() => {
132
+ removeMountedHook();
133
+ loader?.dispose();
121
134
  });
135
+ </script>
136
+
137
+ <template>
138
+ <ConsentRoot />
139
+ <NuxtPage />
140
+ </template>
122
141
  ```
123
142
 
124
- ## How c15t loads it
143
+ Merge the setup code into your root and retain its footer and preferences
144
+ link. `useConsentKernel` is auto-imported by the c15t Nuxt module. Adjust the
145
+ relative script import if your `app.vue` is at the project root. This loader
146
+ waits until the module has applied browser persistence and privacy signals,
147
+ then reads the current snapshot and observes future changes. Do not also register these scripts
148
+ in another loader. See the [Nuxt quickstart](https://c15t.com/docs/frameworks/nuxt/quickstart).
125
149
 
126
- * **Category:** `measurement` (Analytics)
127
- * **Loads when:** [`alwaysLoad`](/docs/frameworks/react/script-loader#always-load) — runs on page start regardless of consent state
128
- * **On consent change:** c15t toggles `window.databuddy.options.disabled` so tracking turns on or off without removing the script
150
+ **Vue**
129
151
 
130
- ## Configure the integration
152
+ Use the kernel already provided by the Vue plugin. Merge this setup into
153
+ `App.vue`, whose lifetime covers the application:
131
154
 
132
- The Databuddy manifest expects explicit initial config objects for the granted
133
- and denied consent states:
155
+ ```vue title="src/App.vue"
156
+ <script setup lang="ts">
157
+ import { onMounted, onUnmounted } from 'vue';
158
+ import { createScriptLoader } from 'c15t/modules/script-loader';
159
+ import { useConsentKernel } from 'c15t/vue/vue-plugin';
160
+ import ConsentRoot from 'c15t/vue/consent-root';
161
+ import { scripts } from './consent-scripts';
134
162
 
135
- ```ts
136
- databuddy({
137
- clientId: 'your-client-id',
138
- scriptUrl: 'https://cdn.databuddy.cc/databuddy.js',
139
- apiUrl: 'https://basket.databuddy.cc', // Optional, defaults to basket.databuddy.cc, change if self-hosting
140
- configWhenGranted: {
141
- clientId: 'your-client-id',
142
- apiUrl: 'https://basket.databuddy.cc',
143
- // Tracking options
144
- trackScreenViews: true, // Automatically track page views
145
- trackOutgoingLinks: true, // Track clicks on external links
146
- trackAttributes: false, // Track data-track attributes on elements
147
- trackErrors: false, // Track JavaScript errors
148
- trackPerformance: true, // Track performance metrics
149
- trackWebVitals: false, // Track Core Web Vitals
150
-
151
-
152
- // Network options
153
- enableBatching: false, // Batch events before sending
154
- batchSize: 10, // Events per batch
155
- batchTimeout: 2000, // Batch timeout in ms
156
- samplingRate: 1.0, // Sample rate (0.0-1.0)
157
- disabled: false,
158
- },
159
- configWhenDenied: {
160
- clientId: 'your-client-id',
161
- apiUrl: 'https://basket.databuddy.cc',
162
- disabled: true,
163
- }
164
- })
163
+ const kernel = useConsentKernel();
164
+ let loader: ReturnType<typeof createScriptLoader> | undefined;
165
+
166
+ onMounted(() => {
167
+ loader = createScriptLoader({ kernel, scripts });
168
+ });
169
+ onUnmounted(() => loader?.dispose());
170
+ </script>
171
+
172
+ <template>
173
+ <ConsentRoot />
174
+ <main>Your application</main>
175
+ </template>
165
176
  ```
166
177
 
167
- ## Tracking events in your app
178
+ Keep your existing page content and preferences link. The plugin still owns
179
+ the kernel and persistence; this component owns only the vendor loader.
180
+ Do not register the same scripts in plugin configuration as well. See the
181
+ [Vue quickstart](https://c15t.com/docs/frameworks/vue/quickstart).
168
182
 
169
- Databuddy is `alwaysLoad: true`, so the script is in the DOM from page start regardless of consent. `window.databuddy` is therefore always defined and calls to `track`, `screenView`, or `setGlobalProperties` are safe to make at any time — when measurement consent is denied, c15t flips `window.databuddy.options.disabled = true` so the SDK becomes a no-op until consent is granted again.
183
+ **Astro**
170
184
 
171
- ```ts
172
- window.databuddy?.track('signup');
185
+ Point the existing Astro integration at a client module. Keep its `mode`,
186
+ `ui` and framework integration from the [Astro quickstart](https://c15t.com/docs/frameworks/astro/quickstart).
187
+ Import `fileURLToPath` in your Astro configuration:
188
+
189
+ ```js title="astro.config.mjs"
190
+ import { fileURLToPath } from 'node:url';
191
+ ```
192
+
193
+ Add this option to the existing `c15t({ ... })` call. Resolve the path from
194
+ the configuration file because Astro injects the import into a virtual module:
195
+
196
+ ```js
197
+ clientEntrypoint: fileURLToPath(new URL('./src/c15t.client.ts', import.meta.url)),
198
+ ```
199
+
200
+ Export the scripts from that module:
201
+
202
+ ```ts title="src/c15t.client.ts"
203
+ import type { C15tClientOptionsExtension } from '@c15t/astro';
204
+ import { scripts } from './consent-scripts';
205
+
206
+ export default { scripts } satisfies C15tClientOptionsExtension;
207
+ ```
208
+
209
+ The integration passes this extension to its shared browser runtime. Vendor
210
+ helpers contain callbacks, so do not put them in the serialized `scripts`
211
+ option in `astro.config.mjs`. Keep one runtime across consent islands and
212
+ `ClientRouter` navigation.
213
+
214
+ **Svelte**
215
+
216
+ Import the scripts in the component that owns your existing provider and
217
+ pass them as a top-level prop:
218
+
219
+ ```svelte title="src/App.svelte"
220
+ <script lang="ts">
221
+ import { ConsentManagerProvider, hosted } from '@c15t/svelte';
222
+ import { scripts } from './consent-scripts';
223
+
224
+ const backendURL = import.meta.env.VITE_C15T_BACKEND_URL;
225
+ if (!backendURL) throw new Error('Set VITE_C15T_BACKEND_URL');
226
+ const mode = hosted({ url: backendURL });
227
+ </script>
228
+
229
+ <ConsentManagerProvider {mode} {scripts}>
230
+ <!-- Keep your application, consent UI and preferences link here. -->
231
+ </ConsentManagerProvider>
232
+ ```
233
+
234
+ Retain the styles and consent UI from the [Svelte quickstart](https://c15t.com/docs/frameworks/svelte/quickstart).
235
+ The provider owns the loader and disposes it on unmount.
236
+
237
+ **SvelteKit**
238
+
239
+ Add the scripts to the existing root layout provider. Keep the server load
240
+ and its serializable prefetch data from the [SvelteKit quickstart](https://c15t.com/docs/frameworks/sveltekit/quickstart).
241
+
242
+ ```svelte title="src/routes/+layout.svelte"
243
+ <script lang="ts">
244
+ import { ConsentManagerProvider, hosted } from '@c15t/svelte';
245
+ import { scripts } from '../consent-scripts';
246
+
247
+ let { children, data } = $props();
248
+ const mode = hosted({ url: data.backendURL });
249
+ </script>
250
+
251
+ <ConsentManagerProvider {mode} {scripts} prefetch={data.prefetch}>
252
+ {@render children()}
253
+ <!-- Keep your consent UI and preferences link here. -->
254
+ </ConsentManagerProvider>
173
255
  ```
174
256
 
175
- You do not need to guard these calls with `useConsentManager().has('measurement')`, but doing so does no harm if you prefer the symmetry with other vendors.
257
+ Import vendor helpers in the layout component, not in `+layout.server.ts`.
258
+ For static hosting, keep your browser-only `mode` setup and omit request
259
+ prefetch; the `scripts` prop stays the same. If you pass an externally owned
260
+ `runtime` to the provider, register scripts when creating that runtime instead.
176
261
 
177
- ## Consent and privacy
262
+ **JavaScript**
178
263
 
179
- The Databuddy integration automatically handles consent management:
264
+ Attach the loader to your existing kernel before calling
265
+ `kernel.commands.init()`:
266
+
267
+ ```ts
268
+ import { createScriptLoader } from 'c15t/modules/script-loader';
269
+ import { scripts } from './consent-scripts';
270
+
271
+ const loader = createScriptLoader({ kernel, scripts });
272
+ ```
180
273
 
181
- 1. **Before Script Load**: Sets `window.databuddyConfig.disabled` based on initial consent state
182
- 2. **On Consent Grant**: Enables tracking by setting `window.databuddy.options.disabled = false`
183
- 3. **On Consent Revoke**: Disables tracking by setting `window.databuddy.options.disabled = true`
274
+ Call `loader.dispose()` when that application instance is destroyed.
275
+ `kernel` is the hosted kernel from your quickstart. A provider-owned kernel
276
+ already has a loader; do not attach a second one. See
277
+ [JavaScript script loading](https://c15t.com/docs/frameworks/javascript/script-loader).
184
278
 
185
- This ensures that no tracking occurs without user consent, keeping your analytics privacy-compliant.
279
+ ## Options
186
280
 
187
- ## Types
281
+ | Option | Behavior |
282
+ | ------------------- | -------------------------------------------------------- |
283
+ | `clientId` | Required project client ID. |
284
+ | `configWhenGranted` | Required configuration used when measurement is allowed. |
285
+ | `configWhenDenied` | Required configuration used when measurement is denied. |
286
+ | `apiUrl` | Defaults to `https://basket.databuddy.cc`. |
287
+ | `scriptUrl` | Defaults to `https://cdn.databuddy.cc/databuddy.js`. |
188
288
 
189
- ### DatabuddyConsentOptions
289
+ Use serializable configuration values. The helper seeds
290
+ `window.databuddyConfig` before loading only if that global is absent. Remove a
291
+ separate global initializer that could override your intended initial state.
190
292
 
191
- |Property|Value|
192
- |:--|:--|
193
- |Type Name|\`DatabuddyConsentOptions\`|
194
- |Source Path|\`./packages/scripts/src/vendors/analytics/databuddy.ts\`|
293
+ ## Consent behavior
195
294
 
196
- \*ExtractedTypeTable: Could not extract "DatabuddyConsentOptions" from "./packages/scripts/src/vendors/analytics/databuddy.ts" using base path "/home/runner/work/c15t/c15t". Verify the path/name and that the file is included by your tsconfig.\*
295
+ Databuddy uses `alwaysLoad: true`. The script is requested regardless of
296
+ measurement permission. On load and later changes, the helper sets
297
+ `window.databuddy.options.disabled` from measurement permission. On consent
298
+ changes it also replaces `window.databuddyConfig` with the matching object.
197
299
 
198
- ### Script
300
+ This helper is not a no-request-before-consent integration. If your requirement
301
+ is to prevent even the SDK request, use a
302
+ [custom gated integration](./building-integrations.md) and verify
303
+ its complete lifecycle.
199
304
 
200
- |Property|Value|
201
- |:--|:--|
202
- |Type Name|\`Script\`|
203
- |Source Path|\`./packages/core/src/libs/script-loader/types.ts\`|
305
+ ## Verify the integration
204
306
 
205
- \*ExtractedTypeTable: Could not extract "Script" from "./packages/core/src/libs/script-loader/types.ts" using base path "/home/runner/work/c15t/c15t". Verify the path/name and that the file is included by your tsconfig.\*
307
+ Expect the loader request while consent is denied. Check the initial global
308
+ configuration and the SDK's `disabled` value, grant measurement, then revoke it.
309
+ Confirm collection follows those transitions and that application event calls
310
+ stop after revocation. Test with no pre-existing `databuddyConfig` as well as
311
+ with persisted consent. See [consent verification](../guides/verify-consent.md).