1
1
import { Response , UpdateRequest } from "./Http" ;
2
+ import { isNotField } from "./lib/isNotField" ;
2
3
import { isObject } from "./lib/isObject" ;
3
4
4
5
export type UpdateOptions = {
5
6
skipFields ?: string [ ] ; //i.e. Json fields throw error if null is used in update, they would expect {} instead
6
7
allowFields ?: string [ ] ; //fields that will not be checked if it's a relationship or not
8
+ set ?: {
9
+ [ key : string ] : string ;
10
+ } ;
7
11
} ;
8
12
9
13
export const updateHandler = async < T extends { update : Function } > (
@@ -12,10 +16,14 @@ export const updateHandler = async <T extends { update: Function }>(
12
16
table : T ,
13
17
options ?: UpdateOptions
14
18
) => {
15
- //TODO: remove underscored fields
16
- //Remove relations, allow nested updates one day
19
+ const { id } = req . body . params ;
20
+
17
21
const data = Object . entries ( req . body . params . data ) . reduce (
18
22
( fields , [ key , value ] ) => {
23
+ if ( isNotField ( key ) ) return fields ;
24
+
25
+ //TODO: move this into `isNotField`
26
+ //Remove relations, allow nested updates one day
19
27
if (
20
28
( ! isObject ( value ) && ! options ?. skipFields ?. includes ( key ) ) ||
21
29
options ?. allowFields ?. includes ( key )
@@ -27,8 +35,25 @@ export const updateHandler = async <T extends { update: Function }>(
27
35
{ }
28
36
) ;
29
37
38
+ // transfor an array to a connect (many-to-many)
39
+ // e.g. (handler)
40
+ // updateHandler(req, res, prismaClient.post, {
41
+ // set: {
42
+ // tags: "id",
43
+ // },
44
+ // });
45
+ // (data) tags: [1, 2, 3] => tags: { set: [{id: 1}, {id: 2}, {id: 3}]} }
46
+ Object . entries ( data ) . forEach ( ( [ prop , values ] ) => {
47
+ const foreignConnectKey = options ?. set ?. [ prop ] ;
48
+ if ( foreignConnectKey && Array . isArray ( values ) ) {
49
+ data [ prop ] = {
50
+ set : values . map ( ( value ) => ( { [ foreignConnectKey ] : value } ) ) ,
51
+ } ;
52
+ }
53
+ } ) ;
54
+
30
55
const updated = await table . update ( {
31
- where : { id : + req . body . params . id } ,
56
+ where : { id } ,
32
57
data,
33
58
} ) ;
34
59
0 commit comments