diff --git a/components/sub-select.js b/components/sub-select.js index 5f7bcdea..c6a136dd 100644 --- a/components/sub-select.js +++ b/components/sub-select.js @@ -94,8 +94,19 @@ export default function SubSelect ({ prependSubs, sub, onChange, size, appendSub } } else { // we're currently on the home sub - // are we in a sub aware route? - if (router.pathname.startsWith('/~')) { + // if in /top/cowboys, /top/territories, or /top/stackers + // and a territory is selected, go to /~sub/top/posts/day + if (router.pathname.startsWith('/~/top/cowboys')) { + router.push(sub ? `/~${sub}/top/posts/day` : '/top/cowboys') + return + } else if (router.pathname.startsWith('/~/top/stackers')) { + router.push(sub ? `/~${sub}/top/posts/day` : 'top/stackers/day') + return + } else if (router.pathname.startsWith('/~/top/territories')) { + router.push(sub ? `/~${sub}/top/posts/day` : '/top/territories/day') + return + } else if (router.pathname.startsWith('/~')) { + // are we in a sub aware route? // if we are, go to the same path but in the sub asPath = `/~${sub}` + router.asPath } else { diff --git a/next.config.js b/next.config.js index 4714b532..3665ee8b 100644 --- a/next.config.js +++ b/next.config.js @@ -194,6 +194,21 @@ module.exports = withPlausibleProxy()({ source: '/top/cowboys/:when', destination: '/top/cowboys', permanent: true + }, + { + source: '/~:sub/top/cowboys', + destination: '/top/cowboys', + permanent: true + }, + { + source: '/~:sub/top/stackers/:when*', + destination: '/top/stackers/:when*', + permanent: true + }, + { + source: '/~:sub/top/territories/:when*', + destination: '/top/territories/:when*', + permanent: true } ] },