-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdiffInline.js
182 lines (154 loc) · 4.03 KB
/
diffInline.js
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
/**
* Сравнение массивов с генерацией разницы
* @param a {Array} первый массив
* @param b {Array} второй массив
* @returns {Object} объект формата:
* {
* old // удалённое
* default // неизменное
* new // добавленное
* data: {
* type // вид разницы [old, default, new]
* value // значение разницы
* }
* }
*/
// https://github.com/umdjs/umd
(function (root, factory) {
if (typeof define === 'function' && define.amd) {
define([], factory);
}
else if (typeof module === 'object' && module.exports) {
module.exports = factory;
}
else {
root.diffInline = factory;
};
} (this, function (a, b) {
// массив с результатом
var result = {
old: 0,
default: 0,
new: 0,
data: []
};
// вспомогательные массивы
var tmpA = [];
var tmpB = [];
var tmpD = [];
// счётчики
var indexA = 0;
var indexB = 0;
// идём по массивам
while (1) {
// для каждого массива свой индекс с соответствующим сдвигом
indexA = indexA + tmpA.length + tmpD.length;
indexB = indexB + tmpB.length + tmpD.length;
// пополняем результат
result.data = result.data.concat(tmpA);
result.data = result.data.concat(tmpB);
result.data = result.data.concat(tmpD);
// меняем статистику
result.old += tmpA.length;
result.new += tmpB.length;
result.default += tmpD.length;
// обнуляем вспомогательные массивы
tmpA = [];
tmpB = [];
tmpD = [];
// получаем текущий элемент массива
curA = a[indexA];
curB = b[indexB];
// если нет ни старого, ни нового
if (typeof curA === 'undefined' && typeof curB === 'undefined') {
return result;
}
// если нет нового
else if (typeof curB === 'undefined') {
tmpA.push({
type: 'old',
value: curA
});
}
// если нет старого
else if (typeof curA === 'undefined') {
tmpB.push({
type: 'new',
value: curB
});
}
// если не изменилось
else if (isEqual(curA, curB)) {
tmpD.push({
type: 'default',
value: curA
});
}
// если есть отличия
else {
// вспомогательные счётчики
var i = indexB;
var j = indexA;
var k = i;
var m = j;
// вспомогательные массивы
var checkA = [];
var checkB = [];
var checkAB = {
a: [],
b: []
};
// проверяем, было ли старое
while (typeof a[j] !== 'undefined' && !isEqual(a[j], curB)) {
checkA.push({
type: 'old',
value: a[j]
});
j++;
};
// проверяем, есть ли новое
while (typeof b[i] !== 'undefined' && !isEqual(curA, b[i])) {
checkB.push({
type: 'new',
value: b[i]
});
i++;
};
// проверяем, произошла ли замена
while (typeof a[m] !== 'undefined' && typeof b[k] !== 'undefined' && !isEqual(a[m], b[k])) {
checkAB.a.push({
type: 'old',
value: a[m]
});
checkAB.b.push({
type: 'new',
value: b[k]
});
m++;
k++;
};
// произошла замена
if (checkAB.a.length + checkAB.b.length <= checkA.length && checkAB.a.length + checkAB.b.length <= checkB.length) {
tmpA = tmpA.concat(checkAB.a);
tmpB = tmpB.concat(checkAB.b);
}
// что-то пропало
else if (checkA.length <= checkB.length) {
tmpA = tmpA.concat(checkA);
}
// добавлено новое
else {
tmpB = tmpB.concat(checkB);
};
};
};
/**
* сравнение массивов
* @param a {Array} первый массив
* @param b {Array} второй массив
* @returns {Boolean} результат сравнения
*/
function isEqual (a, b) {
return JSON.stringify(a) === JSON.stringify(b);
};
}));