Overview
Comment: | [fx] gc panel: new message panel |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | fx |
Files: | files | file ages | folders |
SHA3-256: |
862a0249770e626ff254c3f41bc5b742 |
User & Date: | olr on 2019-05-10 08:51:51 |
Other Links: | manifest | tags |
Context
2019-05-10
| ||
18:21 | [fx] NodeControl -> TextControl: TextFormatter available for every cases check-in: d899cb945f user: olr tags: trunk, fx | |
08:51 | [fx] gc panel: new message panel check-in: 862a024977 user: olr tags: trunk, fx | |
08:51 | [fr] faux positif check-in: 105cb51271 user: olr tags: trunk, fr | |
Changes
Modified gc_lang/fr/webext/content_scripts/panel.css from [ec430696b6] to [f4fd34834d].
︙ | ︙ | |||
114 115 116 117 118 119 120 | div.grammalecte_panel_content { position: absolute; width: 100%; height: calc(100% - 65px); /* panel height - title_bar */ overflow: auto; } | > > > > > > > > > > > > > > > > > > > > > > > > | | | 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 | div.grammalecte_panel_content { position: absolute; width: 100%; height: calc(100% - 65px); /* panel height - title_bar */ overflow: auto; } div#grammalecte_panel_message_block { display: none; padding: 10px; background-color: hsl(0, 50%, 50%); color: hsl(0, 10%, 96%); font-family: "Trebuchet MS", "Fira Sans", "Liberation Sans", sans-serif; font-size: 14px; } div#grammalecte_panel_message_close_button { float: right; margin: 0 0 10px 10px; padding: 2px 5px; border-radius: 5px; background-color: hsl(0, 50%, 40%); color: hsl(0, 50%, 80%); font-size: 14px; font-weight: bold; cursor: pointer; } div#grammalecte_panel_message_close_button:hover { background-color: hsl(0, 100%, 60%); color: hsl(0, 50%, 100%); } div.grammalecte_panel_flow_message { margin: 10px; padding: 10px; border-radius: 5px; background-color: hsl(0, 0%, 50%); color: hsl(0, 50%, 96%); font-family: "Trebuchet MS", "Fira Sans", "Liberation Sans", sans-serif; font-size: 16px; } |
︙ | ︙ |
Modified gc_lang/fr/webext/content_scripts/panel.js from [e0aa55a645] to [b922bcc025].
︙ | ︙ | |||
40 41 42 43 44 45 46 47 48 49 50 51 52 53 | this.xPanelBar.appendChild(oGrammalecte.createNode("div", {className: "grammalecte_panel_invisible_marker", textContent: "__grammalecte_panel__"})); this.xPanelBar.appendChild(this._createButtons()); let xTitle = oGrammalecte.createNode("div", {className: "grammalecte_panel_title"}); xTitle.appendChild(this._createLogo()); xTitle.appendChild(oGrammalecte.createNode("div", {className: "grammalecte_panel_label", textContent: sTitle})); this.xPanelBar.appendChild(xTitle); xPanel.appendChild(this.xPanelBar); xPanel.appendChild(this.xPanelContent); return xPanel; } catch (e) { showError(e); } } | > > | 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | this.xPanelBar.appendChild(oGrammalecte.createNode("div", {className: "grammalecte_panel_invisible_marker", textContent: "__grammalecte_panel__"})); this.xPanelBar.appendChild(this._createButtons()); let xTitle = oGrammalecte.createNode("div", {className: "grammalecte_panel_title"}); xTitle.appendChild(this._createLogo()); xTitle.appendChild(oGrammalecte.createNode("div", {className: "grammalecte_panel_label", textContent: sTitle})); this.xPanelBar.appendChild(xTitle); xPanel.appendChild(this.xPanelBar); this._createMesssageBlock(); xPanel.appendChild(this.xPanelMessageBlock); xPanel.appendChild(this.xPanelContent); return xPanel; } catch (e) { showError(e); } } |
︙ | ︙ | |||
92 93 94 95 96 97 98 99 100 101 102 103 104 105 | } _createCloseButton () { let xButton = oGrammalecte.createNode("div", {className: "grammalecte_panel_button grammalecte_close_button", textContent: "×", title: "Fermer la fenêtre"}); xButton.onclick = () => { this.hide(); }; return xButton; } insertIntoPage () { if (this.bShadow) { oGrammalecte.createStyle("content_scripts/panel.css", null, this.xShadow); oGrammalecte.createStyle("content_scripts/panel_gc.css", null, this.xShadow); oGrammalecte.createStyle("content_scripts/panel_lxg.css", null, this.xShadow); oGrammalecte.createStyle("content_scripts/panel_conj.css", null, this.xShadow); | > > > > > > > > > | 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 | } _createCloseButton () { let xButton = oGrammalecte.createNode("div", {className: "grammalecte_panel_button grammalecte_close_button", textContent: "×", title: "Fermer la fenêtre"}); xButton.onclick = () => { this.hide(); }; return xButton; } _createMesssageBlock () { this.xPanelMessageBlock = oGrammalecte.createNode("div", {id: "grammalecte_panel_message_block"}); let xPanelMessageCloseButton = oGrammalecte.createNode("div", {id: "grammalecte_panel_message_close_button", textContent: "×"}); xPanelMessageCloseButton.onclick = () => { this.hideMessage() }; this.xPanelMessageBlock.appendChild(xPanelMessageCloseButton); this.xPanelMessage = oGrammalecte.createNode("div", {id: "grammalecte_panel_message"}); this.xPanelMessageBlock.appendChild(this.xPanelMessage); } insertIntoPage () { if (this.bShadow) { oGrammalecte.createStyle("content_scripts/panel.css", null, this.xShadow); oGrammalecte.createStyle("content_scripts/panel_gc.css", null, this.xShadow); oGrammalecte.createStyle("content_scripts/panel_lxg.css", null, this.xShadow); oGrammalecte.createStyle("content_scripts/panel_conj.css", null, this.xShadow); |
︙ | ︙ | |||
188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 | this.xWaitIcon.style.visibility = "visible"; } stopWaitIcon () { this.bWorking = false; this.xWaitIcon.style.visibility = "hidden"; } openURL (sURL) { xGrammalectePort.postMessage({ sCommand: "openURL", dParam: {"sURL": sURL}, dInfo: {} }); } } | > > > > > > > > > | 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 | this.xWaitIcon.style.visibility = "visible"; } stopWaitIcon () { this.bWorking = false; this.xWaitIcon.style.visibility = "hidden"; } showMessage (sMessage) { this.xPanelMessageBlock.style.display = "block"; this.xPanelMessage.textContent = sMessage; } hideMessage () { this.xPanelMessageBlock.style.display = "none"; } openURL (sURL) { xGrammalectePort.postMessage({ sCommand: "openURL", dParam: {"sURL": sURL}, dInfo: {} }); } } |
Modified gc_lang/fr/webext/content_scripts/panel_gc.js from [d43eb4e247] to [410ff2e6bf].
︙ | ︙ | |||
127 128 129 130 131 132 133 | this.xNode = xNode; this.oTooltip.hide(); this.bWorking = false; this.clear(); if (xNode) { this.oNodeControl.setNode(xNode); if (!(xNode.tagName == "TEXTAREA" || xNode.tagName == "INPUT")) { | | | 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 | this.xNode = xNode; this.oTooltip.hide(); this.bWorking = false; this.clear(); if (xNode) { this.oNodeControl.setNode(xNode); if (!(xNode.tagName == "TEXTAREA" || xNode.tagName == "INPUT")) { this.showMessage("La zone de texte analysée est un champ textuel enrichi susceptible de contenir des éléments non textuels qui seront effacés lors de la correction."); } } else { this.oNodeControl.clear(); } } recheckAll () { |
︙ | ︙ | |||
376 377 378 379 380 381 382 | return sText.replace(/ /g, " ").replace(/</g, "<").replace(/>/g, ">").replace(/&/g, "&"); } addSummary () { // todo } | | | | 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 | return sText.replace(/ /g, " ").replace(/</g, "<").replace(/>/g, ">").replace(/&/g, "&"); } addSummary () { // todo } addMessageToGCPanel (sMessage) { let xNode = oGrammalecte.createNode("div", {className: "grammalecte_panel_flow_message", textContent: sMessage}); this.xParagraphList.appendChild(xNode); } _copyToClipboard (sText) { // recipe from https://github.com/mdn/webextensions-examples/blob/master/context-menu-copy-link-with-types/clipboard-helper.js function setClipboardData (xEvent) { document.removeEventListener("copy", setClipboardData, true); |
︙ | ︙ | |||
429 430 431 432 433 434 435 | addLxgSeparator (sText) { if (this.xLxgPanelContent.textContent !== "") { this.xLxgPanelContent.appendChild(oGrammalecte.createNode("div", {className: "grammalecte_lxg_separator", textContent: sText})); } } | | | | 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 | addLxgSeparator (sText) { if (this.xLxgPanelContent.textContent !== "") { this.xLxgPanelContent.appendChild(oGrammalecte.createNode("div", {className: "grammalecte_lxg_separator", textContent: sText})); } } addMessageToLxgPanel (sMessage) { let xNode = oGrammalecte.createNode("div", {className: "grammalecte_panel_flow_message", textContent: sMessage}); this.xLxgPanelContent.appendChild(xNode); } addListOfTokens (lToken) { try { if (lToken) { this.nLxgCount += 1; |
︙ | ︙ |