'use strict'; /* eslint-disable no-new */ /* global __, dijit, dojo, Tables, xhrPost, Notify, xhrJson, App, fox, Effect */ const Helpers = { AppPasswords: { getSelected: function() { return Tables.getSelected("app-password-list"); }, updateContent: function(data) { $("app_passwords_holder").innerHTML = data; dojo.parser.parse("app_passwords_holder"); }, removeSelected: function() { const rows = this.getSelected(); if (rows.length == 0) { alert("No passwords selected."); } else if (confirm(__("Remove selected app passwords?"))) { xhrPost("backend.php", {op: "pref-prefs", method: "deleteAppPassword", ids: rows.toString()}, (transport) => { this.updateContent(transport.responseText); Notify.close(); }); Notify.progress("Loading, please wait..."); } }, generate: function() { const title = prompt("Password description:") if (title) { xhrPost("backend.php", {op: "pref-prefs", method: "generateAppPassword", title: title}, (transport) => { this.updateContent(transport.responseText); Notify.close(); }); Notify.progress("Loading, please wait..."); } }, }, Feeds: { clearFeedAccessKeys: function() { if (confirm(__("This will invalidate all previously generated feed URLs. Continue?"))) { Notify.progress("Clearing URLs..."); xhrPost("backend.php", {op: "pref-feeds", method: "clearKeys"}, () => { Notify.info("Generated URLs cleared."); }); } return false; }, }, System: { // }, EventLog: { log_page: 0, refresh: function() { this.log_page = 0; this.update(); }, update: function() { xhrPost("backend.php", { op: "pref-system", severity: dijit.byId("severity").attr('value'), page: Helpers.EventLog.log_page }, (transport) => { dijit.byId('systemTab').attr('content', transport.responseText); Notify.close(); }); }, nextPage: function() { this.log_page += 1; this.update(); }, prevPage: function() { if (this.log_page > 0) this.log_page -= 1; this.update(); }, clear: function() { if (confirm(__("Clear event log?"))) { Notify.progress("Loading, please wait..."); xhrPost("backend.php", {op: "pref-system", method: "clearLog"}, () => { Helpers.EventLog.refresh(); }); } }, }, Profiles: { edit: function() { const dialog = new fox.SingleUseDialog({ id: "profileEditDlg", title: __("Settings Profiles"), getSelectedProfiles: function () { return Tables.getSelected("pref-profiles-list"); }, removeSelected: function () { const sel_rows = this.getSelectedProfiles(); if (sel_rows.length > 0) { if (confirm(__("Remove selected profiles? Active and default profiles will not be removed."))) { Notify.progress("Removing selected profiles...", true); const query = { op: "rpc", method: "remprofiles", ids: sel_rows.toString() }; xhrPost("backend.php", query, () => { Notify.close(); dialog.refresh(); }); } } else { alert(__("No profiles selected.")); } }, addProfile: function () { if (this.validate()) { Notify.progress("Creating profile...", true); const query = {op: "rpc", method: "addprofile", title: dialog.attr('value').newprofile}; xhrPost("backend.php", query, () => { Notify.close(); dialog.refresh(); }); } }, refresh: function() { xhrPost("backend.php", {op: 'pref-prefs', method: 'editPrefProfiles'}, (transport) => { dialog.attr('content', transport.responseText); }); }, execute: function () { const sel_rows = this.getSelectedProfiles(); if (sel_rows.length == 1) { if (confirm(__("Activate selected profile?"))) { Notify.progress("Loading, please wait..."); xhrPost("backend.php", {op: "rpc", method: "setprofile", id: sel_rows.toString()}, () => { window.location.reload(); }); } } else { alert(__("Please choose a profile to activate.")); } }, content: "" }); dialog.refresh(); dialog.show(); }, }, Prefs: { customizeCSS: function() { xhrJson("backend.php", {op: "pref-prefs", method: "customizeCSS"}, (reply) => { const dialog = new fox.SingleUseDialog({ title: __("Customize stylesheet"), apply: function() { xhrPost("backend.php", this.attr('value'), () => { new Effect.Appear("css_edit_apply_msg"); $("user_css_style").innerText = this.attr('value'); }); }, execute: function () { Notify.progress('Saving data...', true); xhrPost("backend.php", this.attr('value'), () => { window.location.reload(); }); }, content: `