Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
22 lines
No EOL
917 B
Text
22 lines
No EOL
917 B
Text
import { isInterceptionRouteAppPath } from '../../../../shared/lib/router/utils/interception-routes';
|
|
export function hasInterceptionRouteInCurrentTree([segment, parallelRoutes]) {
|
|
// If we have a dynamic segment, it's marked as an interception route by the presence of the `i` suffix.
|
|
if (Array.isArray(segment) && (segment[2] === 'di' || segment[2] === 'ci')) {
|
|
return true;
|
|
}
|
|
// If segment is not an array, apply the existing string-based check
|
|
if (typeof segment === 'string' && isInterceptionRouteAppPath(segment)) {
|
|
return true;
|
|
}
|
|
// Iterate through parallelRoutes if they exist
|
|
if (parallelRoutes) {
|
|
for(const key in parallelRoutes){
|
|
if (hasInterceptionRouteInCurrentTree(parallelRoutes[key])) {
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
//# sourceMappingURL=has-interception-route-in-current-tree.js.map |