mirror of
https://github.com/tuono-labs/tuono
synced 2026-07-29 13:52:46 -07:00
18 lines
804 B
TypeScript
18 lines
804 B
TypeScript
|
|
import type { RouteNode } from './types'
|
||
|
|
import { multiSortBy } from './utils'
|
||
|
|
import { ROOT_PATH_ID } from './constants'
|
||
|
|
|
||
|
|
// Routes need to be sorted in order to iterate over the handleNode fn
|
||
|
|
// with first the items that might be parent routes
|
||
|
|
export const sortRouteNodes = (routes: RouteNode[]): RouteNode[] =>
|
||
|
|
multiSortBy(routes, [
|
||
|
|
(d): number => (d.routePath === '/' ? -1 : 1),
|
||
|
|
(d): number => d.routePath.split('/').length,
|
||
|
|
// Dynamic route
|
||
|
|
(d): number => (d.routePath.endsWith(']') ? 1 : -1),
|
||
|
|
(d): number => (d.filePath.match(/[./]index[.]/) ? 1 : -1),
|
||
|
|
(d): number => (d.filePath.match(/[./]route[.]/) ? -1 : 1),
|
||
|
|
(d): number => (d.routePath.endsWith('/') ? -1 : 1),
|
||
|
|
(d): string => d.routePath,
|
||
|
|
]).filter((d) => ![`/${ROOT_PATH_ID}`].includes(d.routePath || ''))
|