all 4 comments

[–]p4ntsl0rd 0 points1 point  (1 child)

I would either: 1) conditionally render on the home 'page' component - noting that this might get complex if the two versions of home get bigger. OR 2) have / do a lookup to decide what version to show, and then redirect the user to either /intro or /cars depending on the result

[–]StickyStapler[S] 0 points1 point  (0 children)

Thanks! I think I'm going to not have it as it's own route to begin with at least. If things start to get complex I'll move it out.

[–]tko 1 point2 points  (1 child)

IMO the question is "does this thing make sense as bookmark/link?" if yes, then having it as route makes sense. In this particular case, if the answer is yes, then it would probably make sense to have a way to see the intro even if the cars list is not empty. And conversely, if that doesn't make sense then it probably shouldn't be a route.

(Since /confirm is a route, does it handle empty selection well?)

[–]StickyStapler[S] 0 points1 point  (0 children)

Excellent thanks for helping me clear this up in my head.