forked from SideeX/sideex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbackground.js
executable file
·258 lines (235 loc) · 7.96 KB
/
background.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
/*
* Copyright 2017 SideeX committers
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
var panelId = undefined;
var windowOpenSideex = new Object();
function onCreated(windowInfo) {
console.log(`Create editor successfully: id = ${windowInfo.id}`);
panelId = windowInfo.id;
}
function onError(error) {
console.log(`Error: ${error}`);
}
/*
function getContentWindowInfo() {
let contentWindowInfo = browser.windows.getLastFocused();
//contentWindowInfo.then(function(info) {console.log("contentWindowInfo1: ", Info.tabs);});
return contentWindowInfo;
}
//*/
function checkOpenOneSideex(contentWindowInfo) {
console.log("contentWindowInfo1-2: ", contentWindowInfo);
if (windowOpenSideex[contentWindowInfo.id] !== undefined && windowOpenSideex[contentWindowInfo.id] == true) {
console.log("Sideex has been opened.");
console.log("windowOpenSideex: ", windowOpenSideex);
return Promise.reject("Sideex has been opened.");
}
windowOpenSideex[contentWindowInfo.id] = true;
console.log("Open one sideex.")
console.log("contentWindowInfo2: ", contentWindowInfo);
return contentWindowInfo;
}
function openSideexWindow(contentWindowInfo) {
let sideexWindowInfo = browser.windows.create({
url: browser.extension.getURL("panel.html"),
type: "popup",
height: 730,
width: 750
});
console.log("contentWindowInfo3: ", contentWindowInfo);
console.log("sideexWindowInfo: ", sideexWindowInfo);
//return [contentWindowInfo, Promise.resolve(sideexWindowInfo)];
return sideexWindowInfo;
}
function openPage() {
///*
var getContentWindowInfo = browser.windows.getLastFocused();
var getSideexWindowInfo = browser.windows.create({
url: browser.extension.getURL("panel.html"),
type: "popup",
height: 730,
width: 750
});
Promise.all([getContentWindowInfo, getSideexWindowInfo])
.then(function(windowInfo) {
console.log("get the window info")
let contentWindowInfo = windowInfo[0];
let sideexWindowInfo = windowInfo[1];
console.log("contentWindowInfo Id:" + contentWindowInfo.id);
console.log("contentWindowInfo:", contentWindowInfo);
console.log("sideexWindowInfo Id:" + sideexWindowInfo.id);
console.log("sideexWindowInfo:", sideexWindowInfo);
return new Promise(function(resolve, reject) {
let count = 0;
let interval = setInterval(function() {
if (count > 100) {
reject("SideeX editor has no response");
clearInterval(interval);
}
browser.tabs.query({
active: true,
windowId: sideexWindowInfo.id
}).then(function(tabs) {
if (tabs.length != 1) {
count++;
return;
}
let sideexTabInfo = tabs[0];
if (sideexTabInfo.status == "loading") {
count++;
return;
} else {
console.log("SideeX has been fully loaded")
resolve(windowInfo);
clearInterval(interval);
}
})
}, 200);
});
}).then(passWindowId)
.catch(function(e) {
console.log(e);
});
//*/
/*
getContentWindowInfo().then(function(info) {
console.log("info: ", info);
});
getContentWindowInfo().then(checkOpenOneSideex).then(openSideexWindow).then(function(windowInfo) {
console.log("get the window info", windowInfo);
let contentWindowInfo = windowInfo[0];
let sideexWindowInfo = windowInfo[1];
console.log("contentWindowInfo Id:" + contentWindowInfo.id);
console.log("sideexWindowInfo Id:" + sideexWindowInfo.id);
return new Promise(function(resolve, reject) {
let count = 0;
let interval = setInterval(function() {
if (count > 100) {
reject("SideeX editor has no response");
clearInterval(interval);
}
browser.tabs.query({
active: true,
windowId: sideexWindowInfo.id
}).then(function(tabs) {
if (tabs.length != 1) {
count++;
return;
}
let sideexTabInfo = tabs[0];
if (sideexTabInfo.status == "loading") {
count++;
return;
} else {
console.log("SideeX has been fully loaded")
resolve(windowInfo);
clearInterval(interval);
}
})
}, 200);
});
}).then(passWindowId)
.catch(function(e) {
console.log(e);
});
//*/
browser.contextMenus.create({
id: "verifyText",
title: "verifyText",
documentUrlPatterns: ["<all_urls>"],
contexts: ["all"]
});
browser.contextMenus.create({
id: "verifyTitle",
title: "verifyTitle",
documentUrlPatterns: ["<all_urls>"],
contexts: ["all"]
});
browser.contextMenus.create({
id: "assertText",
title: "assertText",
documentUrlPatterns: ["<all_urls>"],
contexts: ["all"]
});
browser.contextMenus.create({
id: "assertTitle",
title: "assertTitle",
documentUrlPatterns: ["<all_urls>"],
contexts: ["all"]
});
browser.contextMenus.create({
id: "storeText",
title: "storeText",
documentUrlPatterns: ["<all_urls>"],
contexts: ["all"]
});
browser.contextMenus.create({
id: "storeTitle",
title: "storeTitle",
documentUrlPatterns: ["<all_urls>"],
contexts: ["all"]
});
}
browser.browserAction.onClicked.addListener(openPage);
function disconnectAllTabs(tabs) {
for (let tab of tabs) {
browser.tabs.sendMessage(tab.id, { active: false });
}
}
function queryError(error) {
console.log(`Error: ${error}`);
}
browser.windows.onRemoved.addListener(function(windowId) {
if (windowId === panelId) {
console.log("Editor has closed");
var querying = browser.tabs.query({ url: "<all_urls>" });
querying.then(disconnectAllTabs, queryError);
panelId = undefined;
}
browser.contextMenus.removeAll();
});
function passWindowId(windowInfo){
let contentWindowInfo = windowInfo[0];
let sideexWindowInfo = windowInfo[1];
let contentWindowId = contentWindowInfo.id;
let sideexTabId = sideexWindowInfo.tabs[0].id;
let sideexWindowId = sideexWindowInfo.id;
// Seems like we don't need to pass information to content scripts
/*
browser.tabs.query({
windowId: contentWindowId,
url: "<all_urls>"
}).then(function(tabs) {
for (let tab of tabs) {
browser.tabs.sendMessage(tab.id, {
selfTabId: tab.id,
commWindowId: sideexWindowId
}).catch(onError);
}
}).catch(onError);
*/
return browser.tabs.sendMessage(sideexTabId, {
selfWindowId: sideexWindowId,
commWindowId: contentWindowId
});
};
var port;
browser.contextMenus.onClicked.addListener(function(info, tab) {
port.postMessage({ cmd: info.menuItemId });
});
browser.runtime.onConnect.addListener(function(m) {
port = m;
});