1
- import { NextRequest , NextResponse } from 'next/server' ;
1
+ import { NextRequest , NextResponse , NextFetchEvent } from 'next/server' ;
2
2
3
3
type Path < R extends string > = R | ( R extends '/' ? `${R } *` : `${R } /*`) ;
4
-
5
4
/**
6
5
* The type of the routes object
7
6
*/
8
- type Routes = Record < string , { path : string } > ;
9
-
7
+ type Routes = Record <
8
+ string ,
9
+ {
10
+ path : string ;
11
+ }
12
+ > ;
10
13
/**
11
14
* Extracts the parameters from a dynamic path
12
15
*/
@@ -15,40 +18,35 @@ type ExtractParams<R extends string> = string extends R
15
18
: R extends `${infer _Start } /[${infer Param } ]${infer _Rest } `
16
19
? [ Param , ...ExtractParams < _Rest > ]
17
20
: [ ] ;
18
-
19
21
/**
20
22
* Checks if a path has parameters
21
23
*/
22
24
type HasParams < R extends string > = ExtractParams < R > extends [ ] ? false : true ;
23
-
24
25
/**
25
26
* Extracts the parameters from a dynamic path if it has any
26
27
*/
27
28
type ParamsObject < R extends string > =
28
29
HasParams < R > extends true ? Record < ExtractParams < R > [ number ] , string > : never ;
29
-
30
30
/**
31
31
* This is the type of the function that will be used to define the rules for each path
32
32
*/
33
33
type RuleFunction <
34
34
T ,
35
35
RS extends Routes ,
36
- R extends Path < keyof RS & string > = keyof RS & string ,
36
+ R extends keyof RS & string = keyof RS & string ,
37
37
> = ( options : {
38
38
data : T ;
39
39
path : R ;
40
40
params : ParamsObject < R > ;
41
41
next : ( ) => void ;
42
42
redirect : ( path : keyof RS & string ) => void ;
43
43
} ) => Promise < void > | void ;
44
-
45
44
/**
46
45
* Authorization rules for each path
47
46
*/
48
47
type AuthRules < T , RS extends Routes , R extends keyof RS & string > = Partial <
49
- Record < Path < R > , RuleFunction < T , RS , R > [ ] >
48
+ Record < Path < keyof RS & string > , RuleFunction < T , RS , R > [ ] >
50
49
> ;
51
-
52
50
type BaseOptions < R extends Routes , T > = {
53
51
/**
54
52
* Function to fetch data so that it can be used in the authorization rules
@@ -57,7 +55,7 @@ type BaseOptions<R extends Routes, T> = {
57
55
/**
58
56
* Authorization rules for each path
59
57
*/
60
- rules : AuthRules < T , R , keyof R & string > ;
58
+ rules : AuthRules < T , R , any > ;
61
59
/**
62
60
* Paths that requiring authentication
63
61
* Those paths will be the root paths of all the existing paths
@@ -68,7 +66,6 @@ type BaseOptions<R extends Routes, T> = {
68
66
*/
69
67
onError ?: ( req : NextRequest ) => Promise < NextResponse > | NextResponse ;
70
68
} ;
71
-
72
69
type MiddlewareOptions < R extends Routes , T > = BaseOptions < R , T > ;
73
70
74
71
export type {
0 commit comments