-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOnesyDiff.ts
373 lines (275 loc) · 10.4 KB
/
OnesyDiff.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
import is from '@onesy/utils/is';
import merge from '@onesy/utils/merge';
import stringify from '@onesy/utils/stringify';
export type IDiffItemAction = 'add' | 'a' | 'remove' | 'r';
export type IDiffItem = [IDiffItemAction, number, string?];
export interface IDiff {
items: Array<IDiffItemAction | number | string>;
}
export interface IInit {
method?: (value: any) => string;
}
export interface IItemize {
method?: (value: string) => Array<string>;
}
export interface IEqual {
method: (value: string, value1: string) => boolean;
}
export interface IJoin {
method?: (value: Array<string>) => string;
}
export type IDiffMatrixItem = [number?, number?, number?];
export interface IOutput {
compressed?: boolean;
}
export interface IOptions {
init?: IInit;
itemize?: IItemize;
equal?: IEqual;
join?: IJoin;
output?: IOutput;
}
export type TDiffVariants = 'default' | 'word' | 'line' | 'sentence' | 'json';
export type IOPTIONS = {
[p in TDiffVariants]?: IOptions;
};
const OPTIONS = {
default: {
init: { method: (value: any): string => String(value) },
itemize: { method: (value: string): Array<string> => value.split('').filter(Boolean) },
join: { method: (value: Array<string>): string => value.join('') },
equal: { method: (value: string, value1: string): boolean => value === value1 },
},
word: {
init: { method: (value: any): string => String(value) },
itemize: { method: (value: string): Array<string> => value.split(/\s|\b/).filter(Boolean) },
join: { method: (value: Array<string>): string => value.join(' ') },
},
line: {
init: { method: (value: any): string => String(value) },
itemize: {
method: (value: string): Array<string> => {
const values = value.split(/(\n|\r\n)/);
const newValues = [];
for (let i = 0; i < values.length; i++) {
if (i % 2) newValues[newValues.length - 1] += values[i];
else newValues.push(values[i]);
}
return newValues;
},
},
join: { method: (value: Array<string>): string => value.join('') },
},
sentence: {
init: { method: (value: any): string => String(value) },
itemize: { method: (value: string): Array<string> => value.split(/(\S.*?[.!?])(?=\s +|$)/).filter(Boolean) },
join: { method: (value: Array<string>): string => value.join('') },
},
};
export const optionsDefault: IOptions = {
...OPTIONS.default,
output: {
compressed: true
}
};
class OnesyDiff {
public options: IOptions;
public static get onesydiff(): OnesyDiff { return new OnesyDiff(); }
public static get word(): OnesyDiff { return new OnesyDiff(OnesyDiff.OPTIONS.word); }
public static get line(): OnesyDiff { return new OnesyDiff(OnesyDiff.OPTIONS.line); }
public static get sentence(): OnesyDiff { return new OnesyDiff(OnesyDiff.OPTIONS.sentence); }
public static get json(): OnesyDiff {
const options = OnesyDiff.OPTIONS.line;
options.init.method = (value: any): string => stringify(value);
return new OnesyDiff(options);
}
public static get OPTIONS(): IOPTIONS {
return OPTIONS;
}
public static updateGroups(diff: IDiff): any[] {
const updateGroups = [];
let previousGroup = [];
let lastGroupIsRemove = false;
const items = [];
for (let i = 0; i < diff.items.length;) {
if (['r', 'remove'].indexOf(diff.items[i] as string) > -1) {
items.push(diff.items.slice(i, i + 2));
i += 2;
}
else {
items.push(diff.items.slice(i, i + 3));
i += 3;
}
}
diff.items = items;
diff.items.forEach((item, index) => {
const itemFollowing = diff.items[index + 1];
const action = item[0];
const actionFollow = itemFollowing && itemFollowing[0];
if (['r', 'remove'].indexOf(action) > -1 && ['r', 'remove'].indexOf(actionFollow) > -1 && !lastGroupIsRemove) {
if (previousGroup.length) updateGroups.push(previousGroup);
lastGroupIsRemove = true;
previousGroup = [];
}
if (['a', 'add'].indexOf(action) > -1 && lastGroupIsRemove) {
if (previousGroup.length) updateGroups.push(previousGroup);
lastGroupIsRemove = false;
previousGroup = [];
}
previousGroup.push(item);
});
if (previousGroup.length) updateGroups.push(previousGroup);
return updateGroups;
}
public constructor(options: IOptions = optionsDefault) {
this.options = merge(options, optionsDefault);
}
public diff(value_: any, value1_: any, options_: IOptions = {}): IDiff {
const options = merge(options_, this.options);
const value = options.init.method(value_);
const value1 = options.init.method(value1_);
if (is('string', value) && is('string', value1)) {
const valueArrayi = options.itemize.method(value1);
const valueArrayj = options.itemize.method(value);
const lengthi = valueArrayi.length;
const lengthj = valueArrayj.length;
const lengthMax = Math.max(lengthi, lengthj);
const matrix: Array<Array<IDiffMatrixItem>> = [];
const lcs = [];
const findItem = (item: IDiffMatrixItem): IDiffMatrixItem => {
if (item) {
let [i, j] = item.slice(1) as [number, number];
let left = (matrix[i] && matrix[i][j - 1]) as unknown as IDiffMatrixItem;
let top = (matrix[i - 1] && matrix[i - 1][j]) as unknown as IDiffMatrixItem;
let topLeft = (matrix[i - 1] && matrix[i - 1][j - 1]) as unknown as IDiffMatrixItem;
if (
(left && top) &&
(left[0] !== item[0] && top[0] !== item[0])
) {
// Enter the new upper left matrix part
[i, j] = topLeft.slice(1) as [number, number];
}
let item_: IDiffMatrixItem;
while (!item_) {
left = (matrix[i] && matrix[i][j - 1]) as unknown as IDiffMatrixItem;
top = (matrix[i - 1] && matrix[i - 1][j]) as unknown as IDiffMatrixItem;
topLeft = (matrix[i - 1] && matrix[i - 1][j - 1]) as unknown as IDiffMatrixItem;
if (left && (left[0] === matrix[i][j][0])) {
[i, j] = left.slice(1) as [number, number];
}
else if (top && (top[0] === matrix[i][j][0])) {
[i, j] = top.slice(1) as [number, number];
}
else {
item_ = matrix[i][j];
break;
}
}
return item_;
}
};
const addItem = (i: number, j: number): IDiffMatrixItem => {
const left = (matrix[i] && matrix[i][j - 1]) as unknown as IDiffMatrixItem;
const top = (matrix[i - 1] && matrix[i - 1][j]) as unknown as IDiffMatrixItem;
const topLeft = (matrix[i - 1] && matrix[i - 1][j - 1]) as unknown as IDiffMatrixItem;
const match = options.equal.method(valueArrayi[i], valueArrayj[j]);
let item = 0;
if (match) item = (topLeft ? topLeft[0] : 0) + 1;
else item = Math.max((top ? top[0] : 0), (left ? left[0] : 0));
const item_: IDiffMatrixItem = [item, i, j];
return item_;
};
// Make a matrix
for (let i = 0; i < lengthi; i++) {
matrix.push([]);
for (let j = 0; j < lengthj; j++) {
matrix[i][j] = addItem(i, j);
}
}
// Make a lcs
const matrixItem = matrix[lengthi - 1][lengthj - 1];
if (matrixItem && matrixItem[0]) {
let item = matrixItem;
let i = lengthi - 1;
let j = lengthj - 1;
const left = (matrix[i] && matrix[i][j - 1]) as unknown as IDiffMatrixItem;
const top = (matrix[i - 1] && matrix[i - 1][j]) as unknown as IDiffMatrixItem;
const topLeft = (matrix[i - 1] && matrix[i - 1][j - 1]) as unknown as IDiffMatrixItem;
if (
(left && top) &&
(left[0] !== item[0] && top[0] !== item[0])
) {
lcs.push(item);
// Enter the new upper left matrix part
[i, j] = topLeft.slice(1) as [number, number];
}
while (item && (item[1] !== 0 && item[2] !== 0)) {
item = findItem(item) as any;
lcs.push(item);
}
}
// Sort based on value lcs
lcs.sort((a, b) => a[0] - b[0]);
// Make a diff items
const diff = {
items: [],
};
for (let i = 0; i < lengthMax; i++) {
const iItem = lcs.find(item => item[1] === i);
const jItem = lcs.find(item => item[2] === i);
if (!jItem && i < lengthj) diff.items.push(this.action('remove', i, undefined, options));
if (!iItem && i < lengthi) diff.items.push(this.action('add', i, valueArrayi[i], options));
}
function sortMethod(a: IDiffItem, b: IDiffItem) {
if (a[0] < b[0]) return 1;
if (a[0] > b[0]) return -1;
return 0;
}
diff.items.sort(sortMethod);
diff.items = diff.items.flat();
return diff;
}
}
public update(value__: any, diff: IDiff, options_: IOptions = {}): string {
const options = merge(options_, this.options);
const value_ = options.init.method(value__);
if (is('string', value_) && diff !== undefined) {
const value = options.itemize.method(value_);
if (diff.items?.length) {
const updateGroups = OnesyDiff.updateGroups(diff);
updateGroups.forEach(group => {
const removeGroup = group.every((item: IDiffItem) => ['r', 'remove'].indexOf(item[0]) > -1);
if (removeGroup) {
group.sort((a: any, b: any) => b[1] - a[1]);
group.forEach((item: IDiffItem) => value.splice(item[1], 1));
}
else {
group.forEach((item: IDiffItem) => {
const action = item[0];
const index = item[1];
const valueItem = item[2];
switch (action) {
case 'a':
case 'add':
value.splice(index, 0, valueItem);
break;
case 'r':
case 'remove':
value.splice(index, 1);
break;
default:
break;
}
});
}
});
}
return options.join.method(value);
}
}
private action(action: IDiffItemAction, index: number, value: string, options: IOptions): IDiffItem {
const compressed = options.output?.compressed;
return [compressed ? action.charAt(0) : action, index, value].filter(item => item !== undefined) as IDiffItem;
}
}
export default OnesyDiff;