(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 = "
" + message + "
";
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);