Overview
| Comment: | [fx] use objects for communication with Worker (normalization) |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | fx | webext2 |
| Files: | files | file ages | folders |
| SHA3-256: |
1938527edce5a6f5de0941409cfe9cd6 |
| User & Date: | olr on 2017-08-11 12:38:23 |
| Other Links: | branch diff | manifest | tags |
Context
|
2017-08-11
| ||
| 12:48 | [fx] use objects for communication with SharedWorker (normalization) (may be useful one day) check-in: e22cada231 user: olr tags: fx, webext2 | |
| 12:38 | [fx] use objects for communication with Worker (normalization) check-in: 1938527edc user: olr tags: fx, webext2 | |
|
2017-08-10
| ||
| 09:59 | [fx] content-script interface + remove SharedWorker check-in: e026bff1c5 user: olr tags: fx, webext2 | |
Changes
Modified gc_lang/fr/webext/background.js from [eb2f1b3278] to [fcd118d7b1].
| ︙ | |||
10 11 12 13 14 15 16 | 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 | + - - + + + + + - + - - + - - + + - - + + + - - - + + + - + + + + - + - - - - - + + + - + - + - + - + - + - + |
Worker (separate thread to avoid freezing Firefox)
*/
let xGCEWorker = new Worker("gce_worker.js");
xGCEWorker.onmessage = function (e) {
// https://developer.mozilla.org/en-US/docs/Web/API/MessageEvent
try {
let {sActionDone, result, dInfo, bError} = e.data;
|
| ︙ | |||
112 113 114 115 116 117 118 | 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 | - + - + |
browser.contextMenus.create({
id: "conjugueur_tab",
title: "Conjugueur [onglet]",
contexts: ["all"]
});
function onCreated(windowInfo) {
|
| ︙ | |||
159 160 161 162 163 164 165 166 167 168 | 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 | + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - |
xConjTab.then(onCreated, onError);
break;
}
});
async function newwin () {
// test for popup window-like, which doesn’t close when losing the focus
console.log("Async on");
const getActive = browser.tabs.query({ currentWindow: true, active: true, });
const xWindowInfo = await browser.windows.getLastFocused();
|
Modified gc_lang/fr/webext/gce_worker.js from [3fc4168020] to [63b4c024ea].
| ︙ | |||
25 26 27 28 29 30 31 | 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | - + |
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/import
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/export
*/
"use strict";
|
| ︙ | |||
49 50 51 52 53 54 55 56 57 58 59 60 61 | 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 | + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + - + - + - + - + - + - + - + - + - + - + - + - + + + + + - + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - + - - + + + - + - + - + - + - - + + - - + + - + - + - + - + - + - + - + - + - + - + - + - + + - + - + - + |
/*
Warning.
Initialization can’t be completed at startup of the worker,
for we need the path of the extension to load data stored in JSON files.
This path is retrieved in background.js and passed with the event “init”.
*/
function createResponse (sActionDone, result, dInfo, bError=false) {
return {
"sActionDone": sActionDone,
"result": result, // can be of any type
"dInfo": dInfo,
"bError": bError
};
}
function createErrorResult (e, sDescr="no description") {
return {
"sType": "error",
"sDescription": sDescr,
"sMessage": e.fileName + "\n" + e.name + "\nline: " + e.lineNumber + "\n" + e.message
};
}
function showData (e) {
for (let sParam in e) {
console.log(sParam);
console.log(e[sParam]);
}
}
/*
Message Event Object
https://developer.mozilla.org/en-US/docs/Web/API/MessageEvent
*/
onmessage = function (e) {
console.log("[Worker] message received");
|
Modified gc_lang/fr/webext/panel/main.html from [152e200e98] to [d1a2ec127f].
| ︙ | |||
13 14 15 16 17 18 19 | 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | - |
<nav>
<header id="logo">
<img src="../img/logo-32.png">
</header>
<ul>
<li class="select" data-page="home_page"><i class="fa fa-home icon"></i> 1.</li>
<li class="select" data-page="tf_page"><i class="fa fa-photo icon"></i> TF</li>
|
| ︙ | |||
36 37 38 39 40 41 42 | 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | - - - - - |
<div id="page">
<section id="home_page" class="page">
<h1>GRAMMALECTE</h1>
</section>
|
| ︙ |