Hi,
First - thanks for the very useful library/API on React, helped to speed up our development!
We have a search for which we can filter/facet by ressources
. The user can either filter it through the filter column on the left side through a RefinementList
component. as per the screenshot below
We wanted an easier way for the user to navigate the results, therefore we decided to implement the tab that you see on the screenshot. Whenever the user selects a ressource type in the tab we want to display all the corresponding Hits
- we do this for now by using a Menu
component and refining the search with the type.
The issue with this current implementation is that the ressources filters and the tabs are conflicting with each other refine. (which is the expected behaviour, I understand)
I’m therefore looking for a solution where I could have my filter on the left selecting XYZ ressources types, and allow the user to navigate through those all those results type (through an infinite hit component) without affecting the filter on the left.
any help appreciated - thanks !