front: hide everything related to plausible if it's disabled

This commit is contained in:
wukko 2024-03-16 23:33:33 +06:00
parent 49ef0b4e8b
commit 25aa2fb609
2 changed files with 24 additions and 15 deletions

View file

@ -564,7 +564,12 @@ function loadSettings() {
eid("cobalt-body").classList.add('no-animation');
}
for (let i = 0; i < checkboxes.length; i++) {
if (sGet(checkboxes[i]) === "true") eid(checkboxes[i]).checked = true;
try {
if (sGet(checkboxes[i]) === "true") eid(checkboxes[i]).checked = true;
}
catch {
console.error(`checkbox ${checkboxes[i]} failed to initialize`)
}
}
for (let i in switchers) {
changeSwitcher(i, sGet(i))

View file

@ -168,10 +168,9 @@ export default function(obj) {
}, {
name: "privacy",
title: `${emoji("🔒")} ${t("CollapsePrivacy")}`,
body: t("PrivacyPolicy")
+ `<br>`
+ `<br>`
+ t("AnalyticsDescription")
body: t("PrivacyPolicy") + `${
process.env.PLAUSIBLE_HOSTNAME ? `<br><br>${t("AnalyticsDescription")}` : ''
}`
}, {
name: "legal",
title: `${emoji("📑")} ${t("CollapseLegal")}`,
@ -499,16 +498,21 @@ export default function(obj) {
padding: "no-margin"
}])
})
+ settingsCategory({
name: "privacy",
title: t('PrivateAnalytics'),
body: checkbox([{
action: "plausible_ignore",
name: t("SettingsDisableAnalytics"),
padding: "no-margin"
}])
+ explanation(t('SettingsAnalyticsExplanation'))
})
+ (() => {
if (process.env.PLAUSIBLE_HOSTNAME) {
return settingsCategory({
name: "privacy",
title: t('PrivateAnalytics'),
body: checkbox([{
action: "plausible_ignore",
name: t("SettingsDisableAnalytics"),
padding: "no-margin"
}])
+ explanation(t('SettingsAnalyticsExplanation'))
})
}
return ''
})()
+ settingsCategory({
name: "miscellaneous",
title: t('Miscellaneous'),