aboutsummaryrefslogtreecommitdiff
path: root/html/display_panel/content/main_panel.js
diff options
context:
space:
mode:
authorhackademix <giorgio@maone.net>2019-04-08 21:37:35 +0200
committerhackademix <giorgio@maone.net>2019-04-08 21:37:35 +0200
commit2bee3260b45b559eb3bc75c6421dc7e573571cdb (patch)
tree0b03d83f1dd8419e1db191e79b5f6313f5322515 /html/display_panel/content/main_panel.js
parent4221db4850905c535a9197ae4369012ef9fd1575 (diff)
Fixed UI inconsistencies when whitelisting/blacklisting through wide wildcard matching.
Diffstat (limited to 'html/display_panel/content/main_panel.js')
-rw-r--r--html/display_panel/content/main_panel.js13
1 files changed, 11 insertions, 2 deletions
diff --git a/html/display_panel/content/main_panel.js b/html/display_panel/content/main_panel.js
index 9172265..75de6aa 100644
--- a/html/display_panel/content/main_panel.js
+++ b/html/display_panel/content/main_panel.js
@@ -173,8 +173,8 @@ function createList(data, group){
*/
function refreshUI(report) {
currentReport = report;
-
- document.querySelector("#site").className = report.siteStatus || "";
+ let {siteStatus, listedSite} = report;
+ document.querySelector("#site").className = siteStatus || "";
document.querySelector("#site h2").textContent =
`This site ${report.site}`;
@@ -198,6 +198,15 @@ function refreshUI(report) {
b.disabled = true;
}
+ if (siteStatus && siteStatus !== "unknown") {
+ let statusLabel = siteStatus;
+ if (listedSite && listedSite !== report.site) statusLabel += ` via ${listedSite}`;
+ let status = document.querySelector("#site .status");
+ status.classList.add(siteStatus);
+ document.querySelector("#site .status").textContent = statusLabel;
+ document.querySelector("#site .forget").disabled = true;
+ }
+
let noscript = scriptsCount === 0;
document.body.classList.toggle("empty", noscript);
}