mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
4051ffcb01
* Add initial AMP implementation * Implement experimental feature flag * Implement feedback from sbenz * Add next/amp and `useAmp` hook * Use /:path*/amp instead * Add canonical * Add amphtml tag * Add ampEnabled for rel=“amphtml” * Remove extra type
38 lines
943 B
TypeScript
38 lines
943 B
TypeScript
import {IncomingMessage, ServerResponse} from 'http'
|
|
import {UrlWithParsedQuery} from 'url'
|
|
import pathMatch from './lib/path-match'
|
|
|
|
export const route = pathMatch()
|
|
|
|
type Params = {[param: string]: any}
|
|
|
|
export type Route = {
|
|
match: (pathname: string|undefined) => false|Params,
|
|
fn: (req: IncomingMessage, res: ServerResponse, params: Params, parsedUrl: UrlWithParsedQuery) => void,
|
|
}
|
|
|
|
export default class Router {
|
|
routes: Route[]
|
|
constructor(routes: Route[] = []) {
|
|
this.routes = routes
|
|
}
|
|
|
|
add(route: Route) {
|
|
this.routes.unshift(route)
|
|
}
|
|
|
|
match(req: IncomingMessage, res: ServerResponse, parsedUrl: UrlWithParsedQuery) {
|
|
if (req.method !== 'GET' && req.method !== 'HEAD') {
|
|
return
|
|
}
|
|
|
|
const { pathname } = parsedUrl
|
|
for (const route of this.routes) {
|
|
const params = route.match(pathname)
|
|
if (params) {
|
|
return () => route.fn(req, res, params, parsedUrl)
|
|
}
|
|
}
|
|
}
|
|
}
|