File size: 6,869 Bytes
eb67da4 |
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 |
(function(window, undefined){
var isInit = false;
var ifr;
const isIE = checkInternetExplorer(); //check IE
var message = "This plugin doesn't work in Internet Explorer."
window.Asc.plugin.init = function(text)
{
if (isIE) {
document.getElementById("iframe_parent").innerHTML = "<h4 id='h4' style='margin:5px'>" + message + "</h4>";
return;
}
text = ProcessText(text);
if (!isInit) {
document.getElementById("iframe_parent").innerHTML = "";
ifr = document.createElement("iframe");
ifr.position = "fixed";
ifr.name = "google_name";
ifr.id = "google_id";
ifr.src = "./index_widget.html";//?text=" + encodeURIComponent(text);
ifr.style.top = "0px";
ifr.style.left = "0px";
ifr.style.width = "100%";
ifr.style.height = "100%";
ifr.setAttribute("frameBorder", "0");
document.getElementById("iframe_parent").appendChild(ifr);
isInit = true;
ifr.onload = function() {
if (ifr.contentWindow.document.readyState == 'complete')
setTimeout(function() {
// BUG: NVD-CWE-noinfo Insufficient Information
// ifr.contentDocument.getElementById("google_translate_element").innerHTML = text;
// FIXED:
ifr.contentDocument.getElementById("google_translate_element").innerHTML = escape(text);
if (text.length)
ifr.contentDocument.getElementById("div_btn").classList.remove("hidden");
}, 500);
var selectElement = ifr.contentDocument.getElementsByClassName('goog-te-combo')[0];
selectElement.addEventListener('change', function(event) {
ifr.contentWindow.postMessage("onchange_goog-te-combo", '*');
ifr.contentDocument.getElementById("google_translate_element").style.opacity = 0;
});
ifr.contentDocument.getElementById("google_translate_element").style.height = "fit-content";
var btn = ifr.contentDocument.createElement("button");
var btnReplace = ifr.contentDocument.createElement("button");
var div = ifr.contentDocument.createElement("div");
div.appendChild(btn);
div.appendChild(btnReplace);
div.id = "div_btn";
div.classList.add("skiptranslate");
div.classList.add("div_btn");
div.classList.add("hidden");
btn.innerHTML = window.Asc.plugin.tr("Copy");
btn.id = "btn_copy";
btn.classList.add("btn-text-default");
btnReplace.classList.add("btn-text-default");
btnReplace.innerHTML = window.Asc.plugin.tr("Replace");
btnReplace.id = "btn_replace";
setTimeout(function() {ifr.contentDocument.getElementById("body").appendChild(div);}, 100);
setTimeout(function() {
btnReplace.onclick = function () {
var translatedTxt = ifr.contentDocument.getElementById("google_translate_element").outerText;
var allParasTxt = translatedTxt.split(/\n/);
var allParsedParas = [];
for (var nStr = 0; nStr < allParasTxt.length; nStr++) {
if (allParasTxt[nStr].search(/ /) === 0) {
allParsedParas.push("");
allParasTxt[nStr] = allParasTxt[nStr].replace(/ /, "");
}
var sSplited = allParasTxt[nStr].split(/ /);
sSplited.forEach(function(item, i, sSplited) {
allParsedParas.push(item);
});
}
Asc.scope.arr = allParsedParas;
window.Asc.plugin.executeMethod("GetVersion", [], function(version) {
if (version === undefined) {
window.Asc.plugin.executeMethod("PasteText", [ifr.contentDocument.getElementById("google_translate_element").outerText]);
}
else {
window.Asc.plugin.executeMethod("GetSelectionType", [], function(sType) {
switch (sType) {
case "none":
case "drawing":
window.Asc.plugin.executeMethod("PasteText", [ifr.contentDocument.getElementById("google_translate_element").outerText]);
break;
case "text":
window.Asc.plugin.callCommand(function() {
Api.ReplaceTextSmart(Asc.scope.arr);
});
break;
}
});
}
});
}
});
ifr.contentWindow.postMessage("update_scroll", '*');
}
} else {
ifr.contentWindow.postMessage(text, '*');
ifr.contentDocument.getElementById("google_translate_element").style.opacity = 0;
}
};
function ProcessText(sText) {
return sText.replace(/ /gi, '\n').replace(/ /gi, '\n');
};
function checkInternetExplorer(){
var rv = -1;
if (window.navigator.appName == 'Microsoft Internet Explorer') {
const ua = window.navigator.userAgent;
const re = new RegExp('MSIE ([0-9]{1,}[\.0-9]{0,})');
if (re.exec(ua) != null) {
rv = parseFloat(RegExp.$1);
}
} else if (window.navigator.appName == 'Netscape') {
const ua = window.navigator.userAgent;
const re = new RegExp('Trident/.*rv:([0-9]{1,}[\.0-9]{0,})');
if (re.exec(ua) != null) {
rv = parseFloat(RegExp.$1);
}
}
return rv !== -1;
};
window.Asc.plugin.button = function(id)
{
this.executeCommand("close", "");
};
window.onresize = function()
{
ifr.contentWindow.postMessage("update_scroll", '*');
};
window.Asc.plugin.onExternalMouseUp = function()
{
var evt = document.createEvent("MouseEvents");
evt.initMouseEvent("mouseup", true, true, window, 1, 0, 0, 0, 0,
false, false, false, false, 0, null);
document.dispatchEvent(evt);
};
window.Asc.plugin.onTranslate = function()
{
if (isIE) {
var field = document.getElementById("h4");
if (field)
field.innerHTML = message = window.Asc.plugin.tr(message);
}
};
window.Asc.plugin.onThemeChanged = function(theme)
{
window.Asc.plugin.onThemeChangedBase(theme);
var style = document.getElementsByTagName('head')[0].lastChild;
setTimeout(()=>ifr.contentWindow.postMessage({theme,style : style.innerHTML}, '*'),600);
};
})(window, undefined);
|