-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmod.ts
481 lines (440 loc) · 15.1 KB
/
mod.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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
/**
* @module SyncEngine
* @description SyncEngine is a class that helps you sync data between two arrays of objects.
*/
export class SyncEngine<
Src extends Record<any, any>[],
Dst extends Record<any, any>[]
> {
private debugMode: boolean = false;
private src: Record<keyof Src[number], any>[];
private dst: Record<keyof Dst[number], any>[];
private keys: string[];
private mappings: Array<
{
dstField: keyof Dst[number];
isKey?: boolean;
/** custom function to compare rows */
compareFn?: (src: Dst[number], dst: Dst[number]) => boolean;
/** this function will generate value for specific fields that are not straightforward one-to-one mapping and need to put in different format, like setting lookup fields in dynamic360 web api. the value goes to return value of getChanges function, updated[number].overrides property. */
updateVal?: (row: Dst[number]) => { [key: string]: any };
/** this function will generate value for specific fields that are not straightforward one-to-one mapping and need to put in different format, like setting lookup fields in dynamic360 web api. the value goes to return value of getChanges function, inserted[number].overrides property. */
insertVal?: (row: Dst[number]) => { [key: string]: any };
} & (
| {
srcField: keyof Src[number];
}
| {
/** function to generate dst value */
fn: (row: Src[number]) => any | Promise<any>;
}
)
> = [];
private syncFns: {
insertFn?: (row: Record<keyof Dst[number], any>) => void | Promise<void>;
deleteFn?: (row: Record<keyof Dst[number], any>) => void | Promise<void>;
updateFn?: (
row: Record<keyof Dst[number], any>,
fields: {
fieldName: keyof Dst[number];
oldValue: any;
newValue: any;
}[]
) => void | Promise<void>;
} = {};
constructor({
debugMode,
dst,
src,
mappings,
syncFns,
}: {
debugMode?: boolean;
src: Record<keyof Src[number], any>[];
dst: Record<keyof Dst[number], any>[];
mappings: Array<
{
dstField: keyof Dst[number];
isKey?: boolean;
/** if it returns false, it means we have a change */
compareFn?: (src: Dst[number], dst: Dst[number]) => boolean;
/** this function will generate value for specific fields that are not straightforward one-to-one mapping and need to put in different format, like setting lookup fields in dynamic360 web api. the value goes to return value of getChanges function, updated[number].overrides property. */
updateVal?: (row: Dst[number]) => { [key: string]: any };
/** this function will generate value for specific fields that are not straightforward one-to-one mapping and need to put in different format, like setting lookup fields in dynamic360 web api. the value goes to return value of getChanges function, inserted[number].overrides property. */
insertVal?: (row: Dst[number]) => { [key: string]: any };
} & (
| {
srcField: keyof Src[number];
}
| {
/** function to generate dst value */
fn: (row: Src[number]) => any | Promise<any>;
}
)
>;
syncFns?: {
insertFn?: (row: Record<keyof Dst[number], any>) => any | Promise<any>;
deleteFn?: (row: Record<keyof Dst[number], any>) => any | Promise<any>;
updateFn?: (
row: Record<keyof Dst[number], any>,
fields: {
fieldName: keyof Dst[number];
oldValue: any;
newValue: any;
}[]
) => any | Promise<any>;
};
}) {
this.debugMode = debugMode || false;
this.src = src;
this.dst = dst;
this.keys = mappings
.filter((m) => m.isKey)
.map((m) => m.dstField as string);
this.mappings = mappings;
this.syncFns = syncFns || {};
}
public async mapFields(): Promise<Record<keyof Dst[number], any>[]> {
type MappedRow = Record<keyof Dst[number], any>;
const mappedData: MappedRow[] = [];
for (const srcRow of this.src) {
const dstRow: MappedRow = {} as MappedRow;
for (const mapping of this.mappings) {
if ("srcField" in mapping) {
dstRow[mapping.dstField] = srcRow[mapping.srcField];
} else {
const { dstField, fn } = mapping;
// check if fn async or not, then call it
if (fn.constructor.name === "AsyncFunction") {
dstRow[dstField] = await fn(srcRow);
} else {
dstRow[dstField] = fn(srcRow);
}
}
}
mappedData.push(dstRow);
}
return mappedData;
}
private compareValues(value1: any, value2: any) {
// if (this.debugMode) console.log(`comparing: `, value1, value2);
if (typeof value1 !== typeof value2) {
return false; // Different types, cannot be equal
}
switch (typeof value1) {
case "number":
case "string":
case "boolean":
return value1 === value2;
case "object":
if (value1 instanceof Date && value2 instanceof Date) {
return value1.getTime() === value2.getTime();
}
// For other objects (including arrays), shallow comparison
return JSON.stringify(value1) === JSON.stringify(value2);
default:
// Handle other types (undefined, function, etc.)
return value1 === value2;
}
}
public async getChanges(): Promise<{
inserted: {
row: Record<keyof Dst[number], any>;
overrides?: {
fieldName: keyof Dst[number];
value: { [key: string]: any };
}[];
srcRecord?: Record<keyof Dst[number], any>;
dstRecord?: Record<keyof Dst[number], any>;
}[];
deleted: Record<keyof Dst[number], any>[];
updated: {
row: Record<keyof Dst[number], any>;
overrides?: {
fieldName: keyof Dst[number];
value: { [key: string]: any };
}[];
fields: {
fieldName: keyof Dst[number];
oldValue: any;
newValue: any;
}[];
srcRecord?: Record<keyof Dst[number], any>;
dstRecord?: Record<keyof Dst[number], any>;
}[];
}> {
const deleted = [];
const inserted = [];
const updated = [];
const mappedData = await this.mapFields();
// Find deleted records, look for the key-values in this.dst that do not exist in mappedData
for (const dstRecord of this.dst) {
const dstKey = this.keys.map((key) => dstRecord[key]).join("_");
const exists = mappedData.some((srcRecord) => {
const srcKey = this.keys.map((key) => srcRecord[key]).join("_");
return srcKey === dstKey;
});
if (!exists) {
deleted.push(dstRecord);
}
}
// Find inserted records, look for the key-values in mappedData that do not exist in this.dst
for (const srcRecord of mappedData) {
const srcKey = this.keys.map((key) => srcRecord[key]).join("_");
const exists = this.dst.some((dstRecord) => {
const dstKey = this.keys.map((key) => dstRecord[key]).join("_");
return dstKey === srcKey;
});
if (!exists) {
const overrides: {
fieldName: keyof Dst[number];
value: any;
}[] = [];
for (const [key, value] of Object.entries(srcRecord)) {
const insertValFn = this.mappings.find(
(m) => m.dstField === key
)?.insertVal;
if (insertValFn) {
const insertedValue = insertValFn(srcRecord);
overrides.push({
fieldName: key,
value: insertedValue,
});
}
}
const insertInfo: {
row: Record<keyof Dst[number], any>;
overrides?: {
fieldName: keyof Dst[number];
value: any;
}[];
srcRecord?: Record<keyof Dst[number], any>;
dstRecord?: Record<keyof Dst[number], any>;
} = {
row: srcRecord,
overrides: overrides.length > 0 ? overrides : undefined,
};
if (this.debugMode) {
insertInfo.srcRecord = srcRecord;
insertInfo.dstRecord = this.dst.find((dstRecord) => {
const dstKey = this.keys.map((key) => dstRecord[key]).join("_");
return dstKey === srcKey;
});
}
inserted.push(insertInfo);
}
}
// Find updated records
for (const srcRecord of mappedData) {
const srcKey = this.keys.map((key) => srcRecord[key]).join("_");
const dstRecord = this.dst.find((dstRecord) => {
const dstKey = this.keys.map((key) => dstRecord[key]).join("_");
return dstKey === srcKey;
});
if (dstRecord) {
const fields: {
fieldName: keyof Dst[number];
oldValue: any;
newValue: any;
}[] = [];
const overrides: {
fieldName: keyof Dst[number];
value: any;
}[] = [];
for (const [key, srcValue] of Object.entries(srcRecord)) {
// check if compareFn exists
const compareFn = this.mappings.find(
(m) => "compareFn" in m && m.dstField === key
)?.compareFn;
if (compareFn) {
if (!compareFn(srcRecord, dstRecord)) {
fields.push({
fieldName: key,
oldValue: dstRecord[key],
newValue: srcValue,
});
}
} else if (!this.compareValues(dstRecord[key], srcValue)) {
fields.push({
fieldName: key,
oldValue: dstRecord[key],
newValue: srcValue,
});
}
const updateValFn = this.mappings.find(
(m) => m.dstField === key
)?.updateVal;
if (updateValFn) {
const updatedValue = updateValFn(srcRecord);
overrides.push({
fieldName: key,
value: updatedValue,
});
}
}
if (fields.length > 0 || (fields.length > 0 && overrides.length > 0)) {
const updateInfo: {
row: Record<keyof Dst[number], any>;
overrides?: {
fieldName: keyof Dst[number];
value: any;
}[];
fields: {
fieldName: keyof Dst[number];
oldValue: any;
newValue: any;
}[];
srcRecord?: Record<keyof Dst[number], any>;
dstRecord?: Record<keyof Dst[number], any>;
} = {
row: srcRecord,
fields,
overrides: overrides.length > 0 ? overrides : undefined,
};
if (this.debugMode) {
updateInfo.srcRecord = srcRecord;
updateInfo.dstRecord = this.dst.find((dstRecord) => {
const dstKey = this.keys.map((key) => dstRecord[key]).join("_");
return dstKey === srcKey;
});
}
updated.push(updateInfo);
}
}
}
return { inserted, deleted, updated };
}
public async sync(): Promise<{
inserts: any[] | null;
deletes: any[] | null;
updates: any[] | null;
}> {
const { inserted, deleted, updated } = await this.getChanges();
const results: {
inserts: any[] | null;
deletes: any[] | null;
updates: any[] | null;
} = {
inserts: null,
deletes: null,
updates: null,
};
if (this.syncFns.insertFn) {
const funcs = [];
for (const record of inserted) {
const { row, overrides } = record;
const finalRow = { ...row };
if (overrides) {
for (const { fieldName, value } of overrides) {
finalRow[fieldName] = value;
}
}
if (this.syncFns.insertFn.constructor.name === "AsyncFunction") {
funcs.push(this.syncFns.insertFn(finalRow));
} else {
funcs.push(Promise.resolve(this.syncFns.insertFn(finalRow)));
}
}
if (funcs.length > 0) {
results.inserts = await Promise.all(funcs);
}
}
if (this.syncFns.deleteFn) {
const funcs = [];
for (const record of deleted) {
if (this.syncFns.constructor.name === "AsyncFunction") {
funcs.push(this.syncFns.deleteFn(record));
} else {
funcs.push(Promise.resolve(this.syncFns.deleteFn(record)));
}
}
if (funcs.length > 0) {
results.deletes = await Promise.all(funcs);
}
}
if (this.syncFns.updateFn) {
const funcs = [];
for (const { row, fields } of updated) {
if (this.syncFns.constructor.name === "AsyncFunction") {
funcs.push(this.syncFns.updateFn(row, fields));
} else {
funcs.push(Promise.resolve(this.syncFns.updateFn(row, fields)));
}
}
if (funcs.length > 0) {
results.updates = await Promise.all(funcs);
}
}
return results;
}
}
// sample usage
// const src = [
// { id: 1, company: 1, firstName: "John", lastName: "Doe", age: null },
// { id: 1, company: 2, firstName: "John", lastName: "Doe", age: null },
// { id: 2, company: 1, firstName: "Jane", lastName: "Diana", age: null },
// { id: 4, company: 1, firstName: "Rid", lastName: "Lomba", age: 25 },
// { id: 5, company: 1, firstName: "Homa", lastName: "Shiri", age: 30 },
// ];
// const dst = [
// { id: 1, company: 1, FullName: "John Doe", bio: { age: null } },
// { id: 3, company: 1, FullName: "Doe Risko", bio: { age: 30 } },
// { id: 4, company: 1, FullName: "Fids Almo", bio: { age: 26 } },
// { id: 5, company: 1, FullName: "Homa Shiri", bio: { age: 30 } },
// ];
// const engine = new SyncEngine<typeof src, typeof dst>({
// src,
// dst,
// mappings: [
// {
// dstField: "FullName",
// updateVal: (row) => {
// return { FullName: `${row.company}-${row.id}` };
// },
// insertVal: (row) => {
// return { FullName: `${row.company}-${row.id}` };
// },
// fn: async (row) => {
// await new Promise((resolve) => setTimeout(resolve, 100));
// return `${row.firstName} ${row.lastName}`;
// },
// },
// { dstField: "id", isKey: true, srcField: "id" },
// { dstField: "company", isKey: true, fn: (row) => row.company },
// {
// dstField: "bio",
// compareFn(src, dst) {
// return src.bio.age === dst.bio.age;
// },
// fn: (row) => {
// return {
// age: row.age,
// };
// },
// },
// ],
// syncFns: {
// insertFn: async (row) => {
// await new Promise((resolve) => setTimeout(resolve, 500));
// return row.id;
// },
// deleteFn: (row) => {
// return row.id;
// },
// updateFn: async (row, fields) => {
// await new Promise((resolve) => setTimeout(resolve, 1000));
// return row.id;
// },
// },
// });
// // const mappings = await engine.mapFields();
// // console.log(mappings);
// const changes = await engine.getChanges();
// // console.log(JSON.stringify(changes, null, 2));
// // console.log("inserted:", changes.inserted);
// // console.log("updated:", changes.updated);
// // console.log("deleted:", changes.deleted);
// changes.updated.forEach((update) => {
// console.log(update);
// // update.overrides[0].value
// });