ttrss/js/prefs.js

231 lines
5.2 KiB
JavaScript
Raw Normal View History

'use strict'
2018-12-02 14:18:59 +00:00
/* global dijit, __ */
let App;
let CommonDialogs;
let Filters;
let Users;
let Prefs;
2018-11-29 18:03:55 +00:00
const Plugins = {};
require(["dojo/_base/kernel",
"dojo/_base/declare",
"dojo/ready",
"dojo/parser",
"fox/AppBase",
"dojo/_base/loader",
"dojo/_base/html",
"dijit/ColorPalette",
"dijit/Dialog",
"dijit/form/Button",
"dijit/form/CheckBox",
"dijit/form/DropDownButton",
"dijit/form/FilteringSelect",
"dijit/form/MultiSelect",
"dijit/form/Form",
"dijit/form/RadioButton",
"dijit/form/ComboButton",
"dijit/form/Select",
"dijit/form/SimpleTextarea",
"dijit/form/TextBox",
"dijit/form/ValidationTextBox",
"dijit/InlineEditBox",
"dijit/layout/AccordionContainer",
"dijit/layout/AccordionPane",
"dijit/layout/BorderContainer",
"dijit/layout/ContentPane",
"dijit/layout/TabContainer",
"dijit/Menu",
"dijit/ProgressBar",
"dijit/Toolbar",
"dijit/Tree",
"dijit/tree/dndSource",
"dojo/data/ItemFileWriteStore",
"lib/CheckBoxStoreModel",
"lib/CheckBoxTree",
"fox/CommonDialogs",
"fox/CommonFilters",
"fox/PrefUsers",
"fox/PrefHelpers",
"fox/PrefFeedStore",
"fox/PrefFilterStore",
"fox/PrefFeedTree",
"fox/PrefFilterTree",
"fox/PrefLabelTree"], function (dojo, declare, ready, parser, AppBase) {
ready(function () {
try {
const _App = declare("fox.App", AppBase, {
constructor: function() {
window.onerror = function (message, filename, lineno, colno, error) {
report_error(message, filename, lineno, colno, error);
};
2018-12-01 15:08:09 +00:00
parser.parse();
2018-12-02 19:08:18 +00:00
this.setLoadingProgress(50);
2018-12-01 15:08:09 +00:00
const clientTzOffset = new Date().getTimezoneOffset() * 60;
const params = {op: "rpc", method: "sanityCheck", clientTzOffset: clientTzOffset};
xhrPost("backend.php", params, (transport) => {
try {
2018-12-02 19:08:18 +00:00
this.backendSanityCallback(transport);
} catch (e) {
exception_error(e);
}
});
},
initSecondStage: function() {
2018-12-02 19:08:18 +00:00
this.enableCsrfSupport();
document.onkeydown = (event) => { App.hotkeyHandler(event) };
App.setLoadingProgress(50);
Notify.close();
2018-12-02 19:08:18 +00:00
let tab = App.urlParam('tab');
if (tab) {
tab = dijit.byId(tab + "Tab");
if (tab) {
dijit.byId("pref-tabs").selectChild(tab);
2018-12-02 19:08:18 +00:00
switch (App.urlParam('method')) {
case "editfeed":
window.setTimeout(function () {
2018-12-02 19:08:18 +00:00
CommonDialogs.editFeed(App.urlParam('methodparam'))
}, 100);
break;
default:
2018-12-02 19:08:18 +00:00
console.warn("initSecondStage, unknown method:", App.urlParam("method"));
}
}
} else {
let tab = localStorage.getItem("ttrss:prefs-tab");
if (tab) {
tab = dijit.byId(tab);
if (tab) {
dijit.byId("pref-tabs").selectChild(tab);
}
}
}
dojo.connect(dijit.byId("pref-tabs"), "selectChild", function (elem) {
localStorage.setItem("ttrss:prefs-tab", elem.id);
2018-12-01 15:08:09 +00:00
});
},
hotkeyHandler: function (event) {
if (event.target.nodeName == "INPUT" || event.target.nodeName == "TEXTAREA") return;
2018-12-02 19:08:18 +00:00
const action_name = App.keyeventToAction(event);
if (action_name) {
switch (action_name) {
case "feed_subscribe":
CommonDialogs.quickAddFeed();
return false;
case "create_label":
CommonDialogs.addLabel();
return false;
case "create_filter":
Filters.quickAddFilter();
return false;
case "help_dialog":
2018-12-02 19:08:18 +00:00
App.helpDialog("main");
return false;
default:
console.log("unhandled action: " + action_name + "; keycode: " + event.which);
}
}
},
isPrefs: function() {
return true;
2018-12-01 15:08:09 +00:00
}
});
App = new _App();
} catch (e) {
exception_error(e);
2018-12-01 15:10:30 +00:00
}
});
});
function opmlImportComplete(iframe) {
if (!iframe.contentDocument.body.innerHTML) return false;
Element.show(iframe);
2018-12-02 17:56:30 +00:00
Notify.close();
if (dijit.byId('opmlImportDlg'))
dijit.byId('opmlImportDlg').destroyRecursive();
2018-11-29 17:07:23 +00:00
const content = iframe.contentDocument.body.innerHTML;
2018-11-29 17:07:23 +00:00
const dialog = new dijit.Dialog({
id: "opmlImportDlg",
title: __("OPML Import"),
style: "width: 600px",
onCancel: function () {
2018-11-30 12:07:44 +00:00
window.location.reload();
},
execute: function () {
2017-07-02 17:26:18 +00:00
window.location.reload();
},
content: content
});
2010-11-21 15:01:14 +00:00
dialog.show();
2010-11-21 15:01:14 +00:00
}
2010-01-13 20:59:02 +00:00
function opmlImport() {
2018-11-29 17:07:23 +00:00
const opml_file = $("opml_file");
2005-09-02 11:49:47 +00:00
if (opml_file.value.length == 0) {
2010-11-21 10:13:34 +00:00
alert(__("Please choose an OPML file first."));
2005-09-02 11:49:47 +00:00
return false;
} else {
2018-12-02 17:56:30 +00:00
Notify.progress("Importing, please wait...", true);
Element.show("upload_iframe");
2005-09-02 11:49:47 +00:00
return true;
}
}
function opmlRegenKey() {
2018-11-30 10:00:26 +00:00
if (confirm(__("Replace current OPML publishing address with a new one?"))) {
2018-12-02 17:56:30 +00:00
Notify.progress("Trying to change address...", true);
2018-11-30 10:00:26 +00:00
xhrJson("backend.php", { op: "pref-feeds", method: "regenOPMLKey" }, (reply) => {
2018-11-30 12:07:44 +00:00
if (reply) {
const new_link = reply.link;
const e = $('pub_opml_url');
2018-11-30 12:07:44 +00:00
if (new_link) {
e.href = new_link;
e.innerHTML = new_link;
2018-11-30 12:07:44 +00:00
new Effect.Highlight(e);
2018-12-02 17:56:30 +00:00
Notify.close();
2018-11-30 12:07:44 +00:00
} else {
2018-12-02 17:56:30 +00:00
Notify.error("Could not change feed URL.");
2018-11-30 12:07:44 +00:00
}
}
});
}
return false;
}
2007-10-18 04:51:29 +00:00
2011-12-28 05:46:54 +00:00
function gotoExportOpml(filename, settings) {
2018-11-29 17:07:23 +00:00
const tmp = settings ? 1 : 0;
2012-08-15 11:47:13 +00:00
document.location.href = "backend.php?op=opml&method=export&filename=" + filename + "&settings=" + tmp;
2011-12-28 05:46:54 +00:00
}