0
0
mirror of https://github.com/honojs/hono.git synced 2024-11-29 17:46:30 +01:00
hono/deno_dist/helper/dev/index.ts

63 lines
1.7 KiB
TypeScript
Raw Normal View History

import type { Hono } from '../../hono.ts'
import type { Env, RouterRoute } from '../../types.ts'
interface ShowRoutesOptions {
verbose?: boolean
}
interface RouteData {
path: string
method: string
name: string
isMiddleware: boolean
}
const isMiddleware = (handler: Function) => handler.length > 1
const handlerName = (handler: Function) => {
return handler.name || (isMiddleware(handler) ? '[middleware]' : '[handler]')
}
export const inspectRoutes = <E extends Env>(hono: Hono<E>): RouteData[] => {
return hono.routes.map(({ path, method, handler }: RouterRoute) => ({
path,
method,
name: handlerName(handler),
isMiddleware: isMiddleware(handler),
}))
}
export const showRoutes = <E extends Env>(hono: Hono<E>, opts?: ShowRoutesOptions) => {
const routeData: Record<string, RouteData[]> = {}
let maxMethodLength = 0
let maxPathLength = 0
inspectRoutes(hono)
.filter(({ isMiddleware }) => opts?.verbose || !isMiddleware)
.map((route) => {
const key = `${route.method}-${route.path}`
;(routeData[key] ||= []).push(route)
if (routeData[key].length > 1) {
return
}
maxMethodLength = Math.max(maxMethodLength, route.method.length)
maxPathLength = Math.max(maxPathLength, route.path.length)
return { method: route.method, path: route.path, routes: routeData[key] }
})
.forEach((data) => {
if (!data) {
return
}
const { method, path, routes } = data
console.log(`\x1b[32m${method}\x1b[0m ${' '.repeat(maxMethodLength - method.length)} ${path}`)
if (!opts?.verbose) {
return
}
routes.forEach(({ name }) => {
console.log(`${' '.repeat(maxMethodLength + 3)} ${name}`)
})
})
}