same, but for preferences

master
Andrew Dolgov 5 years ago
parent e37f8cfa78
commit 30ed5d7c3c

@ -1,274 +1,270 @@
define(["dojo/_base/declare"], function (declare) { const Helpers = {
Helpers = { AppPasswords: {
AppPasswords: { getSelected: function() {
getSelected: function() { return Tables.getSelected("app-password-list");
return Tables.getSelected("app-password-list"); },
}, updateContent: function(data) {
updateContent: function(data) { $("app_passwords_holder").innerHTML = data;
$("app_passwords_holder").innerHTML = data; dojo.parser.parse("app_passwords_holder");
dojo.parser.parse("app_passwords_holder"); },
}, removeSelected: function() {
removeSelected: function() { const rows = this.getSelected();
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..."); if (rows.length == 0) {
} alert("No passwords selected.");
} } else {
}, if (confirm(__("Remove selected app passwords?"))) {
generate: function() {
const title = prompt("Password description:")
if (title) { xhrPost("backend.php", {op: "pref-prefs", method: "deleteAppPassword", ids: rows.toString()}, (transport) => {
xhrPost("backend.php", {op: "pref-prefs", method: "generateAppPassword", title: title}, (transport) => {
this.updateContent(transport.responseText); this.updateContent(transport.responseText);
Notify.close(); Notify.close();
}); });
Notify.progress("Loading, please wait..."); Notify.progress("Loading, please wait...");
} }
}, }
}, },
clearFeedAccessKeys: function() { generate: function() {
if (confirm(__("This will invalidate all previously generated feed URLs. Continue?"))) { const title = prompt("Password description:")
Notify.progress("Clearing URLs...");
xhrPost("backend.php", {op: "pref-feeds", method: "clearKeys"}, () => { if (title) {
Notify.info("Generated URLs cleared."); xhrPost("backend.php", {op: "pref-prefs", method: "generateAppPassword", title: title}, (transport) => {
this.updateContent(transport.responseText);
Notify.close();
}); });
}
return false;
},
updateEventLog: function() {
xhrPost("backend.php", { op: "pref-system" }, (transport) => {
dijit.byId('systemConfigTab').attr('content', transport.responseText);
Notify.close();
});
},
clearEventLog: function() {
if (confirm(__("Clear event log?"))) {
Notify.progress("Loading, please wait..."); Notify.progress("Loading, please wait...");
xhrPost("backend.php", {op: "pref-system", method: "clearLog"}, () => {
this.updateEventLog();
});
} }
}, },
editProfiles: function() { },
clearFeedAccessKeys: function() {
if (dijit.byId("profileEditDlg")) if (confirm(__("This will invalidate all previously generated feed URLs. Continue?"))) {
dijit.byId("profileEditDlg").destroyRecursive(); Notify.progress("Clearing URLs...");
const query = "backend.php?op=pref-prefs&method=editPrefProfiles"; xhrPost("backend.php", {op: "pref-feeds", method: "clearKeys"}, () => {
Notify.info("Generated URLs cleared.");
});
}
// noinspection JSUnusedGlobalSymbols return false;
const dialog = new dijit.Dialog({ },
id: "profileEditDlg", updateEventLog: function() {
title: __("Settings Profiles"), xhrPost("backend.php", { op: "pref-system" }, (transport) => {
style: "width: 600px", dijit.byId('systemConfigTab').attr('content', transport.responseText);
getSelectedProfiles: function () { Notify.close();
return Tables.getSelected("pref-profiles-list"); });
}, },
removeSelected: function () { clearEventLog: function() {
const sel_rows = this.getSelectedProfiles(); if (confirm(__("Clear event log?"))) {
if (sel_rows.length > 0) { Notify.progress("Loading, please wait...");
if (confirm(__("Remove selected profiles? Active and default profiles will not be removed."))) {
Notify.progress("Removing selected profiles...", true); xhrPost("backend.php", {op: "pref-system", method: "clearLog"}, () => {
this.updateEventLog();
const query = { });
op: "rpc", method: "remprofiles", }
ids: sel_rows.toString() },
}; editProfiles: function() {
xhrPost("backend.php", query, () => {
Notify.close();
Helpers.editProfiles();
});
}
} else { if (dijit.byId("profileEditDlg"))
alert(__("No profiles selected.")); dijit.byId("profileEditDlg").destroyRecursive();
}
},
activateProfile: function () {
const sel_rows = this.getSelectedProfiles();
if (sel_rows.length == 1) { const query = "backend.php?op=pref-prefs&method=editPrefProfiles";
if (confirm(__("Activate selected profile?"))) {
Notify.progress("Loading, please wait...");
xhrPost("backend.php", {op: "rpc", method: "setprofile", id: sel_rows.toString()}, () => { // noinspection JSUnusedGlobalSymbols
window.location.reload(); const dialog = new dijit.Dialog({
}); id: "profileEditDlg",
} title: __("Settings Profiles"),
style: "width: 600px",
getSelectedProfiles: function () {
return Tables.getSelected("pref-profiles-list");
},
removeSelected: function () {
const sel_rows = this.getSelectedProfiles();
} else { if (sel_rows.length > 0) {
alert(__("Please choose a profile to activate.")); if (confirm(__("Remove selected profiles? Active and default profiles will not be removed."))) {
} Notify.progress("Removing selected profiles...", true);
},
addProfile: function () {
if (this.validate()) {
Notify.progress("Creating profile...", true);
const query = {op: "rpc", method: "addprofile", title: dialog.attr('value').newprofile}; const query = {
op: "rpc", method: "remprofiles",
ids: sel_rows.toString()
};
xhrPost("backend.php", query, () => { xhrPost("backend.php", query, () => {
Notify.close(); Notify.close();
Helpers.editProfiles(); Helpers.editProfiles();
}); });
} }
},
execute: function () {
if (this.validate()) {
}
},
href: query
});
dialog.show(); } else {
}, alert(__("No profiles selected."));
customizeCSS: function() { }
const query = "backend.php?op=pref-prefs&method=customizeCSS"; },
activateProfile: function () {
const sel_rows = this.getSelectedProfiles();
if (dijit.byId("cssEditDlg")) if (sel_rows.length == 1) {
dijit.byId("cssEditDlg").destroyRecursive(); if (confirm(__("Activate selected profile?"))) {
Notify.progress("Loading, please wait...");
const dialog = new dijit.Dialog({ xhrPost("backend.php", {op: "rpc", method: "setprofile", id: sel_rows.toString()}, () => {
id: "cssEditDlg", window.location.reload();
title: __("Customize stylesheet"), });
style: "width: 600px", }
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'), () => { } else {
window.location.reload(); alert(__("Please choose a profile to activate."));
}); }
},
addProfile: function () {
if (this.validate()) {
Notify.progress("Creating profile...", true);
}, const query = {op: "rpc", method: "addprofile", title: dialog.attr('value').newprofile};
href: query
});
dialog.show(); xhrPost("backend.php", query, () => {
}, Notify.close();
confirmReset: function() { Helpers.editProfiles();
if (confirm(__("Reset to defaults?"))) { });
xhrPost("backend.php", {op: "pref-prefs", method: "resetconfig"}, (transport) => {
Helpers.refresh(); }
Notify.info(transport.responseText); },
execute: function () {
if (this.validate()) {
}
},
href: query
});
dialog.show();
},
customizeCSS: function() {
const query = "backend.php?op=pref-prefs&method=customizeCSS";
if (dijit.byId("cssEditDlg"))
dijit.byId("cssEditDlg").destroyRecursive();
const dialog = new dijit.Dialog({
id: "cssEditDlg",
title: __("Customize stylesheet"),
style: "width: 600px",
apply: function() {
xhrPost("backend.php", this.attr('value'), () => {
new Effect.Appear("css_edit_apply_msg");
$("user_css_style").innerText = this.attr('value');
}); });
} },
}, execute: function () {
clearPluginData: function(name) { Notify.progress('Saving data...', true);
if (confirm(__("Clear stored data for this plugin?"))) {
Notify.progress("Loading, please wait...");
xhrPost("backend.php", {op: "pref-prefs", method: "clearplugindata", name: name}, () => { xhrPost("backend.php", this.attr('value'), () => {
Helpers.refresh(); window.location.reload();
}); });
}
}, },
refresh: function() { href: query
xhrPost("backend.php", { op: "pref-prefs" }, (transport) => { });
dijit.byId('genConfigTab').attr('content', transport.responseText);
Notify.close(); dialog.show();
},
confirmReset: function() {
if (confirm(__("Reset to defaults?"))) {
xhrPost("backend.php", {op: "pref-prefs", method: "resetconfig"}, (transport) => {
Helpers.refresh();
Notify.info(transport.responseText);
}); });
}, }
OPML: { },
import: function() { clearPluginData: function(name) {
const opml_file = $("opml_file"); if (confirm(__("Clear stored data for this plugin?"))) {
Notify.progress("Loading, please wait...");
if (opml_file.value.length == 0) { xhrPost("backend.php", {op: "pref-prefs", method: "clearplugindata", name: name}, () => {
alert(__("Please choose an OPML file first.")); Helpers.refresh();
return false; });
} else { }
Notify.progress("Importing, please wait...", true); },
refresh: function() {
xhrPost("backend.php", { op: "pref-prefs" }, (transport) => {
dijit.byId('genConfigTab').attr('content', transport.responseText);
Notify.close();
});
},
OPML: {
import: function() {
const opml_file = $("opml_file");
if (opml_file.value.length == 0) {
alert(__("Please choose an OPML file first."));
return false;
} else {
Notify.progress("Importing, please wait...", true);
Element.show("upload_iframe"); Element.show("upload_iframe");
return true; return true;
} }
}, },
onImportComplete: function(iframe) { onImportComplete: function(iframe) {
if (!iframe.contentDocument.body.innerHTML) return false; if (!iframe.contentDocument.body.innerHTML) return false;
Element.show(iframe); Element.show(iframe);
Notify.close(); Notify.close();
if (dijit.byId('opmlImportDlg')) if (dijit.byId('opmlImportDlg'))
dijit.byId('opmlImportDlg').destroyRecursive(); dijit.byId('opmlImportDlg').destroyRecursive();
const content = iframe.contentDocument.body.innerHTML; const content = iframe.contentDocument.body.innerHTML;
const dialog = new dijit.Dialog({ const dialog = new dijit.Dialog({
id: "opmlImportDlg", id: "opmlImportDlg",
title: __("OPML Import"), title: __("OPML Import"),
style: "width: 600px", style: "width: 600px",
onCancel: function () { onCancel: function () {
window.location.reload(); window.location.reload();
}, },
execute: function () { execute: function () {
window.location.reload(); window.location.reload();
}, },
content: content content: content
}); });
dojo.connect(dialog, "onShow", function () { dojo.connect(dialog, "onShow", function () {
Element.hide(iframe); Element.hide(iframe);
}); });
dialog.show(); dialog.show();
}, },
export: function() { export: function() {
console.log("export"); console.log("export");
window.open("backend.php?op=opml&method=export&" + dojo.formToQuery("opmlExportForm")); window.open("backend.php?op=opml&method=export&" + dojo.formToQuery("opmlExportForm"));
}, },
changeKey: function() { changeKey: function() {
if (confirm(__("Replace current OPML publishing address with a new one?"))) { if (confirm(__("Replace current OPML publishing address with a new one?"))) {
Notify.progress("Trying to change address...", true); Notify.progress("Trying to change address...", true);
xhrJson("backend.php", {op: "pref-feeds", method: "regenOPMLKey"}, (reply) => { xhrJson("backend.php", {op: "pref-feeds", method: "regenOPMLKey"}, (reply) => {
if (reply) { if (reply) {
const new_link = reply.link; const new_link = reply.link;
const e = $('pub_opml_url'); const e = $('pub_opml_url');
if (new_link) { if (new_link) {
e.href = new_link; e.href = new_link;
e.innerHTML = new_link; e.innerHTML = new_link;
new Effect.Highlight(e); new Effect.Highlight(e);
Notify.close(); Notify.close();
} else { } else {
Notify.error("Could not change feed URL."); Notify.error("Could not change feed URL.");
}
} }
}); }
} });
return false; }
}, return false;
} },
}; }
};
return Helpers;
});

@ -1,122 +1,118 @@
'use strict' 'use strict'
/* global __, ngettext */ /* global __, ngettext */
define(["dojo/_base/declare"], function (declare) {
Users = {
reload: function(sort) {
const user_search = $("user_search");
const search = user_search ? user_search.value : "";
xhrPost("backend.php", { op: "pref-users", sort: sort, search: search }, (transport) => {
dijit.byId('userConfigTab').attr('content', transport.responseText);
Notify.close();
});
},
add: function() {
const login = prompt(__("Please enter username:"), "");
if (login) {
Notify.progress("Adding user...");
xhrPost("backend.php", {op: "pref-users", method: "add", login: login}, (transport) => {
alert(transport.responseText);
Users.reload();
});
} const Users = {
}, reload: function(sort) {
edit: function(id) { const user_search = $("user_search");
const query = "backend.php?op=pref-users&method=edit&id=" + const search = user_search ? user_search.value : "";
encodeURIComponent(id);
xhrPost("backend.php", { op: "pref-users", sort: sort, search: search }, (transport) => {
if (dijit.byId("userEditDlg")) dijit.byId('userConfigTab').attr('content', transport.responseText);
dijit.byId("userEditDlg").destroyRecursive(); Notify.close();
});
const dialog = new dijit.Dialog({ },
id: "userEditDlg", add: function() {
title: __("User Editor"), const login = prompt(__("Please enter username:"), "");
style: "width: 600px",
execute: function () { if (login) {
if (this.validate()) { Notify.progress("Adding user...");
Notify.progress("Saving data...", true);
xhrPost("backend.php", {op: "pref-users", method: "add", login: login}, (transport) => {
xhrPost("backend.php", dojo.formToObject("user_edit_form"), (transport) => { alert(transport.responseText);
dialog.hide(); Users.reload();
Users.reload();
});
}
},
href: query
}); });
dialog.show(); }
}, },
resetSelected: function() { edit: function(id) {
const rows = this.getSelection(); const query = "backend.php?op=pref-users&method=edit&id=" +
encodeURIComponent(id);
if (rows.length == 0) {
alert(__("No users selected.")); if (dijit.byId("userEditDlg"))
return; dijit.byId("userEditDlg").destroyRecursive();
}
const dialog = new dijit.Dialog({
if (rows.length > 1) { id: "userEditDlg",
alert(__("Please select one user.")); title: __("User Editor"),
return; style: "width: 600px",
} execute: function () {
if (this.validate()) {
if (confirm(__("Reset password of selected user?"))) { Notify.progress("Saving data...", true);
Notify.progress("Resetting password for selected user...");
xhrPost("backend.php", dojo.formToObject("user_edit_form"), (transport) => {
dialog.hide();
Users.reload();
});
}
},
href: query
});
dialog.show();
},
resetSelected: function() {
const rows = this.getSelection();
if (rows.length == 0) {
alert(__("No users selected."));
return;
}
const id = rows[0]; if (rows.length > 1) {
alert(__("Please select one user."));
return;
}
xhrPost("backend.php", {op: "pref-users", method: "resetPass", id: id}, (transport) => { if (confirm(__("Reset password of selected user?"))) {
Notify.close(); Notify.progress("Resetting password for selected user...");
Notify.info(transport.responseText, true);
});
} const id = rows[0];
},
removeSelected: function() {
const sel_rows = this.getSelection();
if (sel_rows.length > 0) { xhrPost("backend.php", {op: "pref-users", method: "resetPass", id: id}, (transport) => {
if (confirm(__("Remove selected users? Neither default admin nor your account will be removed."))) { Notify.close();
Notify.progress("Removing selected users..."); Notify.info(transport.responseText, true);
});
const query = { }
op: "pref-users", method: "remove", },
ids: sel_rows.toString() removeSelected: function() {
}; const sel_rows = this.getSelection();
xhrPost("backend.php", query, () => { if (sel_rows.length > 0) {
this.reload(); if (confirm(__("Remove selected users? Neither default admin nor your account will be removed."))) {
}); Notify.progress("Removing selected users...");
}
} else { const query = {
alert(__("No users selected.")); op: "pref-users", method: "remove",
} ids: sel_rows.toString()
}, };
editSelected: function() {
const rows = this.getSelection();
if (rows.length == 0) { xhrPost("backend.php", query, () => {
alert(__("No users selected.")); this.reload();
return; });
} }
if (rows.length > 1) { } else {
alert(__("Please select one user.")); alert(__("No users selected."));
return; }
} },
editSelected: function() {
const rows = this.getSelection();
this.edit(rows[0]); if (rows.length == 0) {
}, alert(__("No users selected."));
getSelection :function() { return;
return Tables.getSelected("prefUserList");
} }
}
return Users; if (rows.length > 1) {
}); alert(__("Please select one user."));
return;
}
this.edit(rows[0]);
},
getSelection :function() {
return Tables.getSelected("prefUserList");
}
}

@ -2,10 +2,6 @@
/* global dijit, __ */ /* global dijit, __ */
let App; let App;
let CommonDialogs;
let Filters;
let Users;
let Helpers;
const Plugins = {}; const Plugins = {};

Loading…
Cancel
Save