Skip to content

Commit 6a8ca90

Browse files
committed
error handling
1 parent adc7ed2 commit 6a8ca90

File tree

2 files changed

+43
-10
lines changed

2 files changed

+43
-10
lines changed

README.md

+12-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,18 @@
11
# Leetcode Code Format Extension
22

3-
This is a Chrome Extension, which formats the code typed by the user on [Leetcode](https://www.leetcode.com/) platform.
3+
This is a Chrome Extension, which formats the code typed by the user on [Leetcode](https://www.leetcode.com/) platform.
44

55
Currently it supports only Python.
66

77
API for formatting python code is hosted via serverless functions on Vercel.
8+
9+
## Build
10+
11+
Currently it is not available on Chrome Web Store. To unpack it locally, follow these steps:
12+
13+
- Get the directory/repo on your local machine(git clone works).
14+
- Open [Chrome Extensions](chrome://extensions/)
15+
- Switch the developer mode to be "on".
16+
- Click on Load Unpacked button, and select the directory.
17+
18+
Your extension has been successfully loaded.

script.js

+31-9
Original file line numberDiff line numberDiff line change
@@ -21,18 +21,40 @@ const mutationObserver = new MutationObserver(() => {
2121
getCodeMirror();
2222
let btnDiv = document.querySelector("button[data-cy='submit-code-btn']");
2323
if (btnDiv === undefined || btnDiv === null) {
24-
// div not found
24+
// buttons div not rendered yet
2525
return;
2626
}
2727
let parent = btnDiv.parentElement;
28-
if (!isBtnPresent) {
29-
parent.prepend(btn);
30-
let btnDivSpan = btnDiv.childNodes[0];
31-
span.className = btnDivSpan.className;
32-
btn.style.padding = "1.2em";
33-
btn.className = btnDiv.className;
34-
btn.append(span);
35-
isBtnPresent = true;
28+
let languageDiv = document.querySelector(
29+
".ant-select-selection-selected-value"
30+
);
31+
if (languageDiv === undefined || languageDiv === null) {
32+
// language div not rendered yet
33+
return;
34+
}
35+
if (
36+
languageDiv.innerText === "Python" ||
37+
languageDiv.innerText === "Python3"
38+
) {
39+
if (!isBtnPresent) {
40+
parent.prepend(btn);
41+
let btnDivSpan = btnDiv.childNodes[0];
42+
span.className = btnDivSpan.className;
43+
btn.style.padding = "1.2em";
44+
btn.className = btnDiv.className;
45+
btn.append(span);
46+
isBtnPresent = true;
47+
}
48+
} else {
49+
if (isBtnPresent) {
50+
let childList = parent.childNodes;
51+
if (childList === undefined || childList === null) {
52+
// children not loaded
53+
return;
54+
}
55+
childList[0].remove();
56+
isBtnPresent = false;
57+
}
3658
}
3759
});
3860
mutationObserver.observe(document, {

0 commit comments

Comments
 (0)