Skip to content

Commit b9dd721

Browse files
authored
Merge pull request #3 from triyanox/fix/fix-path-type
Fix/fix path type
2 parents 1647492 + dfa2ac7 commit b9dd721

File tree

4 files changed

+18
-15
lines changed

4 files changed

+18
-15
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @triyanox/next-middleware
22

3+
## 0.1.4
4+
5+
### Patch Changes
6+
7+
- fix: fix the `Path<T>` for `RuleFunction` #2
8+
39
## 0.1.3
410

511
### Patch Changes

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ const isAdmin: RuleFunction<Data, typeof routes> = ({ data, next, redirect }) =>
8080
}
8181
};
8282

83-
const isOwnWorkspace: RuleFunction<Data, typeof routes, '/dashboard/workspaces/[workspaceId]/*'> = ({
83+
const isOwnWorkspace: RuleFunction<Data, typeof routes, '/dashboard/workspaces/[workspaceId]'> = ({
8484
data,
8585
next,
8686
redirect,

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@triyanox/next-middleware",
3-
"version": "0.1.3",
3+
"version": "0.1.4",
44
"description": "The cleanest way to protect your Next.js routes with a middleware",
55
"license": "MIT",
66
"publishConfig": {

src/types.ts

+10-13
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
1-
import { NextRequest, NextResponse } from 'next/server';
1+
import { NextRequest, NextResponse, NextFetchEvent } from 'next/server';
22

33
type Path<R extends string> = R | (R extends '/' ? `${R}*` : `${R}/*`);
4-
54
/**
65
* The type of the routes object
76
*/
8-
type Routes = Record<string, { path: string }>;
9-
7+
type Routes = Record<
8+
string,
9+
{
10+
path: string;
11+
}
12+
>;
1013
/**
1114
* Extracts the parameters from a dynamic path
1215
*/
@@ -15,40 +18,35 @@ type ExtractParams<R extends string> = string extends R
1518
: R extends `${infer _Start}/[${infer Param}]${infer _Rest}`
1619
? [Param, ...ExtractParams<_Rest>]
1720
: [];
18-
1921
/**
2022
* Checks if a path has parameters
2123
*/
2224
type HasParams<R extends string> = ExtractParams<R> extends [] ? false : true;
23-
2425
/**
2526
* Extracts the parameters from a dynamic path if it has any
2627
*/
2728
type ParamsObject<R extends string> =
2829
HasParams<R> extends true ? Record<ExtractParams<R>[number], string> : never;
29-
3030
/**
3131
* This is the type of the function that will be used to define the rules for each path
3232
*/
3333
type RuleFunction<
3434
T,
3535
RS extends Routes,
36-
R extends Path<keyof RS & string> = keyof RS & string,
36+
R extends keyof RS & string = keyof RS & string,
3737
> = (options: {
3838
data: T;
3939
path: R;
4040
params: ParamsObject<R>;
4141
next: () => void;
4242
redirect: (path: keyof RS & string) => void;
4343
}) => Promise<void> | void;
44-
4544
/**
4645
* Authorization rules for each path
4746
*/
4847
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>[]>
5049
>;
51-
5250
type BaseOptions<R extends Routes, T> = {
5351
/**
5452
* Function to fetch data so that it can be used in the authorization rules
@@ -57,7 +55,7 @@ type BaseOptions<R extends Routes, T> = {
5755
/**
5856
* Authorization rules for each path
5957
*/
60-
rules: AuthRules<T, R, keyof R & string>;
58+
rules: AuthRules<T, R, any>;
6159
/**
6260
* Paths that requiring authentication
6361
* Those paths will be the root paths of all the existing paths
@@ -68,7 +66,6 @@ type BaseOptions<R extends Routes, T> = {
6866
*/
6967
onError?: (req: NextRequest) => Promise<NextResponse> | NextResponse;
7068
};
71-
7269
type MiddlewareOptions<R extends Routes, T> = BaseOptions<R, T>;
7370

7471
export type {

0 commit comments

Comments
 (0)