forked from QasimWani/LeetHub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathleetcode.js
817 lines (759 loc) · 24.8 KB
/
leetcode.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
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
/* Enum for languages supported by LeetCode. */
const languages = {
Python: '.py',
Python3: '.py',
'C++': '.cpp',
C: '.c',
Java: '.java',
'C#': '.cs',
JavaScript: '.js',
Javascript: '.js',
Ruby: '.rb',
Swift: '.swift',
Go: '.go',
Kotlin: '.kt',
Scala: '.scala',
Rust: '.rs',
PHP: '.php',
TypeScript: '.ts',
MySQL: '.sql',
'MS SQL Server': '.sql',
Oracle: '.sql',
};
/* Commit messages */
const readmeMsg = 'Create README - LeetHub';
const discussionMsg = 'Prepend discussion post - LeetHub';
const createNotesMsg = 'Attach NOTES - LeetHub';
// problem types
const NORMAL_PROBLEM = 0;
const EXPLORE_SECTION_PROBLEM = 1;
/* Difficulty of most recenty submitted question */
let difficulty = '';
/* state of upload for progress */
let uploadState = { uploading: false };
/* Get file extension for submission */
function findLanguage() {
const tag = [
...document.getElementsByClassName(
'ant-select-selection-selected-value',
),
...document.getElementsByClassName('Select-value-label'),
];
if (tag && tag.length > 0) {
for (let i = 0; i < tag.length; i += 1) {
const elem = tag[i].textContent;
if (elem !== undefined && languages[elem] !== undefined) {
return languages[elem]; // should generate respective file extension
}
}
}
return null;
}
/* Main function for uploading code to GitHub repo, and callback cb is called if success */
const upload = (
token,
hook,
code,
directory,
filename,
sha,
msg,
cb = undefined,
) => {
// To validate user, load user object from GitHub.
const URL = `https://api.github.com/repos/${hook}/contents/${directory}/${filename}`;
/* Define Payload */
let data = {
message: msg,
content: code,
sha,
};
data = JSON.stringify(data);
const xhr = new XMLHttpRequest();
xhr.addEventListener('readystatechange', function () {
if (xhr.readyState === 4) {
if (xhr.status === 200 || xhr.status === 201) {
const updatedSha = JSON.parse(xhr.responseText).content.sha; // get updated SHA.
chrome.storage.local.get('stats', (data2) => {
let { stats } = data2;
if (stats === null || stats === {} || stats === undefined) {
// create stats object
stats = {};
stats.solved = 0;
stats.easy = 0;
stats.medium = 0;
stats.hard = 0;
stats.sha = {};
}
const filePath = directory + filename;
// Only increment solved problems statistics once
// New submission commits twice (README and problem)
if (filename === 'README.md' && sha === null) {
stats.solved += 1;
stats.easy += difficulty === 'Easy' ? 1 : 0;
stats.medium += difficulty === 'Medium' ? 1 : 0;
stats.hard += difficulty === 'Hard' ? 1 : 0;
}
stats.sha[filePath] = updatedSha; // update sha key.
chrome.storage.local.set({ stats }, () => {
console.log(
`Successfully committed ${filename} to github`,
);
// if callback is defined, call it
if (cb !== undefined) {
cb();
}
});
});
}
}
});
xhr.open('PUT', URL, true);
xhr.setRequestHeader('Authorization', `token ${token}`);
xhr.setRequestHeader('Accept', 'application/vnd.github.v3+json');
xhr.send(data);
};
/* Main function for updating code on GitHub Repo */
/* Currently only used for prepending discussion posts to README */
/* callback cb is called on success if it is defined */
const update = (
token,
hook,
addition,
directory,
msg,
prepend,
cb = undefined,
) => {
const URL = `https://api.github.com/repos/${hook}/contents/${directory}/README.md`;
/* Read from existing file on GitHub */
const xhr = new XMLHttpRequest();
xhr.addEventListener('readystatechange', function () {
if (xhr.readyState === 4) {
if (xhr.status === 200 || xhr.status === 201) {
const response = JSON.parse(xhr.responseText);
const existingContent = decodeURIComponent(
escape(atob(response.content)),
);
let newContent = '';
/* Discussion posts prepended at top of README */
/* Future implementations may require appending to bottom of file */
if (prepend) {
newContent = btoa(
unescape(encodeURIComponent(addition + existingContent)),
);
}
/* Write file with new content to GitHub */
upload(
token,
hook,
newContent,
directory,
'README.md',
response.sha,
msg,
cb,
);
}
}
});
xhr.open('GET', URL, true);
xhr.setRequestHeader('Authorization', `token ${token}`);
xhr.setRequestHeader('Accept', 'application/vnd.github.v3+json');
xhr.send();
};
function uploadGit(
code,
problemName,
fileName,
msg,
action,
prepend = true,
cb = undefined,
_diff = undefined,
) {
// Assign difficulty
if (_diff && _diff !== undefined) {
difficulty = _diff.trim();
}
/* Get necessary payload data */
chrome.storage.local.get('leethub_token', (t) => {
const token = t.leethub_token;
if (token) {
chrome.storage.local.get('mode_type', (m) => {
const mode = m.mode_type;
if (mode === 'commit') {
/* Get hook */
chrome.storage.local.get('leethub_hook', (h) => {
const hook = h.leethub_hook;
if (hook) {
/* Get SHA, if it exists */
/* to get unique key */
const filePath = problemName + fileName;
chrome.storage.local.get('stats', (s) => {
const { stats } = s;
let sha = null;
if (
stats !== undefined &&
stats.sha !== undefined &&
stats.sha[filePath] !== undefined
) {
sha = stats.sha[filePath];
}
if (action === 'upload') {
/* Upload to git. */
upload(
token,
hook,
code,
problemName,
fileName,
sha,
msg,
cb,
);
} else if (action === 'update') {
/* Update on git */
update(
token,
hook,
code,
problemName,
msg,
prepend,
cb,
);
}
});
}
});
}
});
}
});
}
/* Function for finding and parsing the full code. */
/* - At first find the submission details url. */
/* - Then send a request for the details page. */
/* - Finally, parse the code from the html reponse. */
/* - Also call the callback if available when upload is success */
function findCode(
uploadGit,
problemName,
fileName,
msg,
action,
cb = undefined,
) {
/* Get the submission details url from the submission page. */
var submissionURL;
const e = document.getElementsByClassName('status-column__3SUg');
if (checkElem(e)) {
// for normal problem submisson
const submissionRef = e[1].innerHTML.split(' ')[1];
submissionURL =
'https://leetcode.com' +
submissionRef.split('=')[1].slice(1, -1);
} else {
// for a submission in explore section
const submissionRef = document.getElementById('result-state');
submissionURL = submissionRef.href;
}
if (submissionURL != undefined) {
/* Request for the submission details page */
const xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function () {
if (this.readyState == 4 && this.status == 200) {
/* received submission details as html reponse. */
var doc = new DOMParser().parseFromString(
this.responseText,
'text/html',
);
/* the response has a js object called pageData. */
/* Pagedata has the details data with code about that submission */
var scripts = doc.getElementsByTagName('script');
for (var i = 0; i < scripts.length; i++) {
var text = scripts[i].innerText;
if (text.includes('pageData')) {
/* Considering the pageData as text and extract the substring
which has the full code */
var firstIndex = text.indexOf('submissionCode');
var lastIndex = text.indexOf('editCodeUrl');
var slicedText = text.slice(firstIndex, lastIndex);
/* slicedText has code as like as. (submissionCode: 'Details code'). */
/* So finding the index of first and last single inverted coma. */
var firstInverted = slicedText.indexOf("'");
var lastInverted = slicedText.lastIndexOf("'");
/* Extract only the code */
var codeUnicoded = slicedText.slice(
firstInverted + 1,
lastInverted,
);
/* The code has some unicode. Replacing all unicode with actual characters */
var code = codeUnicoded.replace(
/\\u[\dA-F]{4}/gi,
function (match) {
return String.fromCharCode(
parseInt(match.replace(/\\u/g, ''), 16),
);
},
);
/*
for a submisssion in explore section we do not get probStat beforehand
so, parse statistics from submisson page
*/
if (!msg) {
slicedText = text.slice(
text.indexOf('runtime'),
text.indexOf('memory'),
);
const resultRuntime = slicedText.slice(
slicedText.indexOf("'") + 1,
slicedText.lastIndexOf("'"),
);
slicedText = text.slice(
text.indexOf('memory'),
text.indexOf('total_correct'),
);
const resultMemory = slicedText.slice(
slicedText.indexOf("'") + 1,
slicedText.lastIndexOf("'"),
);
msg = `Time: ${resultRuntime}, Memory: ${resultMemory} - LeetHub`;
}
if (code != null) {
setTimeout(function () {
uploadGit(
btoa(unescape(encodeURIComponent(code))),
problemName,
fileName,
msg,
action,
true,
cb,
);
}, 2000);
}
}
}
}
};
xhttp.open('GET', submissionURL, true);
xhttp.send();
}
}
/* Main parser function for the code */
function parseCode() {
const e = document.getElementsByClassName('CodeMirror-code');
if (e !== undefined && e.length > 0) {
const elem = e[0];
let parsedCode = '';
const textArr = elem.innerText.split('\n');
for (let i = 1; i < textArr.length; i += 2) {
parsedCode += `${textArr[i]}\n`;
}
return parsedCode;
}
return null;
}
/* Util function to check if an element exists */
function checkElem(elem) {
return elem && elem.length > 0;
}
function convertToSlug(string) {
const a =
'àáâäæãåāăąçćčđďèéêëēėęěğǵḧîïíīįìłḿñńǹňôöòóœøōõőṕŕřßśšşșťțûüùúūǘůűųẃẍÿýžźż·/_,:;';
const b =
'aaaaaaaaaacccddeeeeeeeegghiiiiiilmnnnnoooooooooprrsssssttuuuuuuuuuwxyyzzz------';
const p = new RegExp(a.split('').join('|'), 'g');
return string
.toString()
.toLowerCase()
.replace(/\s+/g, '-') // Replace spaces with -
.replace(p, (c) => b.charAt(a.indexOf(c))) // Replace special characters
.replace(/&/g, '-and-') // Replace & with 'and'
.replace(/[^\w\-]+/g, '') // Remove all non-word characters
.replace(/\-\-+/g, '-') // Replace multiple - with single -
.replace(/^-+/, '') // Trim - from start of text
.replace(/-+$/, ''); // Trim - from end of text
}
function getProblemNameSlug() {
const questionElem = document.getElementsByClassName(
'content__u3I1 question-content__JfgR',
);
const questionDescriptionElem = document.getElementsByClassName(
'question-description__3U1T',
);
let questionTitle = 'unknown-problem';
if (checkElem(questionElem)) {
let qtitle = document.getElementsByClassName('css-v3d350');
if (checkElem(qtitle)) {
questionTitle = qtitle[0].innerHTML;
}
} else if (checkElem(questionDescriptionElem)) {
let qtitle = document.getElementsByClassName('question-title');
if (checkElem(qtitle)) {
questionTitle = qtitle[0].innerText;
}
}
return convertToSlug(questionTitle);
}
/* Parser function for the question and tags */
function parseQuestion() {
var questionUrl = window.location.href;
if (questionUrl.endsWith('/submissions/')) {
questionUrl = questionUrl.substring(
0,
questionUrl.lastIndexOf('/submissions/') + 1,
);
}
const questionElem = document.getElementsByClassName(
'content__u3I1 question-content__JfgR',
);
const questionDescriptionElem = document.getElementsByClassName(
'question-description__3U1T',
);
if (checkElem(questionElem)) {
const qbody = questionElem[0].innerHTML;
// Problem title.
let qtitle = document.getElementsByClassName('css-v3d350');
if (checkElem(qtitle)) {
qtitle = qtitle[0].innerHTML;
} else {
qtitle = 'unknown-problem';
}
// Problem difficulty, each problem difficulty has its own class.
const isHard = document.getElementsByClassName('css-t42afm');
const isMedium = document.getElementsByClassName('css-dcmtd5');
const isEasy = document.getElementsByClassName('css-14oi08n');
if (checkElem(isEasy)) {
difficulty = 'Easy';
} else if (checkElem(isMedium)) {
difficulty = 'Medium';
} else if (checkElem(isHard)) {
difficulty = 'Hard';
}
// Final formatting of the contents of the README for each problem
const markdown = `<h2><a href="${questionUrl}">${qtitle}</a></h2><h3>${difficulty}</h3><hr>${qbody}`;
return markdown;
} else if (checkElem(questionDescriptionElem)) {
let questionTitle = document.getElementsByClassName(
'question-title',
);
if (checkElem(questionTitle)) {
questionTitle = questionTitle[0].innerText;
} else {
questionTitle = 'unknown-problem';
}
const questionBody = questionDescriptionElem[0].innerHTML;
const markdown = `<h2>${questionTitle}</h2><hr>${questionBody}`;
return markdown;
}
return null;
}
/* Parser function for time/space stats */
function parseStats() {
const probStats = document.getElementsByClassName('data__HC-i');
if (!checkElem(probStats)) {
return null;
}
const time = probStats[0].textContent;
const timePercentile = probStats[1].textContent;
const space = probStats[2].textContent;
const spacePercentile = probStats[3].textContent;
// Format commit message
return `Time: ${time} (${timePercentile}), Space: ${space} (${spacePercentile}) - LeetHub`;
}
document.addEventListener('click', (event) => {
const element = event.target;
const oldPath = window.location.pathname;
/* Act on Post button click */
/* Complex since "New" button shares many of the same properties as "Post button */
if (
element.classList.contains('icon__3Su4') ||
element.parentElement.classList.contains('icon__3Su4') ||
element.parentElement.classList.contains(
'btn-content-container__214G',
) ||
element.parentElement.classList.contains('header-right__2UzF')
) {
setTimeout(function () {
/* Only post if post button was clicked and url changed */
if (
oldPath !== window.location.pathname &&
oldPath ===
window.location.pathname.substring(0, oldPath.length) &&
!Number.isNaN(window.location.pathname.charAt(oldPath.length))
) {
const date = new Date();
const currentDate = `${date.getDate()}/${date.getMonth()}/${date.getFullYear()} at ${date.getHours()}:${date.getMinutes()}`;
const addition = `[Discussion Post (created on ${currentDate})](${window.location}) \n`;
const problemName = window.location.pathname.split('/')[2]; // must be true.
uploadGit(
addition,
problemName,
'README.md',
discussionMsg,
'update',
);
}
}, 1000);
}
});
/* function to get the notes if there is any
the note should be opened atleast once for this to work
this is because the dom is populated after data is fetched by opening the note */
function getNotesIfAny() {
// there are no notes on expore
if (document.URL.startsWith('https://leetcode.com/explore/'))
return '';
notes = '';
if (
checkElem(document.getElementsByClassName('notewrap__eHkN')) &&
checkElem(
document
.getElementsByClassName('notewrap__eHkN')[0]
.getElementsByClassName('CodeMirror-code'),
)
) {
notesdiv = document
.getElementsByClassName('notewrap__eHkN')[0]
.getElementsByClassName('CodeMirror-code')[0];
if (notesdiv) {
for (i = 0; i < notesdiv.childNodes.length; i++) {
if (notesdiv.childNodes[i].childNodes.length == 0) continue;
text = notesdiv.childNodes[i].childNodes[0].innerText;
if (text) {
notes = `${notes}\n${text.trim()}`.trim();
}
}
}
}
return notes.trim();
}
const loader = setInterval(() => {
let code = null;
let probStatement = null;
let probStats = null;
let probType;
const successTag = document.getElementsByClassName('success__3Ai7');
const resultState = document.getElementById('result-state');
var success = false;
// check success tag for a normal problem
if (
checkElem(successTag) &&
successTag[0].className === 'success__3Ai7' &&
successTag[0].innerText.trim() === 'Success'
) {
console.log(successTag[0]);
success = true;
probType = NORMAL_PROBLEM;
}
// check success state for a explore section problem
else if (
resultState &&
resultState.className === 'text-success' &&
resultState.innerText === 'Accepted'
) {
success = true;
probType = EXPLORE_SECTION_PROBLEM;
}
if (success) {
probStatement = parseQuestion();
probStats = parseStats();
}
if (probStatement !== null) {
switch (probType) {
case NORMAL_PROBLEM:
successTag[0].classList.add('marked_as_success');
break;
case EXPLORE_SECTION_PROBLEM:
resultState.classList.add('marked_as_success');
break;
default:
console.error(`Unknown problem type ${probType}`);
return;
}
const problemName = getProblemNameSlug();
const language = findLanguage();
if (language !== null) {
// start upload indicator here
startUpload();
chrome.storage.local.get('stats', (s) => {
const { stats } = s;
const filePath = problemName + problemName + language;
let sha = null;
if (
stats !== undefined &&
stats.sha !== undefined &&
stats.sha[filePath] !== undefined
) {
sha = stats.sha[filePath];
}
/* Only create README if not already created */
if (sha === null) {
/* @TODO: Change this setTimeout to Promise */
uploadGit(
btoa(unescape(encodeURIComponent(probStatement))),
problemName,
'README.md',
readmeMsg,
'upload',
);
}
});
/* get the notes and upload it */
/* only upload notes if there is any */
notes = getNotesIfAny();
if (notes.length > 0) {
setTimeout(function () {
if (notes != undefined && notes.length != 0) {
console.log('Create Notes');
// means we can upload the notes too
uploadGit(
btoa(unescape(encodeURIComponent(notes))),
problemName,
'NOTES.md',
createNotesMsg,
'upload',
);
}
}, 500);
}
/* Upload code to Git */
setTimeout(function () {
findCode(
uploadGit,
problemName,
problemName + language,
probStats,
'upload',
// callback is called when the code upload to git is a success
() => {
if (uploadState['countdown'])
clearTimeout(uploadState['countdown']);
delete uploadState['countdown'];
uploadState.uploading = false;
markUploaded();
},
); // Encode `code` to base64
}, 1000);
}
}
}, 1000);
/* Since we dont yet have callbacks/promises that helps to find out if things went bad */
/* we will start 10 seconds counter and even after that upload is not complete, then we conclude its failed */
function startUploadCountDown() {
uploadState.uploading = true;
uploadState['countdown'] = setTimeout(() => {
if ((uploadState.uploading = true)) {
// still uploading, then it failed
uploadState.uploading = false;
markUploadFailed();
}
}, 10000);
}
/* we will need specific anchor element that is specific to the page you are in Eg. Explore */
function insertToAnchorElement(elem) {
if (document.URL.startsWith('https://leetcode.com/explore/')) {
// means we are in explore page
action = document.getElementsByClassName('action');
if (
checkElem(action) &&
checkElem(action[0].getElementsByClassName('row')) &&
checkElem(
action[0]
.getElementsByClassName('row')[0]
.getElementsByClassName('col-sm-6'),
) &&
action[0]
.getElementsByClassName('row')[0]
.getElementsByClassName('col-sm-6').length > 1
) {
target = action[0]
.getElementsByClassName('row')[0]
.getElementsByClassName('col-sm-6')[1];
elem.className = 'pull-left';
if (target.childNodes.length > 0)
target.childNodes[0].prepend(elem);
}
} else {
if (checkElem(document.getElementsByClassName('action__38Xc'))) {
target = document.getElementsByClassName('action__38Xc')[0];
elem.className = 'runcode-wrapper__8rXm';
if (target.childNodes.length > 0)
target.childNodes[0].prepend(elem);
}
}
}
/* start upload will inject a spinner on left side to the "Run Code" button */
function startUpload() {
try {
elem = document.getElementById('leethub_progress_anchor_element');
if (!elem) {
elem = document.createElement('span');
elem.id = 'leethub_progress_anchor_element';
elem.style = 'margin-right: 20px;padding-top: 2px;';
}
elem.innerHTML = `<div id="leethub_progress_elem" class="leethub_progress"></div>`;
target = insertToAnchorElement(elem);
// start the countdown
startUploadCountDown();
} catch (error) {
// generic exception handler for time being so that existing feature doesnt break but
// error gets logged
console.log(error);
}
}
/* This will create a tick mark before "Run Code" button signalling LeetHub has done its job */
function markUploaded() {
elem = document.getElementById('leethub_progress_elem');
if (elem) {
elem.className = '';
style =
'display: inline-block;transform: rotate(45deg);height:24px;width:12px;border-bottom:7px solid #78b13f;border-right:7px solid #78b13f;';
elem.style = style;
}
}
/* This will create a failed tick mark before "Run Code" button signalling that upload failed */
function markUploadFailed() {
elem = document.getElementById('leethub_progress_elem');
if (elem) {
elem.className = '';
style =
'display: inline-block;transform: rotate(45deg);height:24px;width:12px;border-bottom:7px solid red;border-right:7px solid red;';
elem.style = style;
}
}
/* Sync to local storage */
chrome.storage.local.get('isSync', (data) => {
keys = [
'leethub_token',
'leethub_username',
'pipe_leethub',
'stats',
'leethub_hook',
'mode_type',
];
if (!data || !data.isSync) {
keys.forEach((key) => {
chrome.storage.sync.get(key, (data) => {
chrome.storage.local.set({ [key]: data[key] });
});
});
chrome.storage.local.set({ isSync: true }, (data) => {
console.log('LeetHub Synced to local values');
});
} else {
console.log('LeetHub Local storage already synced!');
}
});
// inject the style
injectStyle();
/* inject css style required for the upload progress feature */
function injectStyle() {
const style = document.createElement('style');
style.textContent =
'.leethub_progress {pointer-events: none;width: 2.0em;height: 2.0em;border: 0.4em solid transparent;border-color: #eee;border-top-color: #3E67EC;border-radius: 50%;animation: loadingspin 1s linear infinite;} @keyframes loadingspin { 100% { transform: rotate(360deg) }}';
document.head.append(style);
}