Skip to content

Commit 922a7f4

Browse files
authored
Merge pull request #446 from nestjsx/fix/nest-version-bump
fix(crud): fixed custom routes params caused by NestJs v7 breaking ch…
2 parents 76dc6c2 + 78ac985 commit 922a7f4

8 files changed

+1049
-752
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## [4.4.2] - 2020-03-17
2+
3+
### Bug Fixes
4+
5+
- **crud** fixed custom routes params caused by NestJs v7 breaking changes ([#443](https://github.com/nestjsx/crud/issues/443))
6+
17
## [4.4.1] - 2019-12-28
28

39
### Bug Fixes
@@ -111,6 +117,7 @@
111117

112118
- several fixes
113119

120+
[4.4.2]: https://github.com/nestjsx/crud/compare/v4.4.1...v4.4.2
114121
[4.4.1]: https://github.com/nestjsx/crud/compare/v4.4.0...v4.4.1
115122
[4.4.0]: https://github.com/nestjsx/crud/compare/v4.3.0...v4.4.0
116123
[4.3.0]: https://github.com/nestjsx/crud/compare/v4.2.0...v4.3.0

package.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -53,16 +53,16 @@
5353
"peerDependencies": {},
5454
"optionalDependencies": {},
5555
"dependencies": {
56-
"@nestjs/common": "6.10.10",
57-
"@nestjs/core": "6.10.10",
58-
"@nestjs/platform-express": "6.10.10",
59-
"@nestjs/swagger": "4.0.9",
60-
"@nestjs/testing": "6.10.10",
61-
"@nestjs/typeorm": "6.2.0",
56+
"@nestjs/common": "7.0.3",
57+
"@nestjs/core": "7.0.3",
58+
"@nestjs/platform-express": "7.0.3",
59+
"@nestjs/swagger": "4.4.0",
60+
"@nestjs/testing": "7.0.3",
61+
"@nestjs/typeorm": "7.0.0",
6262
"@nuxtjs/opencollective": "0.2.2",
6363
"@types/jest": "24.0.18",
6464
"@types/node": "12.7.5",
65-
"@types/qs": "^6.5.3",
65+
"@types/qs": "6.5.3",
6666
"@types/supertest": "2.0.8",
6767
"class-transformer": "0.2.3",
6868
"class-validator": "0.10.0",
@@ -80,7 +80,7 @@
8080
"pg": "7.12.1",
8181
"prettier": "1.18.2",
8282
"pretty-quick": "1.11.1",
83-
"qs": "^6.8.0",
83+
"qs": "6.8.0",
8484
"redis": "2.8.0",
8585
"reflect-metadata": "0.1.13",
8686
"rimraf": "3.0.0",

packages/crud/src/crud/reflection.helper.ts

+9-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ import {
77
PATH_METADATA,
88
ROUTE_ARGS_METADATA,
99
} from '@nestjs/common/constants';
10+
import { ArgumentsHost } from '@nestjs/common';
11+
import { isFunction } from '@nestjsx/util';
1012

1113
import { BaseRoute, MergedCrudOptions, AuthOptions } from '../interfaces';
1214
import { BaseRouteName } from '../types';
@@ -54,7 +56,7 @@ export class R {
5456
return {
5557
[`${paramtype}${CUSTOM_ROUTE_AGRS_METADATA}:${index}`]: {
5658
index,
57-
factory: (_, req) => req[paramtype],
59+
factory: (_, ctx) => R.getContextRequest(ctx)[paramtype],
5860
data,
5961
pipes,
6062
},
@@ -171,4 +173,10 @@ export class R {
171173
static getParsedBody(func: Function): any {
172174
return R.get(PARSED_BODY_METADATA, func);
173175
}
176+
177+
static getContextRequest(ctx: ArgumentsHost): any {
178+
return isFunction(ctx.switchToHttp)
179+
? ctx.switchToHttp().getRequest()
180+
: /* istanbul ignore next */ ctx;
181+
}
174182
}
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
import { createParamDecorator } from '@nestjs/common';
22

33
import { PARSED_CRUD_REQUEST_KEY } from '../constants';
4+
import { R } from '../crud/reflection.helper';
45

56
export const ParsedRequest = createParamDecorator(
6-
(_, req): ParameterDecorator => {
7-
return req[PARSED_CRUD_REQUEST_KEY];
7+
(_, ctx): ParameterDecorator => {
8+
return R.getContextRequest(ctx)[PARSED_CRUD_REQUEST_KEY];
89
},
910
);

packages/crud/test/crud.decorator.base.spec.ts

-4
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,6 @@ describe('#crud', () => {
109109
.send(send)
110110
.end((_, res) => {
111111
expect(res.status).toEqual(400);
112-
expect(res.body.message[0].property).toBe('age');
113112
done();
114113
});
115114
});
@@ -147,7 +146,6 @@ describe('#crud', () => {
147146
.send(send)
148147
.end((_, res) => {
149148
expect(res.status).toEqual(400);
150-
expect(res.body.message[0].property).toBe('bulk');
151149
done();
152150
});
153151
});
@@ -178,7 +176,6 @@ describe('#crud', () => {
178176
.send(send)
179177
.end((_, res) => {
180178
expect(res.status).toEqual(400);
181-
expect(res.body.message[0].property).toBe('id');
182179
done();
183180
});
184181
});
@@ -209,7 +206,6 @@ describe('#crud', () => {
209206
.send(send)
210207
.end((_, res) => {
211208
expect(res.status).toEqual(400);
212-
expect(res.body.message[0].property).toBe('id');
213209
done();
214210
});
215211
});

packages/crud/test/crud.decorator.override.spec.ts

-1
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,6 @@ describe('#crud', () => {
126126
.send(send)
127127
.end((_, res) => {
128128
expect(res.status).toEqual(400);
129-
expect(res.body.message[0].property).toBe('bulk');
130129
done();
131130
});
132131
});

packages/crud/test/crud.dto.options.spec.ts

-2
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ describe('#crud', () => {
6868
.send(send)
6969
.end((_, res) => {
7070
expect(res.status).toEqual(400);
71-
expect(res.body.message[0].property).toBe('age');
7271
done();
7372
});
7473
});
@@ -99,7 +98,6 @@ describe('#crud', () => {
9998
.send(send)
10099
.end((_, res) => {
101100
expect(res.status).toEqual(400);
102-
expect(res.body.message[0].property).toBe('email');
103101
done();
104102
});
105103
});

0 commit comments

Comments
 (0)