-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcontentScript.js
582 lines (533 loc) · 15.8 KB
/
contentScript.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
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
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
// import "./content.css";
// import { message } from "antd";
// import React from "react";
// import ReactDOM from "react-dom";
// import { Menu, Dropdown, Button } from "antd";
// import { DownOutlined, UserOutlined } from "@ant-design/icons";
import {
copyToClipboard,
bjwd,
getStorage,
setCloundStorage,
// addStyle,
} from "./utils";
import zenAble from "./zen/zenMode";
import hideFailCases from "./submission/hideFailCases";
// WTF! ant message didn't go well with chrome extension?
const message = {
success({ content }) {
//
},
warn({ content }) {
window.alert(content);
},
loading(content) {
//
return () => null;
},
};
// import AccessToken from "./components/AccessToken";
// class SolutionButton extends PureComponent {
// static propTypes = {};
// static defaultProps = {};
// constructor() {
// super();
// this.state = {
// modalVisible: false,
// };
// }
// render() {
// return (
// <>
// <AccessToken
// visible={this.state.modalVisible}
// onOk={() =>
// this.setState({
// modalVisible: false,
// })
// }
// onCancel={() =>
// this.setState({
// modalVisible: false,
// })
// }
// />
// <Dropdown
// style={{ marginLeft: "10px" }}
// type="link"
// onClick={() => {
// //
// }}
// overlay={
// <Menu onClick={() => this.setState({ modalVisible: true })}>
// <Menu.Item key="1">填入 access token</Menu.Item>
// </Menu>
// }
// >
// <Button>写题解</Button>
// </Dropdown>
// </>
// );
// }
// }
// if (testCase[i] === '"') {
// while (i < testCase.length && testCase[i] !== '"') {
// stack.push(testCase[i]);
// }
// stack.push("\n");
// } else
// testcase eg: `bottom = "BCD", allowed = ["BCG", "CDE", "GEA", "FFF"], c = [1,2,3], d = 2`
function normalize(testCase, includeArray = true) {
testCase = testCase.trim().replace(/\n/g, "").replace(" ", "");
// 单一参数
// console.log(testCase);
if (!testCase.includes("=")) {
// 数组直接返回
// eslint-disable-next-line
if (testCase.includes("[") || testCase.includes('"')) {
return testCase;
} else {
// 输入: 3, 2, 0, 0
// 输入: 0.0625
const parts = testCase.split(",");
if (parts.length === 0) return parts.join("");
return parts.join("\n");
}
}
let stack = [];
let i = 0;
while (i < testCase.length) {
while (i < testCase.length && testCase[i] !== "=") {
i += 1;
}
// skip =
i += 1;
while (i < testCase.length && testCase[i] !== "[" && testCase[i] !== ",") {
stack.push(testCase[i]);
i += 1;
}
if (testCase[i] === ",") {
// skip ,
i += 1;
stack.push("\n");
} else if (includeArray) {
// 解析为数组
// cnt 左括号[ 与 右括号] 个数的差值
let cnt = 0;
while (i < testCase.length) {
stack.push(testCase[i]);
cnt += testCase[i] === "[";
cnt -= testCase[i] === "]";
i += 1;
if (cnt === 0) {
if (i !== testCase.length) {
stack.push("\n");
}
break;
}
}
} else {
while (i < testCase.length) {
stack.push(testCase[i]);
i += 1;
}
}
}
const ans = stack.join("");
if (includeArray && ans[ans.length - 1] !== testCase[testCase.length - 1]) {
return normalize(testCase, false);
}
return stack.join("");
}
function extractTestCase(text, prefix) {
const possiblePrefixs = [
"输出",
"返回",
"Output",
"output",
"Return",
"return",
"",
];
for (let tag of possiblePrefixs) {
const testCase = text.match(new RegExp(`${prefix}(.*)${tag}`, "s"));
if (testCase && testCase.length > 1) {
return testCase;
}
}
return [];
}
function getProviedTestCases(includeArray = true) {
const possibleTags = ["pre", "p"];
const possiblePrefixs = ["输入:", "输入:", "Input:", "input:"];
const ans = [];
for (let tag of possibleTags) {
const pres = document.querySelectorAll(tag);
for (let prefix of possiblePrefixs) {
for (var i = 0; i < pres.length; ++i) {
if (pres[i].innerText.includes(prefix)) {
const testcase = extractTestCase(pres[i].innerText, prefix);
if (!testcase || testcase.length <= 1) {
bjwd();
return [];
}
ans.push(normalize(testcase[1], includeArray));
}
}
if (ans.length > 0) return ans;
}
}
return ans;
}
// const menu = (
// <Menu onClick={() => handleTestCaseClick(false)}>
// <Menu.Item key="1" icon={<UserOutlined />}>
// 测试用例不包含数组选这个
// </Menu.Item>
// </Menu>
// );
// function handleTestCaseClick(includeArray) {
// const cases = getProviedTestCases(includeArray);
// if (cases.filter(Boolean).length === 0) return bjwd();
// copyToClipboard(cases.join("\n"));
// message.success({
// content: "复制成功~",
// });
// }
function goToVisDebug() {
const language = getCodeLanguage();
const supportedLanguages = ["Python3", "JavaScript", "C++"];
const languageMap = {
Python3: "3",
Java: "java",
JavaScript: "js",
"C++": "cpp_g%2B%2B9.3.0",
C: "c_gcc9.3.0",
};
const prefixMap = {
Python3: `
# 如何你在调试链表题目,手动生成链表很麻烦,想快速生成链表可以注释如下方法,并使用如下方法,输入一个数组,返回一个链表
# eg:head = ListNodes([4,2,1,3]).head
# class ListNodes:
# def __init__(self, vals)->ListNode:
# cur = dummy = ListNode()
# for val in vals:
# nxt = ListNode(val)
# cur.next = nxt
# cur = nxt
# self.head = dummy.next
`,
JavaScript: `
// 如何你在调试链表题目,手动生成链表很麻烦,想快速生成链表可以注释如下方法,并使用如下方法,输入一个数组,返回一个链表
// eg:head = ListNodes([4,2,1,3]).head
// function ListNodes(vals) {
// let cur = new ListNode()
// let dummy = cur
// for(const val of vals) {
// const nxt = new ListNode(val)
// cur.next = nxt
// cur = nxt
// }
// return dummy.next
// }
`,
java: "",
"C++": `
#include <algorithm>
#include <bitset>
#include <complex>
#include <deque>
#include <exception>
#include <fstream>
#include <functional>
#include <iomanip>
#include <ios>
#include <iosfwd>
#include <iostream>
#include <istream>
#include <iterator>
#include <limits>
#include <list>
#include <locale>
#include <map>
#include <memory>
#include <new>
#include <numeric>
#include <ostream>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <stdexcept>
#include <streambuf>
#include <string>
#include <typeinfo>
#include <utility>
#include <valarray>
#include <vector>
#if __cplusplus >= 201103L
#include <array>
#include <atomic>
#include <chrono>
#include <condition_variable>
#include <forward_list>
#include <future>
#include <initializer_list>
#include <mutex>
#include <random>
#include <ratio>
#include <regex>
#include <scoped_allocator>
#include <system_error>
#include <thread>
#include <tuple>
#include <typeindex>
#include <type_traits>
#include <unordered_map>
#include <unordered_set>
#endif
using namespace std;
`,
C: "",
};
const suffixMap = {
Python3: `
# 替换下方的 xxx 为主函数名, yyy 为测试用例参数开启调试
Solution().xxx(yyy)
`,
JavaScript: `
// 替换下方的 xxx 为主函数名, yyy 为测试用例参数开启调试
xxx(yyy)
`,
"C++": `
int main()
{
Solution s;
// 替换下方的 xxx 为主函数名, yyy 为测试用例参数开启调试
s.xxx(yyy);
return 0;
}
`,
C: "",
Java: "",
};
if (!supportedLanguages.includes(language))
return message.warn({
content: `当前仅支持 ${supportedLanguages.join(",")}`,
});
const code =
(prefixMap[language] || "") +
window?.monaco?.editor?.getModels()[0]?.getValue() +
(suffixMap[language] || "");
window.open(
`https://pythontutor.com/visualize.html#code=${encodeURIComponent(
code
)}&cumulative=false&curInstr=0&heapPrimitives=nevernest&mode=display&origin=opt-frontend.js&py=${languageMap[language]
}&rawInputLstJSON=%5B%5D&textReferences=false`
);
}
function getCodeLanguage() {
const langMap = {
"cpp": "C++",
"python3": "Python3",
"java": "Java",
"c": "C",
"javascript": "JavaScript",
}
const l =window?.monaco?.editor?.getModels()[0]?.getLanguageId() ||
localStorage.getItem("global_lang")
return langMap[l.toLowerCase()]
}
function insertButton() {
const buttons = document.querySelectorAll("button");
for (var i = 0; i < buttons.length; ++i) {
if (buttons[i].innerText.includes("运行")) {
// const container = document.createElement("div");
// buttons[i].parentElement.prepend(container);
// ReactDOM.render(
// <Dropdown overlay={menu} style={{ marginLeft: "10px" }}>
// <Button onClick={() => handleTestCaseClick(true)}>
// 复制所有内置用例 <DownOutlined />
// </Button>
// </Dropdown>,
// container
// );
// const writeSolutionButton = document.createElement("div");
// const copyButton = buttons[i].cloneNode(true);
// copyButton.innerText = "复制用例";
// copyButton.style["margin-left"] = "10px";
// copyButton.onclick = () => {
// const cases = getProviedTestCases();
// if (cases.filter(Boolean).length === 0) return bjwd();
// copyToClipboard(cases.join("\n"));
// message.success({
// content: "复制成功~",
// });
// };
// buttons[i].parentElement.prepend(copyButton);
const writeSolutionButton = document.createElement("a");
writeSolutionButton.innerText = "写题解";
writeSolutionButton.style["margin-right"] = "20px";
writeSolutionButton.style["line-height"] = "32px";
writeSolutionButton.onclick = () => {
// d: "<a href="/problems/remove-max-number-of-edges-to-keep-graph-fully-traversable/">1579. 保证图可完全遍历</a>"
const desc = document.querySelector(
"[data-track-load=\"description_content\"]"
).innerHTML;
if (!desc) {
return message.warn({
content: "获取题目描述失败,请先切换到题目描述标签",
});
}
const title = document.title;
const link = window.location.href;
const language = getCodeLanguage();
// let code = document.querySelector(
// ".monaco-scrollable-element,.editor-scrollable"
// ).innerText;
const code = window?.monaco?.editor?.getModels()[0]?.getValue();
// const desc = document.querySelector("#question-detail-main-tabs")?.children[1]?.children[0]?.children[1]?.innerText;
const hide = message.loading("正在存储题目信息,请稍后~", 0);
writeSolutionButton.setAttribute("disabled", true);
// Dismiss manually and asynchronously
setTimeout(() => {
hide();
writeSolutionButton.removeAttribute("disabled");
}, 30000); // 超时 30s 都没好,那就别转了
getStorage("leetcode-cheatsheet-token")
.then((res) => res.result.value)
.then((res) => {
if (!res.raw) throw new Error("whatever");
return res;
})
.catch(() => ({
raw: "e574bf60b50d8d2d2db2320ee83aba3cd29cecf2",
}))
.then((res) => {
const t = res.raw;
setCloundStorage(
{
title,
link,
language,
code,
desc,
},
{
token: t,
}
)
.then((res) => {
hide();
writeSolutionButton.removeAttribute("disabled");
if (res.id) {
window.open(
`https://leetcode-pp.github.io/leetcode-cheat/?issue_number=${res.id}&tab=solution-template`
);
} else {
message.warn({
content:
"使用 Github API 失败,已为您切换为普通模式,普通模式仅可自动带入题目名称,题目地址以及题解语言。",
});
setTimeout(() => {
window.open(
`https://leetcode-pp.github.io/leetcode-cheat/?title=${title}&link=${link}&language=${language}&tab=solution-template`
);
}, 2000);
}
})
.catch(() => {
hide();
writeSolutionButton.removeAttribute("disabled");
});
});
};
// ReactDOM.render(<SolutionButton />, writeSolutionButton);
buttons[i].parentElement.prepend(writeSolutionButton);
// ele.appendChild(writeSolutionButton);
const visDebugButton = document.createElement("a");
visDebugButton.innerText = "可视化调试";
visDebugButton.style["margin-right"] = "20px";
visDebugButton.style["line-height"] = "32px";
visDebugButton.onclick = goToVisDebug;
buttons[i].parentElement.prepend(visDebugButton);
inserted = true;
} else if (buttons[i].innerText.includes("提交")) {
const click = buttons[i].onclick;
buttons[i].onclick = (...args) => {
click.call(buttons[i], ...args);
// try to hide failed test cases
let tries = 0;
const hideFailCasesJob = setInterval(() => {
if (hideFailCases()) {
clearInterval(hideFailCasesJob);
}
// 300 times means 30s
if (tries > 300) return;
tries++;
}, 100)
}
submitProxied = true
}
}
return false;
}
let inserted = false;
let retried = 0;
let submitProxied = false
const MAX_TRY = 10;
// 去除智能提示
// addStyle(`
// .monaco-editor .editor-widget {
// display: none !important;
// visibility: hidden !important;
// }
// `);
const timerId = setInterval(() => {
if (inserted && submitProxied) return clearInterval(timerId);
if (retried > MAX_TRY) {
clearInterval(timerId);
return console.error("初始化 chrome 插件 content script 失败");
}
insertButton();
// if (inserted && submitProxied) {
// window.location.title = "";
// // 可进入禅定模式
// zenAble();
// }
retried++;
}, 1000);
// class Main extends React.Component {
// render() {
// return (
// <div className={"my-extension"}>
// <h1 onClick={t}>Hello world - My first Extension</h1>
// </div>
// );
// }
// }
// const app = document.createElement("div");
// app.id = "my-extension-root";
// document.body.appendChild(app);
// ReactDOM.render(<Main />, app);
// history.pushState = (f => function pushState() {
// var ret = f.apply(this, arguments);
// window.dispatchEvent(new Event('pushstate'));
// window.dispatchEvent(new Event('locationchange'));
// return ret;
// })(history.pushState);
// history.replaceState = (f => function replaceState() {
// var ret = f.apply(this, arguments);
// window.dispatchEvent(new Event('replacestate'));
// window.dispatchEvent(new Event('locationchange'));
// return ret;
// })(history.replaceState);
// window.addEventListener('popstate', () => {
// window.dispatchEvent(new Event('locationchange'))
// });
// window.addEventListener('locationchange', function (e) {
// const url = e.target.location.href;
// console.log('hideFailCases')
// if (url.endsWith("submissions/")) {
// }
// })