react-lgpd-consent 0.3.2 → 0.3.4

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.
package/CHANGELOG.md CHANGED
@@ -4,6 +4,63 @@ Todas as mudanças notáveis neste projeto serão documentadas neste arquivo.
4
4
 
5
5
  O formato é baseado em [Keep a Changelog](https://keepachangelog.com/pt-BR/1.0.0/), e este projeto segue [Semantic Versioning](https://semver.org/lang/pt-BR/).
6
6
 
7
+ ## [Unreleased]
8
+
9
+ ### ✨ Novas funcionalidades e melhorias
10
+
11
+ - Storybook
12
+ - Adicionado e aprimorado suporte ao Storybook com controles (`args`/`argTypes`) para componentes-chave (`FloatingPreferencesButton`, `PreferencesModal`) e suporte a tema escuro nas histórias.
13
+ - Isolamento entre stories via reset de estado (remoção/limpeza de cookie entre stories) e ajustes em `.storybook/preview.tsx` para compatibilidade com Vite/ESM.
14
+
15
+ - ConsentProvider
16
+ - `blockingStrategy` (opt-in) adicionado para permitir overlays de bloqueio controlados pelo provider.
17
+ - Melhor encaminhamento de props: `floatingPreferencesButtonProps` agora são repassadas corretamente quando o `FloatingPreferencesButton` é instanciado automaticamente.
18
+
19
+ - Testes e qualidade
20
+ - Suíte de testes ampliada: novos testes para `DesignContext`, `useConsent`, `CategoriesContext`, `ConsentScriptLoader`, `cookieUtils`, `scriptLoader`, `scriptIntegrations`, `SafeThemeProvider`, `logger`, `ConsentGate`, `PreferencesModal` e `FloatingPreferencesButton`.
21
+ - Configuração inicial de mutation testing com Stryker.
22
+ - Setup de testes atualizado para suprimir logs do `developerGuidance` durante execução normal e permitir testes dedicados que verifiquem esses logs.
23
+
24
+ - Integração e DX
25
+ - Quickstart PT/EN e melhorias no `README` para facilitar adoção e contribuições.
26
+ - Notas de troubleshooting e documentação adicional sobre Storybook e integração de componentes.
27
+
28
+ ### 🐛 Correções importantes
29
+
30
+ - `FloatingPreferencesButton` — props forward
31
+ - Sintoma: props (`tooltip`, `hideWhenConsented`, etc.) não eram aplicadas quando o botão era renderizado automaticamente pelo `ConsentProvider`.
32
+ - Solução: `ConsentProvider` agora encaminha `floatingPreferencesButtonProps` corretamente para o componente padrão. Stories atualizadas.
33
+
34
+ - Storybook fixes
35
+ - Removidos arquivos `preview.ts` que continham JSX; migrado para `preview.tsx` e ajustadas exports para evitar erros com o bundler (esbuild/vite).
36
+
37
+ ### 🧪 Testes e estabilidade
38
+
39
+ - Cobertura e robustez
40
+ - Adicionados testes que validam uso de hooks fora do `ConsentProvider` (erros esperados), hidratação a partir de cookie, callbacks (`onConsentGiven`, `onPreferencesSaved`) e fluxos de UI (abrir/fechar modal, accept/reject).
41
+ - Ajustes no `jest.setup` e um `jest.console-setup.ts` para garantir suprimir logs antes da coleta de módulos, mantendo testes determinísticos.
42
+
43
+ ### 📚 Documentação
44
+
45
+ - Quickstart & README
46
+ - Novo Quickstart em PT/EN e simplificações no `README` com foco em `QUICKSTART`.
47
+ - Documentação de uso do Storybook e troubleshooting adicionada em `docs`.
48
+
49
+ ### ♻️ Dependências e manutenção
50
+
51
+ - Dev-deps e chores
52
+ - Atualizações de dependências de desenvolvimento (ex.: `jest`, `@types/jest`, `typedoc`, `jest-environment-jsdom`) e ajustes na `package.json` (engine `npm` atualizado, scripts e chores relacionados ao Storybook).
53
+ - Limpeza de arquivos redundantes e ajustes de ESLint/preview para Storybook.
54
+
55
+ ### Commits representativos
56
+
57
+ - Testes e supressão de logs: `fce823a`, `333ce0a`, `a1eea7e`
58
+ - Storybook / docs: `8f8c388`, `6e09058`, `329682c`, `9b1d977`, `adf0d49`
59
+ - Provider features: `967d278` (blockingStrategy)
60
+ - Quickstart / README: `db03ae3`
61
+ - Dependências / chores: `27339e7`, `3b7fdba`, `11c3602`
62
+
63
+
7
64
  ## [0.3.1] - 2025-08-13 - CORREÇÕES DE PRODUÇÃO E MELHORIAS DE COMPATIBILIDADE
8
65
 
9
66
  ### 🛡️ **Corrigido - Critical Production Fixes**
@@ -294,7 +351,7 @@ A v0.2.1 introduz um **sistema inteligente de orientações** que guia desenvolv
294
351
 
295
352
  ### 📋 **Documentação**
296
353
 
297
- - **📋 CONFORMIDADE-LGPD.md**: Guia completo de implementação conforme ANPD
354
+ - **📋 CONFORMIDADE.md**: Guia completo de implementação conforme ANPD
298
355
  - **🔄 Migração**: Instruções detalhadas v0.2.0 → v0.2.1
299
356
  - **🏛️ Exemplos**: Casos de uso governamentais e corporativos
300
357
 
@@ -458,7 +515,7 @@ A v0.2.1 introduz um **sistema inteligente de orientações** que guia desenvolv
458
515
 
459
516
  ---
460
517
 
461
- ## [Unreleased]
518
+
462
519
 
463
520
  ### 🔮 Futuro (v0.4.0+)
464
521
 
@@ -0,0 +1,245 @@
1
+ # 🚀 Quickstart
2
+
3
+ This quickstart gives everything you need to integrate `react-lgpd-consent` into a React project fast.
4
+
5
+ ## 📦 Installation
6
+
7
+ ```bash
8
+ npm install react-lgpd-consent
9
+ # or
10
+ yarn add react-lgpd-consent
11
+ ```
12
+
13
+ ### Peer dependencies
14
+
15
+ ```bash
16
+ npm install @mui/material @mui/icons-material @emotion/react @emotion/styled
17
+ ```
18
+
19
+ ## 🎯 Basic Usage (30 seconds)
20
+
21
+ ```tsx
22
+ import React from 'react'
23
+ import { ConsentProvider } from 'react-lgpd-consent'
24
+
25
+ function App() {
26
+ return (
27
+ <ConsentProvider
28
+ categories={{
29
+ enabledCategories: ['analytics', 'marketing'],
30
+ }}
31
+ >
32
+ <main>
33
+ <h1>My Application</h1>
34
+ </main>
35
+ </ConsentProvider>
36
+ )
37
+ }
38
+
39
+ export default App
40
+ ```
41
+
42
+ ## 🧭 Storybook — quick note
43
+
44
+ This repository ships an interactive Storybook playground used for manual testing and visual exploration of components. Quick commands:
45
+
46
+ - Run locally (development):
47
+
48
+ ```bash
49
+ npm run storybook
50
+ ```
51
+
52
+ - Build static Storybook (for publishing to GitHub Pages):
53
+
54
+ ```bash
55
+ npm run build-storybook
56
+ ```
57
+
58
+ Notes:
59
+ - The Storybook preview (`.storybook/preview.tsx`) applies a clean environment between stories (it removes the consent cookie and performs defensive DOM cleanup). Check that file when creating stories that rely on a clean initial state.
60
+
61
+
62
+ ## 📋 ConsentProvider props (summary)
63
+
64
+ This is a condensed reference of the most commonly-used props. For a full typed table, see the TypeScript API docs.
65
+
66
+ - `categories` (required) — Project categories configuration (e.g. enabledCategories: ["analytics"]).
67
+ - `texts` — Partial object to override UI texts.
68
+ - `theme` — Material-UI theme for consent components.
69
+ - `designTokens` — Advanced visual tokens (colors, spacing, backdrop).
70
+ - `blocking` (boolean) — If true, provider will block interaction until user acts.
71
+ - `blockingStrategy` (`"auto" | "provider" | "component"`) — How overlay is managed.
72
+ - `hideBranding` (boolean) — Hide library branding.
73
+ - `onConsentGiven` — Callback when user gives consent for the first time.
74
+ - `onPreferencesSaved` — Callback when preferences are saved.
75
+ - `CookieBannerComponent`, `PreferencesModalComponent`, `FloatingPreferencesButtonComponent` — Replace UI components.
76
+ - `cookie` — Customize cookie name, maxAge, domain, secure, sameSite.
77
+
78
+ ## 🎨 Custom components (TypeScript)
79
+
80
+ ### Custom Cookie Banner
81
+
82
+ ```tsx
83
+ import React from 'react'
84
+ import { ConsentProvider, type CustomCookieBannerProps } from 'react-lgpd-consent'
85
+
86
+ const MyBanner: React.FC<CustomCookieBannerProps> = ({
87
+ consented,
88
+ acceptAll,
89
+ rejectAll,
90
+ openPreferences,
91
+ texts,
92
+ blocking,
93
+ }) => {
94
+ return (
95
+ <div style={{ position: 'fixed', bottom: 0, left: 0, right: 0, background: '#222', color: 'white', padding: '1rem' }}>
96
+ <p>{texts.bannerMessage}</p>
97
+ <div style={{ display: 'flex', gap: '1rem', marginTop: '1rem' }}>
98
+ <button onClick={acceptAll}>{texts.acceptAll}</button>
99
+ <button onClick={rejectAll}>{texts.declineAll}</button>
100
+ <button onClick={openPreferences}>{texts.preferences}</button>
101
+ </div>
102
+ </div>
103
+ )
104
+ }
105
+
106
+ function App() {
107
+ return (
108
+ <ConsentProvider categories={{ enabledCategories: ['analytics'] }} CookieBannerComponent={MyBanner} blocking>
109
+ <main>My App</main>
110
+ </ConsentProvider>
111
+ )
112
+ }
113
+ ```
114
+
115
+ ### Custom Preferences Modal
116
+
117
+ ```tsx
118
+ import React from 'react'
119
+ import { ConsentProvider, type CustomPreferencesModalProps } from 'react-lgpd-consent'
120
+
121
+ const MyModal: React.FC<CustomPreferencesModalProps> = ({ preferences, setPreferences, closePreferences, isModalOpen, texts }) => {
122
+ if (!isModalOpen) return null
123
+
124
+ return (
125
+ <div style={{ position: 'fixed', inset: '20% 25%', background: 'white', borderRadius: 8, padding: '1.5rem', zIndex: 2000 }}>
126
+ <h2>{texts.modalTitle}</h2>
127
+ <p>{texts.modalIntro}</p>
128
+
129
+ {Object.entries(preferences).map(([category, enabled]) => (
130
+ <label key={category} style={{ display: 'block', margin: '0.5rem 0' }}>
131
+ <input
132
+ type="checkbox"
133
+ checked={enabled}
134
+ onChange={(e) => setPreferences({ ...preferences, [category]: e.target.checked })}
135
+ disabled={category === 'necessary'}
136
+ />{' '}
137
+ {category === 'necessary' ? texts.necessaryAlwaysOn : `Cookies ${category}`}
138
+ </label>
139
+ ))}
140
+
141
+ <div style={{ display: 'flex', gap: '1rem', justifyContent: 'flex-end', marginTop: '1rem' }}>
142
+ <button onClick={closePreferences}>Cancel</button>
143
+ <button onClick={closePreferences}>{texts.save}</button>
144
+ </div>
145
+ </div>
146
+ )
147
+ }
148
+
149
+ function App() {
150
+ return (
151
+ <ConsentProvider categories={{ enabledCategories: ['analytics', 'marketing'] }} PreferencesModalComponent={MyModal}>
152
+ <main>My App</main>
153
+ </ConsentProvider>
154
+ )
155
+ }
156
+ ```
157
+
158
+ ## 🎮 Programmatic control
159
+
160
+ ### React hook: `useOpenPreferencesModal`
161
+
162
+ ```tsx
163
+ import React from 'react'
164
+ import { useOpenPreferencesModal, useConsent } from 'react-lgpd-consent'
165
+
166
+ function MyComponent() {
167
+ const openPreferences = useOpenPreferencesModal()
168
+ const { preferences, acceptAll, rejectAll } = useConsent()
169
+
170
+ return (
171
+ <div>
172
+ <h3>Analytics: {preferences.analytics ? 'enabled' : 'disabled'}</h3>
173
+ <button onClick={openPreferences}>⚙️ Manage preferences</button>
174
+ <button onClick={acceptAll}>✅ Accept all</button>
175
+ <button onClick={rejectAll}>❌ Reject all</button>
176
+ </div>
177
+ )
178
+ }
179
+ ```
180
+
181
+ ### Global: `window.openPreferencesModal` (for plain JS)
182
+
183
+ ```html
184
+ <button onclick="window.openPreferencesModal?.()">Configure cookies</button>
185
+
186
+ <script>
187
+ if (typeof window.openPreferencesModal === 'function') {
188
+ console.log('Consent system available')
189
+ }
190
+ </script>
191
+ ```
192
+
193
+ ## 🐛 Debug system
194
+
195
+ ```tsx
196
+ import { setDebugLogging, LogLevel } from 'react-lgpd-consent'
197
+
198
+ // enable verbose debug locally
199
+ setDebugLogging(true, LogLevel.DEBUG)
200
+
201
+ // quieter in staging
202
+ setDebugLogging(true, LogLevel.INFO)
203
+
204
+ // errors only
205
+ setDebugLogging(true, LogLevel.ERROR)
206
+
207
+ // disable
208
+ setDebugLogging(false)
209
+ ```
210
+
211
+ Use the `useConsent` hook to inspect runtime state (preferences, consented) and optionally render a small debug panel in dev mode.
212
+
213
+ ## 🎨 Material-UI Theme integration
214
+
215
+ Wrap your app with MUI `ThemeProvider` and optionally pass a `theme` prop to `ConsentProvider` to style consent components.
216
+
217
+ ## 🔧 Advanced
218
+
219
+ - `designTokens` for low-level visual control (colors, spacing, backdrop)
220
+ - `cookie` to customize name, maxAge, domain, secure, sameSite
221
+ - `blocking` + `blockingStrategy` to control overlay behavior
222
+
223
+ ## 🚀 Common use cases
224
+
225
+ - E-commerce: analytics + marketing integrations
226
+ - Blog: only analytics
227
+ - Enterprise: strict blocking and auditing via `onPreferencesSaved`
228
+
229
+ ## 🆘 Troubleshooting
230
+
231
+ - "ConsentProvider must be used within ConsentProvider": ensure hooks are called inside provider tree.
232
+ - Banner not showing: clear consent cookie, check z-index and config.
233
+ - TypeScript types: set `moduleResolution` or `skipLibCheck` in `tsconfig` if needed.
234
+
235
+ ## 📚 Next steps
236
+
237
+ - API docs: `API.md`
238
+ - LGPD compliance guide: `CONFORMIDADE.md`
239
+ - Integrations: `INTEGRACOES.md`
240
+ - Example app: `example/`
241
+
242
+
243
+ ---
244
+
245
+ Tip: enable debug logs during development with `setDebugLogging(true, LogLevel.DEBUG)` to see runtime behavior.