The Problem
I'm currently building a website for a client where the url structure will look a little something like this:
/products/[product-category]/[product-brand]
Scenario 1
In some cases, there will be both a product-category and product-brand
e.g. all of the below urls exist:
/products/watch
/products/watch/rolex
/products/watch/hublot
Scenario 2
In some cases, there will be no 'product-brand' (only a 'product-category') and the url will look like:
/products/[product-category]
e.g.
/products/watch exists
/products/watch/[product-brand] does not exist
Scenario 3
In some cases, there will be a 'product-brand' with a 'product-category' in the url, but the standalone 'product-category' page should not exist
e.g.
/products/watch doesn't exist
/products/watch/rolex exists
The Potential Solutions
I've thought of two approaches to handle this, but both approaches have their flaws
Approach 1
Prismic:
- Use two custom types
- product-brand
- product-category
- Product-brand has a content relationship field that links to product-category
Nextjs:
- Dynamic routes
- /products/[product-category] - brings back all product-category content types
- /products/[product-category]/[product-brand] - brings back all product-brand content types with matching product-category
The issue with this approach is, /products/[product-category] would create a /products/watch page which I wouldn't want in scenario 3
Approach 2
Prismic:
- Use two custom types
- product-brand
- product-category
- Product-brand has a 'select' field with a collection of pre-defined categories
Nextjs
- Dynamic routes
- /products/[product-category] - brings back all product-category content types
- /products/[category]/[product-brand] - brings back all the product-brand content types with a matching category select field
This would avoid the issue of approach 1, since a product category can exist in the select field of product-brand without being created as a product-category type (and therefore having no page).
The issue here is there would be duplication of data - since scenario 1 exists there could be issues where the client names a 'product-category' as 'watches' but 'watch' is used in the select list for product brand, causing inconsistencies. I'm also worried about potential clashes (what if a product-brand is the same name as a product-category, how will Nextjs handle that?)
Afterthoughts
Is there a 'proper' way of doing this? I'm leaning towards approach 2 as the best method and the lesser or two evils.