STS-3.0.1: collapse variant groups to a single item in listings & counts - #36
Open
gi-os wants to merge 2 commits into
Open
STS-3.0.1: collapse variant groups to a single item in listings & counts#36gi-os wants to merge 2 commits into
gi-os wants to merge 2 commits into
Conversation
added 2 commits
July 1, 2026 18:23
…ounts Adds lib/variants.ts with dedupeVariantGroups() and countDistinctProducts() helpers. Variant sets (e.g. sizes/colors) now render as one product card and count as one item on the homepage, collections overview, collection detail, and shop-all pages, instead of once per size/color folder.
Listing cards (shop-all, homepage single-collection) now display the variant
group base name (e.g. "Branded Sneakers") instead of a single variant folder
name ("Branded Sneakers (10)"), and render the available values as chips
below via a shared components/VariantChips.tsx, matching the collection detail
page. Adds variantDisplayName() to lib/variants.ts.
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
Variant sets (a product offered in multiple sizes/colors) were counting and listing once per variant folder. A single sneaker in 7 sizes showed as "7 products" and rendered 7 cards in overviews. This collapses each variant group to a single item everywhere.
Changes
lib/variants.ts— shared, fs-free helpers:dedupeVariantGroups(products)→ one representative per variant groupcountDistinctProducts(products)→ grouped countapp/page.tsx), collections overview (app/collections/CollectionCard.tsx),shop-all, and refactored the collection detail page to use the shared helper (it already grouped inline).lib/version.ts,package.json,VERSIONING.md).Result
Sneakers (7 sizes) now shows 1 product; a shirt in S/M/L/XL shows 1. Non-variant products are unaffected. Verified live on a 3.0.0 shop.