Add social, collaborative, and gift-registry wishlist capabilities#28
Draft
Copilot wants to merge 3 commits into
Draft
Add social, collaborative, and gift-registry wishlist capabilities#28Copilot wants to merge 3 commits into
Copilot wants to merge 3 commits into
Conversation
Co-authored-by: thomasiverson <12767513+thomasiverson@users.noreply.github.com>
Co-authored-by: thomasiverson <12767513+thomasiverson@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Add social and sharing features to wishlists
Add social, collaborative, and gift-registry wishlist capabilities
May 27, 2026
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.
This change introduces first-class wishlist sharing and collaboration: public/unlisted links, gift registry workflows, collaborator editing, and social distribution surfaces. It also adds privacy/security controls and analytics so shared wishlists are safe to expose and measurable.
Backend data model + API surface
Wishlist,WishlistItem, andWishlistSharemodels with sharing, collaborator, and registry fields./api/wishlistsendpoints for create/list/update/delete, sharing, collaborator management, reserve/purchase/unreserve, registry stats, item comments, and activity feed.Registry + collaboration behavior
reservedBy,reservedUntil,isPurchased,purchasedBy,purchasedAt).Security, privacy, and governance
Frontend wishlist feature set
WishlistManager,WishlistSettingsModal,ShareWishlist,PublicWishlistView,GiftRegistryView, andCollaborativeWishlist.react-qr-code), email share, and Facebook/Twitter/WhatsApp entry points.frontend/src/api/wishlists.tsclient and wired routes inApp.tsx.Documentation
Original prompt
Add social and sharing features to wishlists: public URLs, gift registry mode, collaborative wishlists, and social sharing.
Goal: Enable users to share wishlists, create gift registries, and collaborate with others on product lists.
Requirements:
Enhanced Data Model:
Backend API Endpoints:
Wishlist Management:
Sharing:
Gift Registry:
Frontend Components:
Components/WishlistManager.tsx:
Components/ShareWishlist.tsx:
Components/PublicWishlistView.tsx:
Components/GiftRegistryView.tsx:
Components/CollaborativeWishlist.tsx:
Wishlist Settings Modal:
Navigation Updates:
Social Sharing Integration:
Security & Privacy:
Analytics:
Technical Notes: