Hi Folks,
I have more of a "what-would-you-do" question than an actual coding question. It relates to a project I am currently working on. In this project, we are tasked with combining several marketplace APIs into one interface. Each API has its own unique way of categorizing products. The top-level parent categories for all the APIs we are looking at are more-or-less the same with some variations. But, the subcategories are wildly different.
For example, one API requires long bread-crumb trails to select a category, such as: Sports > Ball Sports > New England > Football > Active Teams > Patriots > Memorabilia. While another API has two-level categorization: Sports > Patriots Memorabilia. In many cases, there are sub-categories that don't relate whatsoever to the subcategories of other APIs.
So, the question is - what is the best approach to take when designing the interface? We are currently wrestling between two possibilities:
1) Design a custom category UI on the client and then build logic into the server that is able to sort through the needs of the various APIs based on user-selected choices.
2) Create the UI in such a way that the user has to walk through the necessary steps for each individual API. Depending on user settings, this means that he may need to fill out API - specific information 5,6,10, or more times.
While I am told that option number one is a real programming nightmare (the example I am given is changing API data fields) I feel strongly that option number two will piss off customers.
Any ideas out there??