fune/browser/components/privatebrowsing/content/aboutPrivateBrowsing.js

61 lines
2.4 KiB
JavaScript

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
/* eslint-env mozilla/frame-script */
const FAVICON_QUESTION = "chrome://global/skin/icons/question-32.png";
const TP_ENABLED_PREF = "privacy.trackingprotection.enabled";
const TP_PB_ENABLED_PREF = "privacy.trackingprotection.pbmode.enabled";
function updateTPInfo() {
let tpButton = document.getElementById("tpButton");
let tpToggle = document.getElementById("tpToggle");
let title = document.getElementById("title");
let titleTracking = document.getElementById("titleTracking");
let tpSubHeader = document.getElementById("tpSubHeader");
let globalTrackingEnabled = RPMGetBoolPref(TP_ENABLED_PREF);
let trackingEnabled = globalTrackingEnabled || RPMGetBoolPref(TP_PB_ENABLED_PREF);
// if tracking protection is enabled globally we don't even give the user
// a choice here by hiding the toggle completely.
tpButton.classList.toggle("hide", globalTrackingEnabled);
tpToggle.checked = trackingEnabled;
title.classList.toggle("hide", trackingEnabled);
titleTracking.classList.toggle("hide", !trackingEnabled);
tpSubHeader.classList.toggle("tp-off", !trackingEnabled);
}
document.addEventListener("DOMContentLoaded", function() {
if (!RPMIsWindowPrivate()) {
document.documentElement.classList.remove("private");
document.documentElement.classList.add("normal");
document.getElementById("favicon").setAttribute("href", FAVICON_QUESTION);
document.getElementById("startPrivateBrowsing").addEventListener("click", function() {
RPMSendAsyncMessage("OpenPrivateWindow");
});
return;
}
document.getElementById("startTour").addEventListener("click", function() {
RPMSendAsyncMessage("DontShowIntroPanelAgain");
});
document.getElementById("startTour").setAttribute("href",
RPMGetFormatURLPref("privacy.trackingprotection.introURL"));
document.getElementById("learnMore").setAttribute("href",
RPMGetFormatURLPref("app.support.baseURL") + "private-browsing");
let tpToggle = document.getElementById("tpToggle");
document.getElementById("tpButton").addEventListener("click", () => {
tpToggle.click();
});
tpToggle.addEventListener("change", function() {
RPMSetBoolPref(TP_PB_ENABLED_PREF, tpToggle.checked).then(function() {
updateTPInfo();
});
});
updateTPInfo();
});