-
Notifications
You must be signed in to change notification settings - Fork 154
Expand file tree
/
Copy pathmapping.decorators.ts
More file actions
204 lines (187 loc) · 5.54 KB
/
mapping.decorators.ts
File metadata and controls
204 lines (187 loc) · 5.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
import { Rule, rulesRegistry } from './mapping.highlevel'
import { rule } from './mapping.rulesfactories'
/**
* Class Decorator Factory that enables the Neo4j Driver to map result records to this class
*
* @returns {Function} Class Decorator
*/
function mappedClass () {
return (_: any, context: any) => {
rulesRegistry[context.name] = context.metadata
}
}
/**
* Property Decorator Factory that enables the Neo4j Driver to map this property to a boolean.
*
* @param {Rule} config
* @returns {Function} Property Decorator
*/
function booleanProperty (config?: Rule) {
return (_: any, context: any) => {
context.metadata[context.name] = rule.asBoolean(config)
}
}
/**
* Property Decorator Factory that enables the Neo4j Driver to map this property to a string.
*
* @param {Rule} config
* @returns {Function} Property Decorator
*/
function stringProperty (config?: Rule) {
return (_: any, context: any) => {
context.metadata[context.name] = rule.asString(config)
}
}
/**
* Property Decorator Factory that enables the Neo4j Driver to map this property to a number.
*
* @param {Rule & { acceptBigInt?: boolean }} config
* @returns {Function} Property Decorator
*/
function numberProperty (config?: Rule & { acceptBigInt?: boolean }) {
return (_: any, context: any) => {
context.metadata[context.name] = rule.asNumber(config)
}
}
/**
* Property Decorator Factory that enables the Neo4j Driver to map this property to a BigInt.
*
* @param {Rule & { acceptNumber?: boolean }} config
* @returns {Function} Property Decorator
*/
function bigIntProperty (config?: Rule & { acceptNumber?: boolean }) {
return (_: any, context: any) => {
context.metadata[context.name] = rule.asBigInt(config)
}
}
/**
* Property Decorator Factory that enables the Neo4j Driver to map this property to a Node.
*
* @param {Rule} config
* @returns {Function} Property Decorator
*/
function nodeProperty (config?: Rule) {
return (_: any, context: any) => {
context.metadata[context.name] = rule.asNode(config)
}
}
/**
* Property Decorator Factory that enables the Neo4j Driver to map this property to a Relationship.
*
* @param {Rule} config
* @returns {Function} Property Decorator
*/
function relationshipProperty (config?: Rule) {
return (_: any, context: any) => {
context.metadata[context.name] = rule.asRelationship(config)
}
}
/**
* Property Decorator Factory that enables the Neo4j Driver to map this property to a Path.
*
* @param {Rule} config
* @returns {Function} Property Decorator
*/
function pathProperty (config?: Rule) {
return (_: any, context: any) => {
context.metadata[context.name] = rule.asPath(config)
}
}
/**
* Property Decorator Factory that enables the Neo4j Driver to map this property to a Point.
*
* @param {Rule} config
* @returns {Function} Property Decorator
*/
function pointProperty (config?: Rule) {
return (_: any, context: any) => {
context.metadata[context.name] = rule.asPoint(config)
}
}
/**
* Property Decorator Factory that enables the Neo4j Driver to map this property to a Duration.
*
* @param {Rule} config
* @returns {Function} Property Decorator
*/
function durationProperty (config?: Rule & { stringify?: boolean }) {
return (_: any, context: any) => {
context.metadata[context.name] = rule.asDuration(config)
}
}
/**
* Property Decorator Factory that enables the Neo4j Driver to map this property to a List
*
* @param {Rule & { apply?: Rule }} config
* @returns {Function} Property Decorator
*/
function listProperty (config?: Rule & { apply?: Rule }) {
return (_: any, context: any) => {
context.metadata[context.name] = rule.asList({ apply: { ...context.metadata[context.name] }, ...config })
}
}
/**
* Property Decorator Factory that enables the Neo4j Driver to map this property to a Vector
*
* @param {Rule & { asTypedList?: boolean }} config
* @returns {Function} Property Decorator
*/
function vectorProperty (config?: Rule & { asTypedList?: boolean }) {
return (_: any, context: any) => {
context.metadata[context.name] = rule.asVector(config)
}
}
/**
* Property Decorator Factory that sets this property to optional.
* NOTE: Should be put above a type decorator.
*
* @param {Rule} config
* @returns {Function} Property Decorator
*/
function optionalProperty () {
return (_: any, context: any) => {
context.metadata[context.name] = { optional: true, ...context.metadata[context.name] }
}
}
/**
* Property Decorator Factory that sets a custom parameter name to map this property to.
* NOTE: Should be put above a type decorator.
*
* @param {Rule} config
* @returns {Function} Property Decorator
*/
function mapPropertyFromName (name: string) {
return (_: any, context: any) => {
context.metadata[context.name] = { from: name, ...context.metadata[context.name] }
}
}
/**
* Property Decorator Factory that sets the Neo4j Driver to convert this property to another type.
* NOTE: Should be put above a type decorator of type Node or Relationship.
*
* @param {Rule} config
* @returns {Function} Property Decorator
*/
function convertPropertyToType (type: any) {
return (_: any, context: any) => {
context.metadata[context.name] = { convert: (node: any) => node.as(type), ...context.metadata[context.name] }
}
}
const forExport = {
booleanProperty,
stringProperty,
numberProperty,
bigIntProperty,
nodeProperty,
relationshipProperty,
pathProperty,
pointProperty,
durationProperty,
listProperty,
vectorProperty,
optionalProperty,
mapPropertyFromName,
convertPropertyToType,
mappedClass
}
export default forExport