2017-03-26 02:30:59 +00:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
const template = {};
|
2015-03-27 10:30:07 +00:00
|
|
|
tDocLoader();
|
|
|
|
|
2017-03-26 02:30:59 +00:00
|
|
|
|
2012-04-16 01:56:12 +00:00
|
|
|
function t(key, params) {
|
2017-04-17 15:54:39 +00:00
|
|
|
const cache = !params && t.cache[key];
|
|
|
|
const s = cache || chrome.i18n.getMessage(key, params);
|
2017-07-16 18:02:00 +00:00
|
|
|
if (s === '') {
|
2017-03-26 02:30:59 +00:00
|
|
|
throw `Missing string "${key}"`;
|
|
|
|
}
|
2017-04-17 15:54:39 +00:00
|
|
|
if (!params && !cache) {
|
|
|
|
t.cache[key] = s;
|
|
|
|
}
|
2017-03-26 02:30:59 +00:00
|
|
|
return s;
|
2012-04-16 01:56:12 +00:00
|
|
|
}
|
2017-03-26 02:30:59 +00:00
|
|
|
|
|
|
|
|
2012-04-16 01:56:12 +00:00
|
|
|
function tE(id, key, attr, esc) {
|
2017-03-26 02:30:59 +00:00
|
|
|
if (attr) {
|
|
|
|
document.getElementById(id).setAttribute(attr, t(key));
|
2017-07-16 18:02:00 +00:00
|
|
|
} else if (typeof esc === 'undefined' || esc) {
|
2017-03-26 02:30:59 +00:00
|
|
|
document.getElementById(id).appendChild(document.createTextNode(t(key)));
|
|
|
|
} else {
|
|
|
|
document.getElementById(id).innerHTML = t(key);
|
|
|
|
}
|
2012-04-16 01:56:12 +00:00
|
|
|
}
|
2015-03-27 10:30:07 +00:00
|
|
|
|
2017-03-26 02:30:59 +00:00
|
|
|
|
2017-07-19 10:06:02 +00:00
|
|
|
function tHTML(html, tag) {
|
|
|
|
// body is a text node without HTML tags
|
|
|
|
if (typeof html === 'string' && /<\w+/.test(html) === false) {
|
|
|
|
return document.createTextNode(html);
|
2017-03-26 02:30:59 +00:00
|
|
|
}
|
2017-07-19 10:06:02 +00:00
|
|
|
if (typeof html === 'string') {
|
|
|
|
html = html.replace(/>\s+</g, '><'); // spaces are removed; use for an explicit space
|
|
|
|
if (tag) {
|
|
|
|
html = `<${tag}>${html}</${tag}>`;
|
|
|
|
}
|
|
|
|
const node = (new DOMParser()).parseFromString(html, 'text/html').querySelector('body').firstElementChild;
|
|
|
|
if (html.includes('i18n-')) {
|
|
|
|
tNodeList(node.getElementsByTagName('*'));
|
|
|
|
}
|
|
|
|
return node;
|
|
|
|
}
|
|
|
|
return html;
|
2015-03-27 10:30:07 +00:00
|
|
|
}
|
|
|
|
|
2017-03-26 02:30:59 +00:00
|
|
|
|
2015-03-27 10:30:07 +00:00
|
|
|
function tNodeList(nodes) {
|
2017-04-17 15:54:39 +00:00
|
|
|
const PREFIX = 'i18n-';
|
|
|
|
for (let n = nodes.length; --n >= 0;) {
|
|
|
|
const node = nodes[n];
|
2017-03-26 02:30:59 +00:00
|
|
|
// skip non-ELEMENT_NODE
|
2017-07-16 18:02:00 +00:00
|
|
|
if (node.nodeType !== 1) {
|
2017-03-26 02:30:59 +00:00
|
|
|
continue;
|
|
|
|
}
|
2017-07-16 18:02:00 +00:00
|
|
|
if (node.localName === 'template') {
|
2017-04-17 15:54:39 +00:00
|
|
|
const elements = node.content.querySelectorAll('*');
|
|
|
|
tNodeList(elements);
|
|
|
|
template[node.dataset.id] = elements[0];
|
2017-04-07 12:24:55 +00:00
|
|
|
// compress inter-tag whitespace to reduce number of DOM nodes by 25%
|
2017-04-17 15:54:39 +00:00
|
|
|
const walker = document.createTreeWalker(elements[0], NodeFilter.SHOW_TEXT);
|
|
|
|
const toRemove = [];
|
|
|
|
while (walker.nextNode()) {
|
|
|
|
const textNode = walker.currentNode;
|
|
|
|
if (!textNode.nodeValue.trim()) {
|
|
|
|
toRemove.push(textNode);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
toRemove.forEach(el => el.remove());
|
2017-03-26 02:30:59 +00:00
|
|
|
continue;
|
|
|
|
}
|
2017-04-17 15:54:39 +00:00
|
|
|
for (let a = node.attributes.length; --a >= 0;) {
|
|
|
|
const attr = node.attributes[a];
|
|
|
|
const name = attr.nodeName;
|
|
|
|
if (!name.startsWith(PREFIX)) {
|
2017-03-26 02:30:59 +00:00
|
|
|
continue;
|
|
|
|
}
|
2017-04-17 15:54:39 +00:00
|
|
|
const type = name.substr(PREFIX.length);
|
2017-03-26 02:30:59 +00:00
|
|
|
const value = t(attr.value);
|
2017-04-17 15:54:39 +00:00
|
|
|
switch (type) {
|
2017-03-26 02:30:59 +00:00
|
|
|
case 'text':
|
|
|
|
node.insertBefore(document.createTextNode(value), node.firstChild);
|
|
|
|
break;
|
2017-04-10 06:47:09 +00:00
|
|
|
case 'text-append':
|
|
|
|
node.appendChild(document.createTextNode(value));
|
|
|
|
break;
|
2017-03-26 02:30:59 +00:00
|
|
|
case 'html':
|
|
|
|
node.insertAdjacentHTML('afterbegin', value);
|
|
|
|
break;
|
|
|
|
default:
|
2017-04-17 15:54:39 +00:00
|
|
|
node.setAttribute(type, value);
|
2017-03-26 02:30:59 +00:00
|
|
|
}
|
2017-04-17 15:54:39 +00:00
|
|
|
node.removeAttribute(name);
|
2017-03-26 02:30:59 +00:00
|
|
|
}
|
|
|
|
}
|
2015-03-27 10:30:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-03-26 02:30:59 +00:00
|
|
|
function tDocLoader() {
|
2017-04-17 15:54:39 +00:00
|
|
|
t.cache = tryJSONparse(localStorage.L10N) || {};
|
2017-07-11 15:03:35 +00:00
|
|
|
|
|
|
|
// reset L10N cache on UI language change
|
|
|
|
const UIlang = chrome.i18n.getUILanguage();
|
2017-07-16 18:02:00 +00:00
|
|
|
if (t.cache.browserUIlanguage !== UIlang) {
|
2017-07-11 15:03:35 +00:00
|
|
|
t.cache = {browserUIlanguage: UIlang};
|
|
|
|
localStorage.L10N = JSON.stringify(t.cache);
|
|
|
|
}
|
|
|
|
|
2017-04-17 15:54:39 +00:00
|
|
|
const cacheLength = Object.keys(t.cache).length;
|
2017-07-11 15:03:35 +00:00
|
|
|
|
2017-03-26 02:30:59 +00:00
|
|
|
// localize HEAD
|
2017-04-09 06:43:51 +00:00
|
|
|
tNodeList(document.getElementsByTagName('*'));
|
2017-03-23 17:49:23 +00:00
|
|
|
|
2017-03-26 02:30:59 +00:00
|
|
|
// localize BODY
|
2017-04-09 05:10:25 +00:00
|
|
|
const process = mutations => {
|
2017-03-26 02:30:59 +00:00
|
|
|
for (const mutation of mutations) {
|
|
|
|
tNodeList(mutation.addedNodes);
|
|
|
|
}
|
2017-04-09 05:10:25 +00:00
|
|
|
};
|
|
|
|
const observer = new MutationObserver(process);
|
2017-03-26 02:30:59 +00:00
|
|
|
const onLoad = () => {
|
|
|
|
tDocLoader.stop();
|
2017-04-09 05:10:25 +00:00
|
|
|
process(observer.takeRecords());
|
2017-07-16 18:02:00 +00:00
|
|
|
if (cacheLength !== Object.keys(t.cache).length) {
|
2017-04-17 15:54:39 +00:00
|
|
|
localStorage.L10N = JSON.stringify(t.cache);
|
|
|
|
}
|
2017-03-26 02:30:59 +00:00
|
|
|
};
|
|
|
|
tDocLoader.start = () => {
|
|
|
|
observer.observe(document, {subtree: true, childList: true});
|
|
|
|
};
|
|
|
|
tDocLoader.stop = () => {
|
|
|
|
observer.disconnect();
|
|
|
|
document.removeEventListener('DOMContentLoaded', onLoad);
|
|
|
|
};
|
|
|
|
tDocLoader.start();
|
|
|
|
document.addEventListener('DOMContentLoaded', onLoad);
|
2015-03-27 10:30:07 +00:00
|
|
|
}
|