Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathscript.js
More file actions
Latest commit
101 lines (86 loc) · 2.65 KB
/
Copy pathscript.js
File metadata and controls
101 lines (86 loc) · 2.65 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
functionwrapWithErrorsHandler(callback){
asyncfunctionwrapper(...args){
try{
awaitcallback(...args);
console.log('copied');
}catch(error){
console.error(error);
if(errorinstanceofDOMException){
alert(error.message);
}else{
alert('Copy plugin is broken');
}
}
}
returnwrapper;
}
functioninitGitHub(){
asyncfunctionhandleKeyUp(event){
if(event.altKey&&event.code=='KeyC'){// Latin or Cyrillic key C
event.preventDefault();
event.stopPropagation();
awaitwrapWithErrorsHandler(copyMarkdownSnippetFromGithub)(event.shiftKey);
}
if(event.ctrlKey&&event.code=='KeyQ'){
event.preventDefault();
awaitdialog.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();
});
}
functioninitBitbucket(){
asyncfunctionhandleKeyUp(event){
if(event.altKey&&event.code=='KeyC'){// Latin or Cyrillic key C
event.preventDefault();
event.stopPropagation();
awaitwrapWithErrorsHandler(copyMarkdownSnippetFromBitbucket)(event.shiftKey);
}
}
document.addEventListener('keyup',handleKeyUp,{
capture: false,
});
}
functioninitReplIt(){
asyncfunctionhandleKeyUp(event){
if(event.altKey&&event.code=='KeyC'){// Latin or Cyrillic key C
event.preventDefault();
event.stopPropagation();
awaitwrapWithErrorsHandler(copyMarkdownSnippetFromReplIt)(event.shiftKey);
}
}
document.addEventListener('keyup',handleKeyUp,{
capture: false,
});
}
functioninitNonameSite(){
asyncfunctionhandleKeyUp(event){
if(event.altKey&&event.code=='KeyC'){// Latin or Cyrillic key C
event.preventDefault();
event.stopPropagation();
awaitwrapWithErrorsHandler(copyMarkdownSnippetFromOtherSite)(event.shiftKey);
}
}
document.addEventListener('keyup',handleKeyUp,{
capture: false,
});
}
if(window.location.host==='github.com'){
console.log('CopyPlugin: GitHub detected');
initGitHub();
}elseif(window.location.host==='repl.it'||window.location.host==='replit.com'){
console.log('CopyPlugin: Repl.it detected');
initReplIt();
}elseif(window.location.host==='bitbucket.org'){
console.log('CopyPlugin: Bitbucket detected');
initBitbucket();
}else{
console.log('CopyPlugin: Unknown site, so activate default behaviour');
initNonameSite();
}