ttrss/js/tt-rss.js

920 lines
21 KiB
JavaScript
Raw Normal View History

2018-11-29 19:03:55 +01:00
/* global dijit, __ */
2018-11-29 18:09:25 +01:00
let global_unread = -1;
let _widescreen_mode = false;
let _rpc_seq = 0;
let _active_feed_id = 0;
let _active_feed_is_cat = false;
let hotkey_actions = {};
let _headlines_scroll_timeout = false;
function next_seq() {
_rpc_seq += 1;
return _rpc_seq;
}
function get_seq() {
return _rpc_seq;
}
function activeFeedIsCat() {
return !!_active_feed_is_cat;
}
function getActiveFeedId() {
return _active_feed_id;
}
function setActiveFeedId(id, is_cat) {
hash_set('f', id);
hash_set('c', is_cat ? 1 : 0);
_active_feed_id = id;
_active_feed_is_cat = is_cat;
$("headlines-frame").setAttribute("feed-id", id);
$("headlines-frame").setAttribute("is-cat", is_cat ? 1 : 0);
selectFeed(id, is_cat);
2013-04-24 17:49:37 +02:00
PluginHost.run(PluginHost.HOOK_FEED_SET_ACTIVE, _active_article_id);
}
2010-11-07 10:11:05 +01:00
function updateFeedList() {
try {
Element.show("feedlistLoading");
2010-11-16 09:41:31 +01:00
resetCounterCache();
2010-11-16 10:23:06 +01:00
if (dijit.byId("feedTree")) {
dijit.byId("feedTree").destroyRecursive();
}
2018-11-29 18:07:23 +01:00
const store = new dojo.data.ItemFileWriteStore({
url: "backend.php?op=pref_feeds&method=getfeedtree&mode=2"
});
2018-11-29 18:07:23 +01:00
const treeModel = new fox.FeedStoreModel({
store: store,
query: {
"type": getInitParam('enable_feed_cats') == 1 ? "category" : "feed"
},
rootId: "root",
rootLabel: "Feeds",
childrenAttrs: ["items"]
});
2018-11-29 18:07:23 +01:00
const tree = new fox.FeedTree({
model: treeModel,
onClick: function (item, node) {
2018-11-29 18:07:23 +01:00
const id = String(item.id);
const is_cat = id.match("^CAT:");
const feed = id.substr(id.indexOf(":") + 1);
viewfeed({feed: feed, is_cat: is_cat});
return false;
},
openOnClick: false,
showRoot: false,
persist: true,
id: "feedTree",
}, "feedTree");
var tmph = dojo.connect(dijit.byId('feedMenu'), '_openMyself', function (event) {
console.log(dijit.getEnclosingWidget(event.target));
dojo.disconnect(tmph);
});
$("feeds-holder").appendChild(tree.domNode);
var tmph = dojo.connect(tree, 'onLoad', function () {
dojo.disconnect(tmph);
Element.hide("feedlistLoading");
try {
feedlist_init();
setLoadingProgress(25);
} catch (e) {
exception_error(e);
}
});
tree.startup();
} catch (e) {
exception_error(e);
}
2005-09-07 05:53:29 +02:00
}
function catchupAllFeeds() {
2005-08-22 13:53:39 +02:00
2018-11-29 18:07:23 +01:00
const str = __("Mark all articles as read?");
if (getInitParam("confirm_feed_catchup") != 1 || confirm(str)) {
notify_progress("Marking all feeds as read...");
xhrPost("backend.php", {op: "feeds", method: "catchupAll"}, () => {
request_counters(true);
viewCurrentFeed();
});
global_unread = 0;
updateTitle("");
}
}
2005-08-21 12:13:10 +02:00
2015-09-03 15:41:04 +02:00
function viewCurrentFeed(method) {
console.log("viewCurrentFeed: " + method);
2005-09-07 05:53:29 +02:00
2006-08-01 14:57:34 +02:00
if (getActiveFeedId() != undefined) {
2015-09-03 15:41:04 +02:00
viewfeed({feed: getActiveFeedId(), is_cat: activeFeedIsCat(), method: method});
}
2006-05-21 14:09:55 +02:00
return false; // block unneeded form submits
}
2005-08-21 17:35:22 +02:00
function timeout() {
if (getInitParam("bw_limit") != "1") {
request_counters(true);
setTimeout(timeout, 60*1000);
}
2005-08-21 18:16:41 +02:00
}
function search() {
2018-11-29 18:07:23 +01:00
const query = "backend.php?op=feeds&method=search&param=" +
2010-11-21 11:35:16 +01:00
param_escape(getActiveFeedId() + ":" + activeFeedIsCat());
if (dijit.byId("searchDlg"))
dijit.byId("searchDlg").destroyRecursive();
2018-11-29 18:07:23 +01:00
const dialog = new dijit.Dialog({
2010-11-21 11:35:16 +01:00
id: "searchDlg",
title: __("Search"),
style: "width: 600px",
execute: function() {
if (this.validate()) {
2018-11-29 20:56:34 +01:00
_search_query = this.attr('value');
2010-11-21 11:35:16 +01:00
this.hide();
viewCurrentFeed();
}
},
href: query});
dialog.show();
2005-08-22 07:58:37 +02:00
}
2005-08-21 12:13:10 +02:00
function updateTitle() {
2018-11-29 18:07:23 +01:00
let tmp = "Tiny Tiny RSS";
2005-11-25 09:20:32 +01:00
if (global_unread > 0) {
2013-03-21 19:17:32 +01:00
tmp = "(" + global_unread + ") " + tmp;
}
document.title = tmp;
}
function genericSanityCheck() {
setCookie("ttrss_test", "TEST");
if (getCookie("ttrss_test") != "TEST") {
2011-02-18 10:28:03 +01:00
return fatalError(2);
}
return true;
}
function init() {
2016-08-10 10:48:09 +02:00
window.onerror = function(message, filename, lineno, colno, error) {
report_error(message, filename, lineno, colno, error);
};
require(["dojo/_base/kernel",
"dojo/ready",
"dojo/parser",
"dojo/_base/loader",
"dojo/_base/html",
"dojo/query",
"dijit/ProgressBar",
"dijit/ColorPalette",
"dijit/Dialog",
"dijit/form/Button",
"dijit/form/ComboButton",
"dijit/form/CheckBox",
"dijit/form/DropDownButton",
"dijit/form/FilteringSelect",
"dijit/form/Form",
"dijit/form/RadioButton",
"dijit/form/Select",
2018-11-30 13:07:44 +01:00
"dijit/form/MultiSelect",
"dijit/form/SimpleTextarea",
"dijit/form/TextBox",
"dijit/form/ComboBox",
"dijit/form/ValidationTextBox",
"dijit/InlineEditBox",
"dijit/layout/AccordionContainer",
"dijit/layout/BorderContainer",
"dijit/layout/ContentPane",
"dijit/layout/TabContainer",
"dijit/PopupMenuItem",
"dijit/Menu",
"dijit/Toolbar",
"dijit/Tree",
"dijit/tree/dndSource",
"dijit/tree/ForestStoreModel",
"dojo/data/ItemFileWriteStore",
"fox/FeedStoreModel",
"fox/FeedTree" ], function (dojo, ready, parser) {
ready(function() {
try {
2016-08-10 11:23:35 +02:00
parser.parse();
2016-08-10 10:48:09 +02:00
if (!genericSanityCheck())
return false;
setLoadingProgress(30);
2016-08-10 10:48:09 +02:00
init_hotkey_actions();
2018-11-30 13:07:44 +01:00
const a = document.createElement('audio');
const hasAudio = !!a.canPlayType;
const hasSandbox = "sandbox" in document.createElement("iframe");
const hasMp3 = !!(a.canPlayType && a.canPlayType('audio/mpeg;').replace(/no/, ''));
const clientTzOffset = new Date().getTimezoneOffset() * 60;
2018-11-30 11:00:26 +01:00
2018-11-30 13:07:44 +01:00
const params = {
op: "rpc", method: "sanityCheck", hasAudio: hasAudio,
hasMp3: hasMp3,
clientTzOffset: clientTzOffset,
hasSandbox: hasSandbox
};
xhrPost("backend.php", params, (transport) => {
2018-11-30 13:07:44 +01:00
try {
backend_sanity_check_callback(transport);
} catch (e) {
console.error(e);
}
});
} catch (e) {
exception_error(e);
}
2016-08-10 10:48:09 +02:00
});
});
2005-11-26 11:06:56 +01:00
}
2016-08-10 10:48:09 +02:00
function init_hotkey_actions() {
hotkey_actions["next_feed"] = function() {
2018-11-29 18:07:23 +01:00
const rv = dijit.byId("feedTree").getNextFeed(
2016-08-10 10:48:09 +02:00
getActiveFeedId(), activeFeedIsCat());
if (rv) viewfeed({feed: rv[0], is_cat: rv[1], delayed: true})
2016-08-10 10:48:09 +02:00
};
hotkey_actions["prev_feed"] = function() {
2018-11-29 18:07:23 +01:00
const rv = dijit.byId("feedTree").getPreviousFeed(
2016-08-10 10:48:09 +02:00
getActiveFeedId(), activeFeedIsCat());
if (rv) viewfeed({feed: rv[0], is_cat: rv[1], delayed: true})
2016-08-10 10:48:09 +02:00
};
hotkey_actions["next_article"] = function() {
moveToPost('next');
};
hotkey_actions["prev_article"] = function() {
moveToPost('prev');
};
hotkey_actions["next_article_noscroll"] = function() {
moveToPost('next', true);
};
hotkey_actions["prev_article_noscroll"] = function() {
moveToPost('prev', true);
};
hotkey_actions["next_article_noexpand"] = function() {
moveToPost('next', true, true);
};
hotkey_actions["prev_article_noexpand"] = function() {
moveToPost('prev', true, true);
};
hotkey_actions["search_dialog"] = function() {
search();
};
hotkey_actions["toggle_mark"] = function() {
selectionToggleMarked();
2016-08-10 10:48:09 +02:00
};
hotkey_actions["toggle_publ"] = function() {
selectionTogglePublished();
2016-08-10 10:48:09 +02:00
};
hotkey_actions["toggle_unread"] = function() {
selectionToggleUnread({no_error: 1});
2016-08-10 10:48:09 +02:00
};
hotkey_actions["edit_tags"] = function() {
2018-11-29 18:07:23 +01:00
const id = getActiveArticleId();
2016-08-10 10:48:09 +02:00
if (id) {
editArticleTags(id);
2018-11-29 18:07:23 +01:00
}
2016-08-10 10:48:09 +02:00
}
hotkey_actions["open_in_new_window"] = function() {
if (getActiveArticleId()) {
openArticleInNewWindow(getActiveArticleId());
}
};
hotkey_actions["catchup_below"] = function() {
catchupRelativeToArticle(1);
};
hotkey_actions["catchup_above"] = function() {
catchupRelativeToArticle(0);
};
hotkey_actions["article_scroll_down"] = function() {
scrollArticle(40);
};
hotkey_actions["article_scroll_up"] = function() {
scrollArticle(-40);
};
hotkey_actions["close_article"] = function() {
2018-12-01 06:04:12 +01:00
if (isCombinedMode()) {
cdmCollapseActive();
} else {
closeArticlePanel();
}
2016-08-10 10:48:09 +02:00
};
hotkey_actions["email_article"] = function() {
if (typeof emailArticle != "undefined") {
emailArticle();
} else if (typeof mailtoArticle != "undefined") {
mailtoArticle();
} else {
alert(__("Please enable mail plugin first."));
}
};
hotkey_actions["select_all"] = function() {
selectArticles('all');
};
hotkey_actions["select_unread"] = function() {
selectArticles('unread');
};
hotkey_actions["select_marked"] = function() {
selectArticles('marked');
};
hotkey_actions["select_published"] = function() {
selectArticles('published');
};
hotkey_actions["select_invert"] = function() {
selectArticles('invert');
};
hotkey_actions["select_none"] = function() {
selectArticles('none');
};
hotkey_actions["feed_refresh"] = function() {
if (getActiveFeedId() != undefined) {
viewfeed({feed: getActiveFeedId(), is_cat: activeFeedIsCat()});
return;
}
};
hotkey_actions["feed_unhide_read"] = function() {
toggleDispRead();
};
hotkey_actions["feed_subscribe"] = function() {
quickAddFeed();
};
hotkey_actions["feed_debug_update"] = function() {
if (!activeFeedIsCat() && parseInt(getActiveFeedId()) > 0) {
window.open("backend.php?op=feeds&method=update_debugger&feed_id=" + getActiveFeedId() +
"&csrf_token=" + getInitParam("csrf_token"));
} else {
alert("You can't debug this kind of feed.");
}
};
hotkey_actions["feed_debug_viewfeed"] = function() {
viewfeed({feed: getActiveFeedId(), is_cat: activeFeedIsCat(), viewfeed_debug: true});
};
hotkey_actions["feed_edit"] = function() {
if (activeFeedIsCat())
alert(__("You can't edit this kind of feed."));
else
editFeed(getActiveFeedId());
};
hotkey_actions["feed_catchup"] = function() {
if (getActiveFeedId() != undefined) {
catchupCurrentFeed();
return;
}
};
hotkey_actions["feed_reverse"] = function() {
reverseHeadlineOrder();
};
hotkey_actions["feed_toggle_vgroup"] = function() {
xhrPost("backend.php", {op: "rpc", method: "togglepref", key: "VFEED_GROUP_BY_FEED"}, () => {
viewCurrentFeed();
})
2016-08-10 10:48:09 +02:00
};
hotkey_actions["catchup_all"] = function() {
catchupAllFeeds();
};
hotkey_actions["cat_toggle_collapse"] = function() {
if (activeFeedIsCat()) {
dijit.byId("feedTree").collapseCat(getActiveFeedId());
return;
}
};
hotkey_actions["goto_all"] = function() {
viewfeed({feed: -4});
};
hotkey_actions["goto_fresh"] = function() {
viewfeed({feed: -3});
};
hotkey_actions["goto_marked"] = function() {
viewfeed({feed: -1});
};
hotkey_actions["goto_published"] = function() {
viewfeed({feed: -2});
};
hotkey_actions["goto_tagcloud"] = function() {
displayDlg(__("Tag cloud"), "printTagCloud");
};
hotkey_actions["goto_prefs"] = function() {
gotoPreferences();
};
hotkey_actions["select_article_cursor"] = function() {
2018-11-29 18:07:23 +01:00
const id = getArticleUnderPointer();
2016-08-10 10:48:09 +02:00
if (id) {
2018-11-29 18:07:23 +01:00
const row = $("RROW-" + id);
2016-08-10 10:48:09 +02:00
if (row) {
2018-11-29 18:07:23 +01:00
const cb = dijit.getEnclosingWidget(
row.select(".rchk")[0]);
2016-08-10 10:48:09 +02:00
if (cb) {
if (!row.hasClassName("active"))
cb.attr("checked", !cb.attr("checked"));
2016-08-10 10:48:09 +02:00
toggleSelectRowById(cb, "RROW-" + id);
return false;
}
}
2016-08-10 10:48:09 +02:00
}
};
hotkey_actions["create_label"] = function() {
addLabel();
};
hotkey_actions["create_filter"] = function() {
quickAddFilter();
};
hotkey_actions["collapse_sidebar"] = function() {
collapse_feedlist();
};
hotkey_actions["toggle_embed_original"] = function() {
if (typeof embedOriginalArticle != "undefined") {
if (getActiveArticleId())
embedOriginalArticle(getActiveArticleId());
} else {
alert(__("Please enable embed_original plugin first."));
}
};
hotkey_actions["toggle_widescreen"] = function() {
2018-12-01 06:04:12 +01:00
if (!isCombinedMode()) {
2016-08-10 10:48:09 +02:00
_widescreen_mode = !_widescreen_mode;
2016-08-10 10:48:09 +02:00
// reset stored sizes because geometry changed
setCookie("ttrss_ci_width", 0);
setCookie("ttrss_ci_height", 0);
2016-08-10 10:48:09 +02:00
switchPanelMode(_widescreen_mode);
} else {
alert(__("Widescreen is not available in combined mode."));
}
};
hotkey_actions["help_dialog"] = function() {
helpDialog("main");
};
hotkey_actions["toggle_combined_mode"] = function() {
notify_progress("Loading, please wait...");
2018-12-01 06:04:12 +01:00
const value = isCombinedMode() ? "false" : "true";
2016-08-10 10:48:09 +02:00
xhrPost("backend.php", {op: "rpc", method: "setpref", key: "COMBINED_DISPLAY_MODE", value: value}, () => {
2018-11-30 13:07:44 +01:00
setInitParam("combined_display_mode",
!getInitParam("combined_display_mode"));
2016-08-10 10:48:09 +02:00
2018-11-30 13:07:44 +01:00
closeArticlePanel();
viewCurrentFeed();
})
2016-08-10 10:48:09 +02:00
};
hotkey_actions["toggle_cdm_expanded"] = function() {
notify_progress("Loading, please wait...");
const value = getInitParam("cdm_expanded") ? "false" : "true";
2018-11-30 23:18:32 +01:00
xhrPost("backend.php", { op: "rpc", method: "setpref", key: "CDM_EXPANDED", value: value }, () => {
setInitParam("cdm_expanded", !getInitParam("cdm_expanded"));
viewCurrentFeed();
});
};
2016-08-10 10:48:09 +02:00
}
function init_second_stage() {
updateFeedList();
closeArticlePanel();
2016-08-10 10:48:09 +02:00
if (parseInt(getCookie("ttrss_fh_width")) > 0) {
dijit.byId("feeds-holder").domNode.setStyle(
{width: getCookie("ttrss_fh_width") + "px" });
}
2016-08-10 10:48:09 +02:00
dijit.byId("main").resize();
2016-08-10 10:48:09 +02:00
var tmph = dojo.connect(dijit.byId('feeds-holder'), 'resize',
function (args) {
if (args && args.w >= 0) {
setCookie("ttrss_fh_width", args.w, getInitParam("cookie_lifetime"));
}
});
2005-11-16 09:45:00 +01:00
var tmph = dojo.connect(dijit.byId('content-insert'), 'resize',
function (args) {
if (args && args.w >= 0 && args.h >= 0) {
setCookie("ttrss_ci_width", args.w, getInitParam("cookie_lifetime"));
setCookie("ttrss_ci_height", args.h, getInitParam("cookie_lifetime"));
}
});
2007-04-29 05:46:08 +02:00
delCookie("ttrss_test");
2018-11-29 18:07:23 +01:00
const toolbar = document.forms["main_toolbar_form"];
2010-11-20 22:06:51 +01:00
dijit.getEnclosingWidget(toolbar.view_mode).attr('value',
getInitParam("default_view_mode"));
dijit.getEnclosingWidget(toolbar.order_by).attr('value',
getInitParam("default_view_order_by"));
2006-02-24 12:01:50 +01:00
2018-11-29 18:07:23 +01:00
const hash_feed_id = hash_get('f');
const hash_feed_is_cat = hash_get('c') == "1";
if (hash_feed_id != undefined) {
setActiveFeedId(hash_feed_id, hash_feed_is_cat);
}
2008-05-19 09:37:44 +02:00
setLoadingProgress(50);
// can't use cache_clear() here because viewfeed might not have initialized yet
if ('sessionStorage' in window && window['sessionStorage'] !== null)
sessionStorage.clear();
_widescreen_mode = getInitParam("widescreen");
switchPanelMode(_widescreen_mode);
2010-11-15 19:49:00 +01:00
$("headlines-frame").onscroll = (event) => {
clearTimeout(_headlines_scroll_timeout);
_headlines_scroll_timeout = window.setTimeout(function() {
//console.log('done scrolling', event);
headlinesScrollHandler(event);
2018-12-01 07:37:51 +01:00
}, 50);
}
console.log("second stage ok");
2013-01-22 16:49:47 +01:00
if (getInitParam("simple_update")) {
console.log("scheduling simple feed updater...");
window.setTimeout(update_random_feed, 30*1000);
2005-11-16 09:45:00 +01:00
}
2005-08-21 12:13:10 +02:00
}
2006-01-12 14:42:00 +01:00
function quickMenuGo(opid) {
switch (opid) {
case "qmcPrefs":
gotoPreferences();
break;
case "qmcLogout":
document.location.href = "backend.php?op=logout";
break;
case "qmcTagCloud":
displayDlg(__("Tag cloud"), "printTagCloud");
break;
case "qmcSearch":
search();
break;
case "qmcAddFeed":
quickAddFeed();
break;
case "qmcDigest":
window.location.href = "backend.php?op=digest";
break;
case "qmcEditFeed":
if (activeFeedIsCat())
alert(__("You can't edit this kind of feed."));
else
editFeed(getActiveFeedId());
break;
case "qmcRemoveFeed":
var actid = getActiveFeedId();
if (activeFeedIsCat()) {
alert(__("You can't unsubscribe from the category."));
return;
}
if (!actid) {
alert(__("Please select some feed first."));
return;
}
var fn = getFeedName(actid);
2007-08-10 18:16:43 +02:00
var pr = __("Unsubscribe from %s?").replace("%s", fn);
2007-08-10 18:16:43 +02:00
if (confirm(pr)) {
unsubscribeFeed(actid);
}
break;
case "qmcCatchupAll":
catchupAllFeeds();
break;
case "qmcShowOnlyUnread":
toggleDispRead();
break;
case "qmcToggleWidescreen":
2018-12-01 06:04:12 +01:00
if (!isCombinedMode()) {
_widescreen_mode = !_widescreen_mode;
// reset stored sizes because geometry changed
setCookie("ttrss_ci_width", 0);
setCookie("ttrss_ci_height", 0);
switchPanelMode(_widescreen_mode);
} else {
alert(__("Widescreen is not available in combined mode."));
}
break;
case "qmcHKhelp":
helpDialog("main");
break;
default:
console.log("quickMenuGo: unknown action: " + opid);
}
}
function toggleDispRead() {
2018-11-29 18:07:23 +01:00
const hide = !(getInitParam("hide_read_feeds") == "1");
xhrPost("backend.php", {op: "rpc", method: "setpref", key: "HIDE_READ_FEEDS", value: hide}, () => {
2018-11-30 13:07:44 +01:00
hideOrShowFeeds(hide);
setInitParam("hide_read_feeds", hide);
});
}
function parse_runtime_info(data) {
//console.log("parsing runtime info...");
2018-11-29 18:07:23 +01:00
for (const k in data) {
const v = data[k];
2006-05-23 07:34:50 +02:00
// console.log("RI: " + k + " => " + v);
if (k == "dep_ts" && parseInt(getInitParam("dep_ts")) > 0) {
if (parseInt(getInitParam("dep_ts")) < parseInt(v) && getInitParam("reload_on_ts_change")) {
window.location.reload();
}
}
2007-01-27 10:21:55 +01:00
if (k == "daemon_is_running" && v != 1) {
2015-06-07 17:41:18 +02:00
notify_error("<span onclick=\"explainError(1)\">Update daemon is not running.</span>", true);
return;
2007-07-16 15:05:29 +02:00
}
if (k == "update_result") {
2018-11-29 18:07:23 +01:00
const updatesIcon = dijit.byId("updatesIcon").domNode;
2015-02-03 12:42:20 +01:00
if (v) {
Element.show(updatesIcon);
} else {
Element.hide(updatesIcon);
}
}
2007-07-16 15:05:29 +02:00
if (k == "daemon_stamp_ok" && v != 1) {
2015-06-07 17:41:18 +02:00
notify_error("<span onclick=\"explainError(3)\">Update daemon is not updating feeds.</span>", true);
return;
2007-07-16 15:05:29 +02:00
}
if (k == "max_feed_id" || k == "num_feeds") {
if (init_params[k] != v) {
console.log("feed count changed, need to reload feedlist.");
updateFeedList();
}
}
init_params[k] = v;
notify('');
}
PluginHost.run(PluginHost.HOOK_RUNTIME_INFO_LOADED, data);
}
2008-02-20 06:27:16 +01:00
function collapse_feedlist() {
Element.toggle("feeds-holder");
2010-11-15 20:31:41 +01:00
2018-11-29 18:07:23 +01:00
const splitter = $("feeds-holder_splitter");
Element.visible("feeds-holder") ? splitter.show() : splitter.hide();
dijit.byId("main").resize();
}
2008-02-20 06:27:16 +01:00
function viewModeChanged() {
2012-09-03 08:29:49 +02:00
cache_clear();
2011-12-10 18:26:59 +01:00
return viewCurrentFeed('');
}
2008-02-20 06:27:16 +01:00
function hotkey_handler(e) {
if (e.target.nodeName == "INPUT" || e.target.nodeName == "TEXTAREA") return;
2010-11-20 21:45:31 +01:00
const action_name = keyeventToAction(e);
2012-12-27 19:30:11 +01:00
2018-11-30 13:07:44 +01:00
if (action_name) {
const action_func = hotkey_actions[action_name];
2012-12-27 19:30:11 +01:00
2018-11-30 13:07:44 +01:00
if (action_func != null) {
action_func();
e.stopPropagation();
return false;
}
}
}
function inPreferences() {
return false;
}
function reverseHeadlineOrder() {
2018-11-29 18:07:23 +01:00
const toolbar = document.forms["main_toolbar_form"];
const order_by = dijit.getEnclosingWidget(toolbar.order_by);
2018-11-29 18:07:23 +01:00
let value = order_by.attr('value');
if (value == "date_reverse")
value = "default";
else
value = "date_reverse";
order_by.attr('value', value);
viewCurrentFeed();
}
function handle_rpc_json(transport, scheduled_call) {
2018-11-29 18:07:23 +01:00
const netalert_dijit = dijit.byId("net-alert");
let netalert = false;
if (netalert_dijit) netalert = netalert_dijit.domNode;
try {
2018-11-29 18:07:23 +01:00
const reply = JSON.parse(transport.responseText);
if (reply) {
2018-11-29 18:07:23 +01:00
const error = reply['error'];
if (error) {
2018-11-29 18:07:23 +01:00
const code = error['code'];
const msg = error['msg'];
console.warn("[handle_rpc_json] received fatal error " + code + "/" + msg);
if (code != 0) {
fatalError(code, msg);
return false;
}
}
2018-11-29 18:07:23 +01:00
const seq = reply['seq'];
if (seq && get_seq() != seq) {
2018-11-29 19:03:55 +01:00
console.log("[handle_rpc_json] sequence mismatch: " + seq +
" (want: " + get_seq() + ")");
return true;
}
2018-11-29 18:07:23 +01:00
const message = reply['message'];
2018-11-29 19:03:55 +01:00
if (message == "UPDATE_COUNTERS") {
console.log("need to refresh counters...");
setInitParam("last_article_id", -1);
request_counters(true);
}
2018-11-29 18:07:23 +01:00
const counters = reply['counters'];
if (counters)
parse_counters(counters, scheduled_call);
2018-11-29 18:07:23 +01:00
const runtime_info = reply['runtime-info'];
if (runtime_info)
parse_runtime_info(runtime_info);
if (netalert) netalert.hide();
2013-01-14 11:16:55 +01:00
return reply;
} else {
2018-11-30 13:07:44 +01:00
if (netalert)
netalert.show();
else
notify_error("Communication problem with server.");
}
} catch (e) {
if (netalert)
netalert.show();
else
notify_error("Communication problem with server.");
console.error(e);
}
return false;
}
function switchPanelMode(wide) {
2018-12-01 06:04:12 +01:00
if (isCombinedMode()) return;
2018-11-29 18:07:23 +01:00
const article_id = getActiveArticleId();
if (wide) {
dijit.byId("headlines-wrap-inner").attr("design", 'sidebar');
dijit.byId("content-insert").attr("region", "trailing");
dijit.byId("content-insert").domNode.setStyle({width: '50%',
height: 'auto',
borderTopWidth: '0px' });
if (parseInt(getCookie("ttrss_ci_width")) > 0) {
dijit.byId("content-insert").domNode.setStyle(
{width: getCookie("ttrss_ci_width") + "px" });
}
$("headlines-frame").setStyle({ borderBottomWidth: '0px' });
$("headlines-frame").addClassName("wide");
} else {
dijit.byId("content-insert").attr("region", "bottom");
dijit.byId("content-insert").domNode.setStyle({width: 'auto',
height: '50%',
borderTopWidth: '0px'});
if (parseInt(getCookie("ttrss_ci_height")) > 0) {
dijit.byId("content-insert").domNode.setStyle(
{height: getCookie("ttrss_ci_height") + "px" });
}
$("headlines-frame").setStyle({ borderBottomWidth: '1px' });
$("headlines-frame").removeClassName("wide");
}
closeArticlePanel();
2013-01-19 07:55:51 +01:00
if (article_id) view(article_id);
2013-01-19 07:55:51 +01:00
xhrPost("backend.php", {op: "rpc", method: "setpanelmode", wide: wide ? 1 : 0});
}
2013-01-22 16:49:47 +01:00
function update_random_feed() {
console.log("in update_random_feed");
2013-01-22 16:49:47 +01:00
xhrPost("backend.php", { op: "rpc", method: "updateRandomFeed" }, (transport) => {
handle_rpc_json(transport, true);
window.setTimeout(update_random_feed, 30*1000);
});
2013-01-22 16:49:47 +01:00
}
function hash_get(key) {
2018-11-29 18:07:23 +01:00
const kv = window.location.hash.substring(1).toQueryParams();
return kv[key];
}
function hash_set(key, value) {
2018-11-29 18:07:23 +01:00
const kv = window.location.hash.substring(1).toQueryParams();
kv[key] = value;
window.location.hash = $H(kv).toQueryString();
}
function gotoPreferences() {
document.location.href = "prefs.php";
}