Open p5quared opened 1 year ago
See #23
Here is a demonstration of the backwards navigation issue I encountered. Link
Yeah! it happened to me once , For an instance we cannot go backwards or get out of site, It just keep on looping and we stuck on site.
Example : Try to get into three sections and repeat once up and down then you stuck forever there.
Modals appear to be coupled to
<Router />
, assumedly so you can share links to elements, e.g.:https://stacksorted.com/grids/apple-iphone-14
.However, backwards navigation does not relaunch modals, causing the appearance of broken navigation.
Recreation:
/category
.Doing this a number of times with different steps, like opening modals, switching category, opening modals, and trying to 'back' repeatedly, yields somewhat unpredictable results. Even try using the site for a little bit, then clicking down the categories one by one, and then pressing back a few times.
This effect is almost certainly affecting accessibility.
Thoughts
onClick => navigate(abc)
with anchors would not only make the page's html more semantically correct, but it would also make things simpler by moving a lot of logic from the site to the browser itself. (I'll post example).window.location.pathname
.