-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.js
137 lines (92 loc) · 2.77 KB
/
popup.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
function getCurrentTabUrl(callback) {
var queryInfo = {
active: true,
currentWindow: true
};
chrome.tabs.query(queryInfo, function(tabs) {
var tab = tabs[0];
var url = tab.url;
console.assert(typeof url == 'string', 'tab.url should be a string');
// busca texto selecionado no tab
chrome.tabs.executeScript(tab.id, {
code: "window.getSelection().toString();"
}, function(result){
// text selected
if( (text = result[0]) != "" ){
translate(text, function(translated){
renderStatus(translated);
});
}
else{
renderStatus("Selecione um texto primeiro");
}
});
});
}
function AdapterTranslatorYandexAPI(){
this.key = "";
this.urlApi = "https://translate.yandex.net/api/v1.5/tr.json/translate?key={key}&text={q}&lang={s}&format=plain";
this.translate = function(text, callback, options){
var url = this.urlApi.replace("{key}", this.key)
.replace("{q}", text)
.replace("{s}", options.current_lang)
.replace("{t}", options.for_lang);
var method = "GET";
var request = new XMLHttpRequest();
request.responseType = "json";
request.onreadystatechange = function(){
if(this.readyState == 4 && this.status == 200){
callback(request.response.text[0]);
}
}
request.open(method, url, true);
request.send();
}
}
function AdapterTranslatorGoogleAPI(){
this.key = "";
this.urlApi = "https://www.googleapis.com/language/translate/v2?key={key}&q={q}&source={s}&target={t}";
this.translate = function(text, callback, options){
// traduzir texto
var url = this.urlApi.replace("{key}", this.key)
.replace("{q}", text)
.replace("{s}", options.current_lang)
.replace("{t}", options.for_lang);
var method = "get";
var request = new XMLHttpRequest();
request.responseType = "json";
request.onreadystatechange = function(){
// requisicao finalizada
if(this.readyState == 4){
callback({
data: text_translated
})
}
}
request.open(method, url, true);
request.send();
}
}
function translator(className){
var translator = null;
switch(className){
case "GoogleAPI": translator = new AdapterTranslatorGoogleAPI();
break;
case "YandexAPI": translator = new AdapterTranslatorYandexAPI();
break;
}
return translator;
}
function translate(text, callback, options){
var default_options = {
"current_lang": "pt",
"for_lang": "en"
};
translator("YandexAPI").translate(text, callback, default_options);
}
function renderStatus(statusText) {
document.getElementById('status').innerHTML = statusText;
}
document.addEventListener('DOMContentLoaded', function() {
getCurrentTabUrl();
});