ttrss/js/PrefHelpers.js

290 lines
7.1 KiB
JavaScript
Raw Normal View History

'use strict';
/* global __, dijit, dojo, Tables, xhrPost, Notify, xhrJson */
2020-06-04 19:04:17 +02:00
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();
2020-06-04 19:04:17 +02:00
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...");
2020-06-04 19:04:17 +02:00
}
},
2020-06-04 19:04:17 +02:00
generate: function() {
const title = prompt("Password description:")
2020-06-04 19:04:17 +02:00
if (title) {
xhrPost("backend.php", {op: "pref-prefs", method: "generateAppPassword", title: title}, (transport) => {
this.updateContent(transport.responseText);
Notify.close();
});
2018-12-02 18:56:30 +01:00
Notify.progress("Loading, please wait...");
}
},
2020-06-04 19:04:17 +02:00
},
clearFeedAccessKeys: function() {
if (confirm(__("This will invalidate all previously generated feed URLs. Continue?"))) {
Notify.progress("Clearing URLs...");
2020-06-04 19:04:17 +02:00
xhrPost("backend.php", {op: "pref-feeds", method: "clearKeys"}, () => {
Notify.info("Generated URLs cleared.");
});
}
2020-06-04 19:04:17 +02:00
return false;
},
2021-02-06 08:10:54 +01:00
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);
2021-02-06 08:10:54 +01:00
Notify.close();
});
},
nextPage: function() {
this.log_page += 1;
this.update();
},
prevPage: function() {
if (this.log_page > 0) this.log_page -= 1;
2020-06-04 19:04:17 +02:00
2021-02-06 08:10:54 +01:00
this.update();
},
clear: function() {
if (confirm(__("Clear event log?"))) {
2020-06-04 19:04:17 +02:00
2021-02-06 08:10:54 +01:00
Notify.progress("Loading, please wait...");
xhrPost("backend.php", {op: "pref-system", method: "clearLog"}, () => {
Helpers.EventLog.refresh();
});
}
},
2020-06-04 19:04:17 +02:00
},
editProfiles: function() {
2020-06-04 19:04:17 +02:00
if (dijit.byId("profileEditDlg"))
dijit.byId("profileEditDlg").destroyRecursive();
2020-06-04 19:04:17 +02:00
const query = "backend.php?op=pref-prefs&method=editPrefProfiles";
2020-06-04 19:04:17 +02:00
// noinspection JSUnusedGlobalSymbols
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();
2020-06-04 19:04:17 +02:00
if (sel_rows.length > 0) {
if (confirm(__("Remove selected profiles? Active and default profiles will not be removed."))) {
Notify.progress("Removing selected profiles...", true);
2020-06-04 19:04:17 +02:00
const query = {
op: "rpc", method: "remprofiles",
ids: sel_rows.toString()
};
xhrPost("backend.php", query, () => {
2018-12-02 18:56:30 +01:00
Notify.close();
2018-12-03 10:46:00 +01:00
Helpers.editProfiles();
});
}
2020-06-04 19:04:17 +02:00
} else {
alert(__("No profiles selected."));
}
},
activateProfile: function () {
const sel_rows = this.getSelectedProfiles();
2020-06-04 19:04:17 +02:00
if (sel_rows.length == 1) {
if (confirm(__("Activate selected profile?"))) {
Notify.progress("Loading, please wait...");
2020-06-04 19:04:17 +02:00
xhrPost("backend.php", {op: "rpc", method: "setprofile", id: sel_rows.toString()}, () => {
window.location.reload();
});
}
2018-12-11 12:25:41 +01:00
2020-06-04 19:04:17 +02:00
} else {
alert(__("Please choose a profile to activate."));
}
},
addProfile: function () {
if (this.validate()) {
Notify.progress("Creating profile...", true);
2018-12-11 12:25:41 +01:00
2020-06-04 19:04:17 +02:00
const query = {op: "rpc", method: "addprofile", title: dialog.attr('value').newprofile};
2020-06-04 19:04:17 +02:00
xhrPost("backend.php", query, () => {
Notify.close();
Helpers.editProfiles();
});
}
},
execute: function () {
if (this.validate()) {
//
2020-06-04 19:04:17 +02:00
}
},
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');
});
2020-06-04 19:04:17 +02:00
},
execute: function () {
Notify.progress('Saving data...', true);
2020-06-04 19:04:17 +02:00
xhrPost("backend.php", this.attr('value'), () => {
window.location.reload();
});
2020-06-04 19:04:17 +02:00
},
href: query
});
dialog.show();
},
confirmReset: function() {
if (confirm(__("Reset to defaults?"))) {
xhrPost("backend.php", {op: "pref-prefs", method: "resetconfig"}, (transport) => {
Helpers.refresh();
Notify.info(transport.responseText);
});
2020-06-04 19:04:17 +02:00
}
},
clearPluginData: function(name) {
if (confirm(__("Clear stored data for this plugin?"))) {
Notify.progress("Loading, please wait...");
2020-06-04 19:04:17 +02:00
xhrPost("backend.php", {op: "pref-prefs", method: "clearplugindata", name: name}, () => {
Helpers.refresh();
});
}
},
refresh: function() {
xhrPost("backend.php", { op: "pref-prefs" }, (transport) => {
dijit.byId('prefsTab').attr('content', transport.responseText);
2020-06-04 19:04:17 +02:00
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);
2020-06-04 19:04:17 +02:00
Element.show("upload_iframe");
2020-06-04 19:04:17 +02:00
return true;
}
},
onImportComplete: function(iframe) {
if (!iframe.contentDocument.body.innerHTML) return false;
2020-06-04 19:04:17 +02:00
Element.show(iframe);
2020-06-04 19:04:17 +02:00
Notify.close();
2020-06-04 19:04:17 +02:00
if (dijit.byId('opmlImportDlg'))
dijit.byId('opmlImportDlg').destroyRecursive();
2020-06-04 19:04:17 +02:00
const content = iframe.contentDocument.body.innerHTML;
2020-06-04 19:04:17 +02:00
const dialog = new dijit.Dialog({
id: "opmlImportDlg",
title: __("OPML Import"),
style: "width: 600px",
onCancel: function () {
window.location.reload();
},
execute: function () {
window.location.reload();
},
content: content
});
2020-06-04 19:04:17 +02:00
dojo.connect(dialog, "onShow", function () {
Element.hide(iframe);
});
2020-06-04 19:04:17 +02:00
dialog.show();
},
export: function() {
console.log("export");
window.open("backend.php?op=opml&method=export&" + dojo.formToQuery("opmlExportForm"));
},
changeKey: function() {
if (confirm(__("Replace current OPML publishing address with a new one?"))) {
Notify.progress("Trying to change address...", true);
2020-06-04 19:04:17 +02:00
xhrJson("backend.php", {op: "pref-feeds", method: "regenOPMLKey"}, (reply) => {
if (reply) {
const new_link = reply.link;
const e = $('pub_opml_url');
2020-06-04 19:04:17 +02:00
if (new_link) {
e.href = new_link;
e.innerHTML = new_link;
2020-06-04 19:04:17 +02:00
new Effect.Highlight(e);
2020-06-04 19:04:17 +02:00
Notify.close();
2020-06-04 19:04:17 +02:00
} else {
Notify.error("Could not change feed URL.");
}
2020-06-04 19:04:17 +02:00
}
});
}
return false;
},
}
};