mirror of
https://github.com/chylex/Firefox-SCsCC.git
synced 2024-11-14 17:42:52 +01:00
69dcae13ef
removed support for Firefox version less than 38 changed version to 0.9.0
158 lines
3.3 KiB
JavaScript
158 lines
3.3 KiB
JavaScript
"use strict";
|
|
|
|
var currRates, currRatesLT, div, resBtn, state, stateBtn, to;
|
|
|
|
|
|
|
|
|
|
window.addEventListener("load", function() {
|
|
div = document.querySelector("div");
|
|
resBtn = document.querySelector("#reset");
|
|
stateBtn = document.querySelector("#state");
|
|
|
|
stateBtn.addEventListener("click", function() {
|
|
if (state) {
|
|
this.textContent = "Turn on";
|
|
state = false;
|
|
}
|
|
else {
|
|
this.textContent = "Turn off";
|
|
state = true;
|
|
}
|
|
|
|
addon.port.emit("turnOnOff");
|
|
});
|
|
|
|
resBtn.addEventListener("click", function() {
|
|
addon.port.emit("resCurrRates");
|
|
});
|
|
|
|
document.querySelector("#options").addEventListener("click", function() {
|
|
addon.port.emit("options");
|
|
});
|
|
|
|
addon.port.emit("loaded");
|
|
});
|
|
|
|
|
|
|
|
|
|
function refreshCurrRateList() {
|
|
var currs, li, lihtml;
|
|
var ul = document.querySelector("ul");
|
|
|
|
while (ul.firstChild) {
|
|
ul.removeChild(ul.firstChild);
|
|
}
|
|
|
|
for (var id in currRates) {
|
|
currs = id.split("to");
|
|
|
|
li = document.createElement("li");
|
|
|
|
// span.curr - fromCurr to toCurr:
|
|
lihtml = document.createElement("span");
|
|
lihtml.className = "curr";
|
|
lihtml.textContent = currs[0] + " to " + currs[1] + ": ";
|
|
li.appendChild(lihtml);
|
|
|
|
// strong - currRate
|
|
lihtml = document.createElement("strong");
|
|
lihtml.textContent = currRates[id];
|
|
li.appendChild(lihtml);
|
|
|
|
li.appendChild(document.createElement("br"));
|
|
|
|
// span.upd - lastUpdate
|
|
lihtml = document.createElement("span");
|
|
lihtml.className = "upd";
|
|
lihtml.dataset.id = id;
|
|
lihtml.textContent = lastUpdate(id);
|
|
li.appendChild(lihtml);
|
|
|
|
ul.appendChild(li);
|
|
}
|
|
|
|
if (ul.childNodes.length === 0) {
|
|
resBtn.style.display = "none";
|
|
|
|
li = document.createElement("li");
|
|
li.textContent = "No downloaded exchange rate yet.";
|
|
|
|
ul.appendChild(li);
|
|
}
|
|
else {
|
|
resBtn.style.display = "initial";
|
|
}
|
|
|
|
addon.port.emit("panelHeight", div.clientHeight);
|
|
}
|
|
|
|
function lastUpdate(id) {
|
|
var lt = Date.now() - currRatesLT[id];
|
|
|
|
if (lt > 3600000) {
|
|
lt = Math.floor(lt / 3600000);
|
|
if (lt === 1) lt = "more than " + lt + " hour";
|
|
else lt = "more than " + lt + " hours";
|
|
}
|
|
else {
|
|
lt = Math.floor(lt / 60000);
|
|
if (lt === 0) lt = "less than a minute";
|
|
else if (lt === 1) lt += " minute";
|
|
else lt += " minutes";
|
|
}
|
|
|
|
return "(updated " + lt + " ago)";
|
|
}
|
|
|
|
function showToCurr(curr) {
|
|
var phtml;
|
|
var toCurrP = document.querySelector("#toCurr");
|
|
|
|
while (toCurrP.firstChild) {
|
|
toCurrP.removeChild(toCurrP.firstChild);
|
|
}
|
|
|
|
phtml = document.createElement("strong");
|
|
phtml.textContent = (curr === "") ? "No set currency! " : "Convert to: ";
|
|
toCurrP.appendChild(phtml);
|
|
|
|
phtml = (curr === "") ? "Please select a currency on the options page." : curr;
|
|
phtml = document.createTextNode(phtml);
|
|
toCurrP.appendChild(phtml);
|
|
}
|
|
|
|
|
|
|
|
|
|
addon.port.once("firstRun", function(data) {
|
|
currRates = data[0];
|
|
currRatesLT = data[1];
|
|
state = data[2];
|
|
|
|
showToCurr(data[3]);
|
|
|
|
refreshCurrRateList();
|
|
|
|
stateBtn.textContent = (state) ? "Turn off" : "Turn on";
|
|
});
|
|
|
|
addon.port.on("showPanel", function(data) {
|
|
showToCurr(data);
|
|
|
|
var spans = document.querySelectorAll("span.upd");
|
|
|
|
for (var i = 0, len = spans.length; i < len; i++) {
|
|
spans[i].textContent = lastUpdate(spans[i].dataset.id);
|
|
}
|
|
|
|
addon.port.emit("panelHeight", div.clientHeight);
|
|
});
|
|
|
|
addon.port.on("refreshCurrRates", function(data) {
|
|
currRates = data[0];
|
|
currRatesLT = data[1];
|
|
|
|
refreshCurrRateList();
|
|
}); |