|
|
import { INTERCEPTION_ROUTE_MARKERS } from '../../shared/lib/router/utils/interception-routes' |
|
|
import type { DynamicParamTypes } from './types' |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export function getSegmentParam(segment: string): { |
|
|
param: string |
|
|
type: DynamicParamTypes |
|
|
} | null { |
|
|
const interceptionMarker = INTERCEPTION_ROUTE_MARKERS.find((marker) => |
|
|
segment.startsWith(marker) |
|
|
) |
|
|
|
|
|
|
|
|
|
|
|
if (interceptionMarker) { |
|
|
segment = segment.slice(interceptionMarker.length) |
|
|
} |
|
|
|
|
|
if (segment.startsWith('[[...') && segment.endsWith(']]')) { |
|
|
return { |
|
|
|
|
|
|
|
|
type: 'optional-catchall', |
|
|
param: segment.slice(5, -2), |
|
|
} |
|
|
} |
|
|
|
|
|
if (segment.startsWith('[...') && segment.endsWith(']')) { |
|
|
return { |
|
|
type: interceptionMarker ? 'catchall-intercepted' : 'catchall', |
|
|
param: segment.slice(4, -1), |
|
|
} |
|
|
} |
|
|
|
|
|
if (segment.startsWith('[') && segment.endsWith(']')) { |
|
|
return { |
|
|
type: interceptionMarker ? 'dynamic-intercepted' : 'dynamic', |
|
|
param: segment.slice(1, -1), |
|
|
} |
|
|
} |
|
|
|
|
|
return null |
|
|
} |
|
|
|