-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathswitchCasePropertyMappers.ts
187 lines (151 loc) · 5.54 KB
/
switchCasePropertyMappers.ts
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
import {
IModelPropertiesMapper,
IJsonPropertiesMapper,
TAnyKeyValueObject,
TJsonaModel, TJsonaRelationships,
SwitchCaseModelMapperOptionsType,
SwitchCaseJsonMapperOptionsType,
} from './JsonaTypes';
import {
ModelPropertiesMapper,
JsonPropertiesMapper,
RELATIONSHIP_NAMES_PROP,
} from './simplePropertyMappers';
import {
isPlainObject
} from './utils';
export class SwitchCaseModelMapper extends ModelPropertiesMapper implements IModelPropertiesMapper {
switchAttributes: boolean;
switchRelationships: boolean;
switchType: boolean;
switchChar: string;
regex: RegExp;
constructor(options?: SwitchCaseModelMapperOptionsType) {
super();
const {
switchAttributes = true,
switchRelationships = true,
switchType = true,
switchChar = '-',
} = options || {};
this.switchAttributes = switchAttributes;
this.switchRelationships = switchRelationships;
this.switchType = switchType;
this.switchChar = switchChar;
this.regex = new RegExp(/([a-z][A-Z0-9])/g);
}
getType(model: TJsonaModel) {
const type = super.getType(model);
if (!this.switchType || !type) {
return type;
}
return this.convertFromCamelCaseString(type);
}
getAttributes(model: TJsonaModel) {
const camelCasedAttributes = super.getAttributes(model);
if (!this.switchAttributes || !camelCasedAttributes) {
return camelCasedAttributes;
}
return this.convertFromCamelCase(camelCasedAttributes);
}
getRelationships(model: TJsonaModel) {
const camelCasedRelationships = super.getRelationships(model);
if (!this.switchRelationships || !camelCasedRelationships) {
return camelCasedRelationships;
}
return this.convertFromCamelCase(camelCasedRelationships);
}
private convertFromCamelCase(stuff: unknown) {
if (Array.isArray(stuff)) {
return stuff.map(item => this.convertFromCamelCase(item));
}
if(isPlainObject(stuff)) {
const converted = {};
Object.entries(stuff).forEach(([propName, value]) => {
const kebabName = this.convertFromCamelCaseString(propName);
converted[kebabName] = this.convertFromCamelCase(value);
})
return converted;
}
return stuff;
}
private convertFromCamelCaseString(camelCaseString: string) {
return camelCaseString.replace(this.regex, g => g[0] + this.switchChar + g[1].toLowerCase());
}
}
export class SwitchCaseJsonMapper extends JsonPropertiesMapper implements IJsonPropertiesMapper {
camelizeAttributes: boolean;
camelizeRelationships: boolean;
camelizeType: boolean;
camelizeMeta: boolean;
switchChar: string;
regex: RegExp;
constructor(options?: SwitchCaseJsonMapperOptionsType) {
super();
const {
camelizeAttributes = true,
camelizeRelationships = true,
camelizeType = true,
camelizeMeta = false,
switchChar = '-'
} = options || {};
this.camelizeAttributes = camelizeAttributes;
this.camelizeRelationships = camelizeRelationships;
this.camelizeType = camelizeType;
this.camelizeMeta = camelizeMeta;
this.switchChar = switchChar;
this.regex = new RegExp(`${this.switchChar}([a-z0-9])`, 'g');
}
createModel(type: string): TJsonaModel {
if (!this.camelizeType) {
return {type};
}
const camelizedType = this.convertToCamelCaseString(type);
return {type: camelizedType};
}
setAttributes(model: TJsonaModel, attributes: TAnyKeyValueObject) {
if (!this.camelizeAttributes) {
return super.setAttributes(model, attributes);
}
Object.assign(model, this.convertToCamelCase(attributes));
}
setMeta(model: TJsonaModel, meta: TAnyKeyValueObject) {
if (!this.camelizeMeta) {
return super.setMeta(model, meta);
}
model.meta = this.convertToCamelCase(meta);
}
setRelationships(model: TJsonaModel, relationships: TJsonaRelationships) {
// call super.setRelationships first, just for not to copy paste setRelationships logic
super.setRelationships(model, relationships);
if (!this.camelizeRelationships) {
return;
}
// then change relationship names case if needed
model[RELATIONSHIP_NAMES_PROP].forEach((kebabName, i) => {
const camelName = this.convertToCamelCaseString(kebabName);
if (camelName !== kebabName) {
model[camelName] = model[kebabName];
delete model[kebabName];
model[RELATIONSHIP_NAMES_PROP][i] = camelName;
}
});
}
private convertToCamelCase(stuff: unknown) {
if (Array.isArray(stuff)) {
return stuff.map(item => this.convertToCamelCase(item));
}
if(isPlainObject(stuff)) {
const converted = {};
Object.entries(stuff).forEach(([propName, value]) => {
const camelName = this.convertToCamelCaseString(propName);
converted[camelName] = this.convertToCamelCase(value);
});
return converted;
}
return stuff;
}
convertToCamelCaseString(notCamelCaseString: string) {
return notCamelCaseString.replace(this.regex, g => g[1].toUpperCase());
}
}