Commit e2c26fa
feat(analytics): enhance Plausible tracking with journey context (#3169)
## Summary
- **User journey tracking**: Added `page` property to `copy_code` and
`download_image` events to distinguish where users perform actions
(`home`, `spec_overview`, `spec_detail`)
- **New events**: `toggle_grid_size` (view preference), `filter_remove`
(filter removal tracking)
- **Bug fix**: Added missing `spec` property to SpecTabs `copy_code`
event
- **Faster tracking**: Reduced debounce times for better event capture
- `pageview`: 300ms → 150ms
- `search_no_results`: 500ms → 200ms
- **Documentation**: Comprehensive Plausible setup guide with custom
properties list
## Changes
| File | Change |
|------|--------|
| `useAnalytics.ts` | Reduced pageview debounce |
| `FilterBar.tsx` | Added `toggle_grid_size`, reduced search debounce |
| `ImageCard.tsx` | Added `page: 'home'` to copy_code |
| `SpecPage.tsx` | Added `page` to copy_code and download_image |
| `SpecTabs.tsx` | Added `spec` and `page` to copy_code |
| `useFilterState.ts` | Added `filter_remove` event |
| `docs/architecture/plausible.md` | Full documentation with Plausible
dashboard setup |
## Plausible Dashboard Setup Required
After merge, register these **custom properties** in Plausible:
```
spec, library, method, page, category, value, query, destination, tab, size
```
## Test plan
- [ ] Verify copy_code events include `page` property in different
contexts
- [ ] Verify toggle_grid_size fires on view toggle
- [ ] Verify filter_remove fires on filter removal
- [ ] Check Plausible dashboard receives events correctly
🤖 Generated with [Claude Code](https://claude.com/claude-code)
---------
Co-authored-by: Claude <noreply@anthropic.com>1 parent ec44f62 commit e2c26fa
File tree
7 files changed
+387
-16
lines changed- app/src
- components
- hooks
- pages
- docs/architecture
7 files changed
+387
-16
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
221 | 221 | | |
222 | 222 | | |
223 | 223 | | |
224 | | - | |
| 224 | + | |
225 | 225 | | |
226 | 226 | | |
227 | 227 | | |
| |||
378 | 378 | | |
379 | 379 | | |
380 | 380 | | |
381 | | - | |
| 381 | + | |
| 382 | + | |
| 383 | + | |
| 384 | + | |
| 385 | + | |
382 | 386 | | |
383 | 387 | | |
384 | 388 | | |
| |||
588 | 592 | | |
589 | 593 | | |
590 | 594 | | |
591 | | - | |
| 595 | + | |
| 596 | + | |
| 597 | + | |
| 598 | + | |
| 599 | + | |
592 | 600 | | |
593 | 601 | | |
594 | 602 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
89 | 89 | | |
90 | 90 | | |
91 | 91 | | |
92 | | - | |
| 92 | + | |
93 | 93 | | |
94 | 94 | | |
95 | 95 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
164 | 164 | | |
165 | 165 | | |
166 | 166 | | |
167 | | - | |
| 167 | + | |
168 | 168 | | |
169 | 169 | | |
170 | 170 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
64 | 64 | | |
65 | 65 | | |
66 | 66 | | |
67 | | - | |
| 67 | + | |
68 | 68 | | |
69 | 69 | | |
70 | 70 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
210 | 210 | | |
211 | 211 | | |
212 | 212 | | |
| 213 | + | |
| 214 | + | |
| 215 | + | |
| 216 | + | |
213 | 217 | | |
214 | 218 | | |
215 | | - | |
216 | | - | |
| 219 | + | |
| 220 | + | |
217 | 221 | | |
218 | | - | |
| 222 | + | |
219 | 223 | | |
220 | 224 | | |
221 | 225 | | |
222 | | - | |
| 226 | + | |
223 | 227 | | |
224 | 228 | | |
225 | | - | |
| 229 | + | |
226 | 230 | | |
227 | 231 | | |
228 | 232 | | |
| 233 | + | |
| 234 | + | |
| 235 | + | |
| 236 | + | |
229 | 237 | | |
230 | | - | |
| 238 | + | |
231 | 239 | | |
232 | 240 | | |
233 | 241 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
156 | 156 | | |
157 | 157 | | |
158 | 158 | | |
159 | | - | |
| 159 | + | |
160 | 160 | | |
161 | | - | |
| 161 | + | |
162 | 162 | | |
163 | 163 | | |
164 | 164 | | |
| |||
168 | 168 | | |
169 | 169 | | |
170 | 170 | | |
171 | | - | |
| 171 | + | |
172 | 172 | | |
173 | 173 | | |
174 | 174 | | |
175 | 175 | | |
176 | 176 | | |
177 | | - | |
| 177 | + | |
178 | 178 | | |
179 | 179 | | |
180 | 180 | | |
| |||
0 commit comments