-
Notifications
You must be signed in to change notification settings - Fork 7
/
script.js
101 lines (86 loc) · 2.65 KB
/
script.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
function wrapWithErrorsHandler(callback){
async function wrapper(...args) {
try {
await callback(...args);
console.log('copied');
} catch (error) {
console.error(error);
if (error instanceof DOMException){
alert(error.message);
} else {
alert('Copy plugin is broken');
}
}
}
return wrapper;
}
function initGitHub(){
async function handleKeyUp(event) {
if (event.altKey && event.code == 'KeyC'){ // Latin or Cyrillic key C
event.preventDefault();
event.stopPropagation();
await wrapWithErrorsHandler(copyMarkdownSnippetFromGithub)(event.shiftKey);
}
if (event.ctrlKey && event.code == 'KeyQ'){
event.preventDefault();
await dialog.openDialog();
}
}
document.addEventListener('keyup', handleKeyUp, {
capture: false,
});
window.addEventListener("hashchange",function(event){
// clear selection when lines of code selected and anchor change
// otherwise on GitHub plugin will copy old selection and not lines
document.getSelection().removeAllRanges();
});
}
function initBitbucket(){
async function handleKeyUp(event) {
if (event.altKey && event.code == 'KeyC'){ // Latin or Cyrillic key C
event.preventDefault();
event.stopPropagation();
await wrapWithErrorsHandler(copyMarkdownSnippetFromBitbucket)(event.shiftKey);
}
}
document.addEventListener('keyup', handleKeyUp, {
capture: false,
});
}
function initReplIt(){
async function handleKeyUp(event) {
if (event.altKey && event.code == 'KeyC'){ // Latin or Cyrillic key C
event.preventDefault();
event.stopPropagation();
await wrapWithErrorsHandler(copyMarkdownSnippetFromReplIt)(event.shiftKey);
}
}
document.addEventListener('keyup', handleKeyUp, {
capture: false,
});
}
function initNonameSite(){
async function handleKeyUp(event) {
if (event.altKey && event.code == 'KeyC'){ // Latin or Cyrillic key C
event.preventDefault();
event.stopPropagation();
await wrapWithErrorsHandler(copyMarkdownSnippetFromOtherSite)(event.shiftKey);
}
}
document.addEventListener('keyup', handleKeyUp, {
capture: false,
});
}
if (window.location.host === 'github.com'){
console.log('CopyPlugin: GitHub detected');
initGitHub();
} else if (window.location.host === 'repl.it' || window.location.host === 'replit.com'){
console.log('CopyPlugin: Repl.it detected');
initReplIt();
} else if (window.location.host === 'bitbucket.org'){
console.log('CopyPlugin: Bitbucket detected');
initBitbucket();
} else {
console.log('CopyPlugin: Unknown site, so activate default behaviour');
initNonameSite();
}