mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
20fe65ce41
Fixes #5845 Implement tslint for core files **What is this?** Implements tslint for both next and next-server, but keeps standardjs/eslint for the .js files that are still there, we're gradually migrating to Typescript. **How does it work?** Before every commit (pre-commit) we execute the following `tslint` command: `tslint -c tslint.json 'packages/**/*.ts` **TSLint Rules** In order to avoid as much changes as possible I marked some rules as false. This way we can improve the linter but making sure this step will not break things. (see tslint.json) **Note** After merging this PR, you'll need to update your dependencies since it adds tslint to package.json
38 lines
946 B
TypeScript
38 lines
946 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]: string}
|
|
|
|
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)
|
|
}
|
|
}
|
|
}
|
|
}
|