forked from codesandbox/codesandbox-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdiff.ts
More file actions
271 lines (240 loc) · 7.43 KB
/
diff.ts
File metadata and controls
271 lines (240 loc) · 7.43 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
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
interface IRawThemeSetting {
readonly name?: string;
readonly scope?: string | string[];
readonly settings: {
readonly fontStyle?: string;
readonly foreground?: string;
readonly background?: string;
};
}
interface IThemedTokenScopeExplanation {
scopeName: string;
themeMatches: IRawThemeSetting[];
}
interface IThemedTokenExplanation {
content: string;
scopes: IThemedTokenScopeExplanation[];
}
interface IThemedToken {
content: string;
color: string;
explanation: IThemedTokenExplanation[];
}
interface IExpectedTokenization {
content: string;
color: string;
_r: string;
_t: string;
}
interface ITokenizationDiff {
oldIndex: number;
oldToken: IExpectedTokenization;
newToken: IThemedToken;
}
interface IDiffPageData {
testContent: string;
themeName: string;
backgroundColor: string;
actual: IThemedToken[];
expected: IExpectedTokenization[];
diff: ITokenizationDiff[];
patchedExpected: IExpectedTokenization[];
patchedDiff: ITokenizationDiff[];
}
let _allData: IDiffPageData[] = JSON.parse(atob((<any>self).allData));
let output = document.createElement('div');
document.body.appendChild(output);
interface ITestCaseData {
testContent: string;
themeName: string;
backgroundColor: string;
actual: IThemedToken[];
expected: IExpectedTokenization[];
diff: ITokenizationDiff[];
}
var escape = document.createElement('textarea');
function escapeHTML(str:string): string {
str = str.replace(/\t/g, ' ');
escape.textContent = str;
return escape.innerHTML;
}
function renderTestCase(data: ITestCaseData): HTMLElement {
let content = data.testContent;
let output = [];
let actual = data.actual;
let expected = data.expected;
let diff = data.diff;
let actualIndex = 0, expectedIndex = 0, diffIndex = 0;
let lines = content.split(/\r\n|\r|\n/g);
for (let i = 0, len = lines.length; i < len; i++) {
let line = lines[i];
let actualLineOutput: string[] = [];
let actualLine = line;
while (actualLine.length > 0) {
let 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>');
let expectedLineOutput: string[] = [];
let expectedLine = line;
while (expectedLine.length > 0) {
let 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>');
let diffOutput: string[] = [];
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);
}
let domNode = document.createElement('div');
let 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);
let 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) {
let target = <HTMLElement>e.target;
if (target.tagName === 'H2') {
let targetContent = target.nextElementSibling;
if (targetContent.className === 'collapsed') {
targetContent.className = '';
} else {
targetContent.className = 'collapsed';
}
return;
}
if (target.tagName !== 'SPAN') {
return;
}
let line = target.parentElement;
let 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';
}
};
let acceptDiffContent = (function() {
let result = {};
for (let i = 0, len = _allData.length; i < len; i++) {
let 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');
})();
let diffTA = document.createElement('textarea');
diffTA.value = acceptDiffContent;
document.body.appendChild(diffTA);
document.body.oncopy = function(e) {
e.clipboardData.setData('text', acceptDiffContent);
};
let 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);
};
let 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;
let 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();