forked from codesandbox/codesandbox-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdiff.js
More file actions
194 lines (194 loc) · 7.02 KB
/
diff.js
File metadata and controls
194 lines (194 loc) · 7.02 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
var _allData = JSON.parse(atob(self.allData));
var output = document.createElement('div');
document.body.appendChild(output);
var escape = document.createElement('textarea');
function escapeHTML(str) {
str = str.replace(/\t/g, ' ');
escape.textContent = str;
return escape.innerHTML;
}
function renderTestCase(data) {
var content = data.testContent;
var output = [];
var actual = data.actual;
var expected = data.expected;
var diff = data.diff;
var actualIndex = 0, expectedIndex = 0, diffIndex = 0;
var lines = content.split(/\r\n|\r|\n/g);
for (var i = 0, len = lines.length; i < len; i++) {
var line = lines[i];
var actualLineOutput = [];
var actualLine = line;
while (actualLine.length > 0) {
var actualToken = actual[actualIndex++];
actualLine = actualLine.substr(actualToken.content.length);
actualLineOutput.push("<span style=\"color:" + actualToken.color.substring(0, 7) + "\" data-actual-index=\"" + (actualIndex - 1) + "\">" + escapeHTML(actualToken.content) + "</span>");
}
actualLineOutput.push('</div>');
var expectedLineOutput = [];
var expectedLine = line;
while (expectedLine.length > 0) {
var expectedToken = expected[expectedIndex++];
expectedLine = expectedLine.substr(expectedToken.content.length);
expectedLineOutput.push("<span style=\"color:" + expectedToken.color + "\" data-expected-index=\"" + (expectedIndex - 1) + "\">" + escapeHTML(expectedToken.content) + "</span>");
}
expectedLineOutput.push('</div>');
var diffOutput = [];
while (diffIndex < diff.length && diff[diffIndex].oldIndex < expectedIndex) {
diffOutput.push('<tr><td style="width:500px">');
diffOutput.push(escapeHTML(JSON.stringify(diff[diffIndex].newToken, null, ' ')));
diffOutput.push('</td><td style="width:500px">');
diffOutput.push(escapeHTML(JSON.stringify(diff[diffIndex].oldToken, null, ' ')));
diffOutput.push('</td></tr>');
diffIndex++;
}
if (diffOutput.length > 0) {
actualLineOutput = ['<div class="actual-line with-diff">'].concat(actualLineOutput);
expectedLineOutput = ['<div class="expected-line with-diff">'].concat(expectedLineOutput);
diffOutput = ['<table class="diff collapsed">'].concat(diffOutput).concat('</table>');
}
else {
actualLineOutput = ['<div class="actual-line the-same">'].concat(actualLineOutput);
expectedLineOutput = ['<div class="expected-line the-same">'].concat(expectedLineOutput);
}
output = output.concat(actualLineOutput);
output = output.concat(expectedLineOutput);
output = output.concat(diffOutput);
}
var domNode = document.createElement('div');
var title = document.createElement('h2');
if (diff.length > 0) {
title.className = 'title with-diff';
}
else {
title.className = 'title the-same';
}
title.innerHTML = data.themeName;
domNode.appendChild(title);
var linesDomNode = document.createElement('div');
if (diff.length === 0) {
linesDomNode.className = 'collapsed';
}
linesDomNode.innerHTML = output.join('');
linesDomNode.style.backgroundColor = data.backgroundColor;
linesDomNode.style.fontFamily = 'Consolas';
domNode.appendChild(linesDomNode);
return domNode;
}
document.body.onclick = function (e) {
var target = e.target;
if (target.tagName === 'H2') {
var targetContent = target.nextElementSibling;
if (targetContent.className === 'collapsed') {
targetContent.className = '';
}
else {
targetContent.className = 'collapsed';
}
return;
}
if (target.tagName !== 'SPAN') {
return;
}
var line = target.parentElement;
var targetDiff = null;
if (/^actual-line/.test(line.className)) {
targetDiff = line.nextElementSibling.nextElementSibling;
}
else if (/^expected-line/.test(line.className)) {
targetDiff = line.nextElementSibling;
}
if (!targetDiff) {
return;
}
if (targetDiff.className === 'diff collapsed') {
targetDiff.className = 'diff';
}
else {
targetDiff.className = 'diff collapsed';
}
};
var acceptDiffContent = (function () {
var result = {};
for (var i = 0, len = _allData.length; i < len; i++) {
var data = _allData[i];
if (!data.actual) {
continue;
}
result[data.themeName] = data.diff.map(function (diffEntry) {
return {
index: diffEntry.oldIndex,
content: diffEntry.oldToken.content,
color: diffEntry.oldToken.color,
newColor: diffEntry.newToken.color.substring(0, 7)
};
});
}
return JSON.stringify(result, null, '\t');
})();
var diffTA = document.createElement('textarea');
diffTA.value = acceptDiffContent;
document.body.appendChild(diffTA);
document.body.oncopy = function (e) {
e.clipboardData.setData('text', acceptDiffContent);
};
var acceptBtn = document.createElement('button');
acceptBtn.innerHTML = 'Accept diff';
acceptBtn.style.position = 'fixed';
acceptBtn.style.top = '10px';
acceptBtn.style.right = '10px';
acceptBtn.style.fontSize = '150%';
document.body.appendChild(acceptBtn);
acceptBtn.onclick = function () {
diffTA.select();
console.log(acceptDiffContent);
};
var patchedBtn = document.createElement('button');
patchedBtn.innerHTML = 'View patched diff';
patchedBtn.style.position = 'fixed';
patchedBtn.style.top = '10px';
patchedBtn.style.right = '150px';
patchedBtn.style.fontSize = '150%';
document.body.appendChild(patchedBtn);
patchedBtn.onclick = renderPatchedDiff;
var originalBtn = document.createElement('button');
originalBtn.innerHTML = 'View original diff';
originalBtn.style.position = 'fixed';
originalBtn.style.top = '10px';
originalBtn.style.right = '360px';
originalBtn.style.fontSize = '150%';
document.body.appendChild(originalBtn);
originalBtn.onclick = renderOriginalDiff;
function renderOriginalDiff() {
output.innerHTML = '';
_allData.forEach(function (data) {
if (!data.actual) {
return;
}
output.appendChild(renderTestCase({
testContent: data.testContent,
themeName: data.themeName,
backgroundColor: data.backgroundColor,
actual: data.actual,
expected: data.expected,
diff: data.diff
}));
});
}
function renderPatchedDiff() {
output.innerHTML = '';
_allData.forEach(function (data) {
if (!data.actual) {
return;
}
output.appendChild(renderTestCase({
testContent: data.testContent,
themeName: data.themeName,
backgroundColor: data.backgroundColor,
actual: data.actual,
expected: data.patchedExpected,
diff: data.patchedDiff
}));
});
}
renderOriginalDiff();