79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
-
+
|
createTFPanel(xTextArea);
};
xToolbar.appendChild(xTFButton);
let xLxgButton = document.createElement("div");
xLxgButton.textContent = "Analyser";
xLxgButton.style = sButtonStyle;
xLxgButton.onclick = function() {
console.log("Analyser");
createLxgPanel(xTextArea);
};
xToolbar.appendChild(xLxgButton);
let xGCButton = document.createElement("div");
xGCButton.textContent = "Corriger";
xGCButton.style = sButtonStyle;
xGCButton.onclick = function() {
xPort.postMessage({sCommand: "parseAndSpellcheck", dParam: {sText: xTextArea.value, sCountry: "FR", bDebug: false, bContext: false}, dInfo: {sTextAreaId: xTextArea.id}});
|
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
|
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
|
-
+
-
-
-
-
-
+
+
+
+
+
+
+
+
-
+
+
+
+
+
+
+
+
-
+
-
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
|
function createConjPanel () {
console.log("Conjugueur");
if (xConjPanel !== null) {
xConjPanel.style.display = "block";
} else {
// create the panel
xConjPanel = document.createElement("div");
xConjPanel = createPanelFrame("conj_panel", "Conjugueur", 500, 900);
xConjPanel.style = "position: fixed; left: 50%; top: 50%; z-index: 100; height: 400px; margin-top: -200px; width: 600px; margin-left: -300px; border-radius: 10px;"
+ " color: hsl(210, 10%, 4%); background-color: hsl(210, 20%, 90%); border: 10px solid hsla(210, 20%, 70%, .5);";
xConjPanel.textContent = "Conjugueur";
xConjPanel.setAttribute("draggable", true);
xConjPanel.appendChild(createCloseButton(xConjPanel));
document.body.appendChild(xConjPanel);
}
}
function createTFPanel (xTextArea) {
console.log("Formateur de texte");
if (xTFPanel !== null) {
xTFPanel.style.display = "block";
} else {
// create the panel
xTFPanel = createPanelFrame("tf_panel", "Formateur de texte", 800, 500);
xTFPanel.appendChild(createTextFormatter(xTextArea));
document.body.appendChild(xTFPanel);
}
}
function createLxgPanel (xTextArea) {
console.log("Analyse");
console.log("Lexicographe");
if (xLxgPanel !== null) {
xLxgPanel.style.display = "block";
} else {
// create the panel
xLxgPanel = createPanelFrame("lxg_panel", "Lexicographe", 400, 800);
document.body.appendChild(xLxgPanel);
}
}
function createGCPanel (oErrors) {
console.log("Correction grammaticale");
if (xGCPanel !== null) {
xGCPanel.style.display = "block";
} else {
// create the panel
xGCPanel = document.createElement("div");
xGCPanel = createPanelFrame("gc_panel", "Correcteur", 400, 800);
xGCPanel.style = "position: fixed; left: 50%; top: 50%; z-index: 100; height: 400px; margin-top: -200px; width: 600px; margin-left: -300px; border-radius: 10px;"
+ " color: hsl(210, 10%, 4%); background-color: hsl(210, 20%, 90%); border: 10px solid hsla(210, 20%, 70%, .5);";
xGCPanel.textContent = JSON.stringify(oErrors);
xGCPanel.appendChild(document.createTextNode(JSON.stringify(oErrors)));
xGCPanel.setAttribute("draggable", true);
xGCPanel.appendChild(createCloseButton(xGCPanel));
document.body.appendChild(xGCPanel);
}
}
function createCloseButton (xParentNode) {
let xButton = document.createElement("div");
xButton.style = "float: right; width: 20px; padding: 5px 10px; color: hsl(210, 0%, 100%); text-align: center;"
+ "font-size: 20px; font-weight: bold; background-color: hsl(0, 80%, 50%); border-radius: 0 0 0 3px; cursor: pointer;";
xButton.textContent = "×";
xButton.onclick = function () {
xParentNode.style.display = "none";
}
return xButton;
}
function loadImage (sContainerClass, sImagePath) {
let xRequest = new XMLHttpRequest();
xRequest.open('GET', browser.extension.getURL("")+sImagePath, false);
xRequest.responseType = "arraybuffer";
xRequest.send();
let blobTxt = new Blob([xRequest.response], {type: 'image/png'});
let img = document.createElement('img');
img.src = (URL || webkitURL).createObjectURL(blobTxt);
Array.filter(document.getElementsByClassName(sContainerClass), function (oElem) {
oElem.appendChild(img);
});
}
/*
Simple message
*/
function handleMessage (oMessage, xSender, sendResponse) {
console.log("[Content script] received:");
console.log(oMessage);
|