feat: Resolve #399 #401 #403 #404 – Hybrid Events, Conference Management, Network Policies, Heatmap Tracking#679
Merged
RUKAYAT-CODER merged 1 commit intoJun 24, 2026
Conversation
…ode#404 rinafcode#404 – Dropdown Menus: Heatmap Tracking - Add useDropdownHeatmap hook (trackClick, trackHoverStart, trackHoverEnd) - Persist events to localStorage; dispatch custom DOM events for analytics - Integrate tracking into Header nav links (desktop + mobile) rinafcode#403 – Admin Panel: Network Policies - Add NetworkPolicies component (IP/CIDR/Country ALLOW/DENY rules) - Add /api/admin/network-policies API route (GET/POST/DELETE) - Add /admin/network-policies page rinafcode#401 – Accessibility Features: Conference Management - Add AccessibilityConferenceManagement component - Lists recommended a11y conferences + user-managed personal list - Export from accessibility/index.ts rinafcode#399 – Email Verification: Hybrid Events - Add HybridEmailEventBus (direct / queue / webhook channels) - Uses existing EmailQueue, provider, and template infrastructure - Export from email/index.ts Closes rinafcode#399 Closes rinafcode#401 Closes rinafcode#403 Closes rinafcode#404
|
@limxiy Great news! 🎉 Based on an automated assessment of this PR, the linked Wave issue(s) no longer count against your application limits. You can now already apply to more issues while waiting for a review of this PR. Keep up the great work! 🚀 |
Contributor
|
Thank you for contributing to the project. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Resolves 4 assigned issues in a single PR.
Closes #404 – Dropdown Menus: Heatmap Tracking
useDropdownHeatmaphook (src/hooks/useDropdownHeatmap.ts)trackClick(label, index)– records item clicks with timestamp and session IDtrackHoverStart/End– measures dwell time per itemlocalStorageand dispatched as custom DOM events (dropdown:heatmap:click,dropdown:heatmap:hover) for analytics consumersHeader.tsxon all desktop and mobile nav linksCloses #403 – Admin Panel: Network Policies
NetworkPoliciescomponent (src/components/admin/NetworkPolicies.tsx)PermissionGate(requiresCONTENT_APPROVEpermission)/api/admin/network-policies(GET / POST / DELETE)/admin/network-policiesCloses #401 – Accessibility Features: Conference Management
AccessibilityConferenceManagementcomponent (src/components/accessibility/)src/components/accessibility/index.tsCloses #399 – Email Verification: Hybrid Events
HybridEmailEventBus(src/lib/email/hybridEvents.ts)direct(sync),queue(async with retries),webhook(external relay)EmailQueue,createEmailProvider, andemailTemplateManagerdispatch(payload, channels[])fans out to multiple channels in parallelon / emit) for in-process subscriberssrc/lib/email/index.tsTesting
npx tsc --noEmit— no errors on modified files