ttrss/js/tt-rss.js

568 lines
16 KiB
JavaScript
Raw Normal View History

2018-11-29 19:03:55 +01:00
/* global dijit, __ */
const App = {
global_unread: -1,
_widescreen_mode: false,
2018-12-01 19:51:00 +01:00
hotkey_actions: {},
2018-12-01 15:42:21 +01:00
init: function() {
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",
"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 {
parser.parse();
if (!App.genericSanityCheck())
return false;
Utils.setLoadingProgress(30);
2018-12-01 19:51:00 +01:00
App.initHotkeyActions();
2018-12-01 15:42:21 +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;
const params = {
op: "rpc", method: "sanityCheck", hasAudio: hasAudio,
hasMp3: hasMp3,
clientTzOffset: clientTzOffset,
hasSandbox: hasSandbox
};
xhrPost("backend.php", params, (transport) => {
try {
Utils.backendSanityCallback(transport);
} catch (e) {
console.error(e);
}
});
} catch (e) {
exception_error(e);
}
});
});
},
initSecondStage: function () {
Feeds.reload();
Article.closeArticlePanel();
if (parseInt(getCookie("ttrss_fh_width")) > 0) {
dijit.byId("feeds-holder").domNode.setStyle(
{width: getCookie("ttrss_fh_width") + "px"});
}
dijit.byId("main").resize();
dojo.connect(dijit.byId('feeds-holder'), 'resize',
function (args) {
if (args && args.w >= 0) {
setCookie("ttrss_fh_width", args.w, getInitParam("cookie_lifetime"));
}
});
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"));
}
});
delCookie("ttrss_test");
const toolbar = document.forms["main_toolbar_form"];
dijit.getEnclosingWidget(toolbar.view_mode).attr('value',
getInitParam("default_view_mode"));
dijit.getEnclosingWidget(toolbar.order_by).attr('value',
getInitParam("default_view_order_by"));
const hash_feed_id = hash_get('f');
const hash_feed_is_cat = hash_get('c') == "1";
if (hash_feed_id != undefined) {
Feeds.setActiveFeedId(hash_feed_id, hash_feed_is_cat);
}
Utils.setLoadingProgress(50);
2018-12-01 15:42:21 +01:00
ArticleCache.clear();
this._widescreen_mode = getInitParam("widescreen");
this.switchPanelMode(this._widescreen_mode);
2018-12-01 15:42:21 +01:00
Headlines.initScrollHandler();
if (getInitParam("simple_update")) {
console.log("scheduling simple feed updater...");
window.setInterval(() => { Feeds.updateRandomFeed() }, 30 * 1000);
2018-12-01 15:42:21 +01:00
}
console.log("second stage ok");
2018-12-01 15:42:21 +01:00
},
genericSanityCheck: function() {
setCookie("ttrss_test", "TEST");
if (getCookie("ttrss_test") != "TEST") {
return fatalError(2);
}
return true;
},
updateTitle: function() {
let tmp = "Tiny Tiny RSS";
if (this.global_unread > 0) {
tmp = "(" + this.global_unread + ") " + tmp;
}
document.title = tmp;
},
2018-12-01 15:42:21 +01:00
onViewModeChanged: function() {
ArticleCache.clear();
return Feeds.viewCurrentFeed('');
},
isCombinedMode: function() {
return getInitParam("combined_display_mode");
},
hotkeyHandler(event) {
if (event.target.nodeName == "INPUT" || event.target.nodeName == "TEXTAREA") return;
const action_name = Utils.keyeventToAction(event);
if (action_name) {
2018-12-01 19:51:00 +01:00
const action_func = this.hotkey_actions[action_name];
if (action_func != null) {
action_func();
event.stopPropagation();
return false;
}
}
},
switchPanelMode: function(wide) {
if (App.isCombinedMode()) return;
const article_id = Article.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' });
2013-04-24 17:49:37 +02:00
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" });
}
2010-11-16 09:41:31 +01:00
$("headlines-frame").setStyle({ borderBottomWidth: '1px' });
$("headlines-frame").removeClassName("wide");
2010-11-16 10:23:06 +01:00
}
Article.closeArticlePanel();
2018-12-01 15:42:21 +01:00
if (article_id) Article.view(article_id);
xhrPost("backend.php", {op: "rpc", method: "setpanelmode", wide: wide ? 1 : 0});
},
2018-12-01 19:51:00 +01:00
initHotkeyActions: function() {
this.hotkey_actions["next_feed"] = function () {
const rv = dijit.byId("feedTree").getNextFeed(
Feeds.getActiveFeedId(), Feeds.activeFeedIsCat());
2005-08-21 18:16:41 +02:00
2018-12-01 19:51:00 +01:00
if (rv) Feeds.viewfeed({feed: rv[0], is_cat: rv[1], delayed: true})
};
this.hotkey_actions["prev_feed"] = function () {
const rv = dijit.byId("feedTree").getPreviousFeed(
Feeds.getActiveFeedId(), Feeds.activeFeedIsCat());
if (rv) Feeds.viewfeed({feed: rv[0], is_cat: rv[1], delayed: true})
};
this.hotkey_actions["next_article"] = function () {
Headlines.moveToPost('next');
};
this.hotkey_actions["prev_article"] = function () {
Headlines.moveToPost('prev');
};
this.hotkey_actions["next_article_noscroll"] = function () {
Headlines.moveToPost('next', true);
};
this.hotkey_actions["prev_article_noscroll"] = function () {
Headlines.moveToPost('prev', true);
};
this.hotkey_actions["next_article_noexpand"] = function () {
Headlines.moveToPost('next', true, true);
};
this.hotkey_actions["prev_article_noexpand"] = function () {
Headlines.moveToPost('prev', true, true);
};
this.hotkey_actions["search_dialog"] = function () {
Feeds.search();
};
this.hotkey_actions["toggle_mark"] = function () {
Headlines.selectionToggleMarked();
};
this.hotkey_actions["toggle_publ"] = function () {
Headlines.selectionTogglePublished();
};
this.hotkey_actions["toggle_unread"] = function () {
Headlines.selectionToggleUnread({no_error: 1});
};
this.hotkey_actions["edit_tags"] = function () {
const id = Article.getActiveArticleId();
if (id) {
Article.editArticleTags(id);
}
2016-08-10 10:48:09 +02:00
}
2018-12-01 19:51:00 +01:00
this.hotkey_actions["open_in_new_window"] = function () {
if (Article.getActiveArticleId()) {
Article.openArticleInNewWindow(Article.getActiveArticleId());
}
};
this.hotkey_actions["catchup_below"] = function () {
Headlines.catchupRelativeToArticle(1);
};
this.hotkey_actions["catchup_above"] = function () {
Headlines.catchupRelativeToArticle(0);
};
this.hotkey_actions["article_scroll_down"] = function () {
Article.scrollArticle(40);
};
this.hotkey_actions["article_scroll_up"] = function () {
Article.scrollArticle(-40);
};
this.hotkey_actions["close_article"] = function () {
if (App.isCombinedMode()) {
Article.cdmCollapseActive();
} else {
Article.closeArticlePanel();
}
};
this.hotkey_actions["email_article"] = function () {
if (typeof emailArticle != "undefined") {
emailArticle();
} else if (typeof mailtoArticle != "undefined") {
mailtoArticle();
} else {
alert(__("Please enable mail plugin first."));
}
};
this.hotkey_actions["select_all"] = function () {
Headlines.selectArticles('all');
};
this.hotkey_actions["select_unread"] = function () {
Headlines.selectArticles('unread');
};
this.hotkey_actions["select_marked"] = function () {
Headlines.selectArticles('marked');
};
this.hotkey_actions["select_published"] = function () {
Headlines.selectArticles('published');
};
this.hotkey_actions["select_invert"] = function () {
Headlines.selectArticles('invert');
};
this.hotkey_actions["select_none"] = function () {
Headlines.selectArticles('none');
};
this.hotkey_actions["feed_refresh"] = function () {
if (Feeds.getActiveFeedId() != undefined) {
Feeds.viewfeed({feed: Feeds.getActiveFeedId(), is_cat: Feeds.activeFeedIsCat()});
}
};
this.hotkey_actions["feed_unhide_read"] = function () {
Feeds.toggleDispRead();
};
this.hotkey_actions["feed_subscribe"] = function () {
CommonDialogs.quickAddFeed();
};
this.hotkey_actions["feed_debug_update"] = function () {
if (!Feeds.activeFeedIsCat() && parseInt(Feeds.getActiveFeedId()) > 0) {
window.open("backend.php?op=feeds&method=update_debugger&feed_id=" + Feeds.getActiveFeedId() +
"&csrf_token=" + getInitParam("csrf_token"));
} else {
alert("You can't debug this kind of feed.");
}
};
2018-12-01 19:51:00 +01:00
this.hotkey_actions["feed_debug_viewfeed"] = function () {
Feeds.viewfeed({feed: Feeds.getActiveFeedId(), is_cat: Feeds.activeFeedIsCat(), viewfeed_debug: true});
};
2018-12-01 19:51:00 +01:00
this.hotkey_actions["feed_edit"] = function () {
if (Feeds.activeFeedIsCat())
alert(__("You can't edit this kind of feed."));
else
CommonDialogs.editFeed(Feeds.getActiveFeedId());
2018-12-01 19:51:00 +01:00
};
this.hotkey_actions["feed_catchup"] = function () {
if (Feeds.getActiveFeedId() != undefined) {
Feeds.catchupCurrentFeed();
}
};
this.hotkey_actions["feed_reverse"] = function () {
Headlines.reverseHeadlineOrder();
};
this.hotkey_actions["feed_toggle_vgroup"] = function () {
xhrPost("backend.php", {op: "rpc", method: "togglepref", key: "VFEED_GROUP_BY_FEED"}, () => {
Feeds.viewCurrentFeed();
})
};
this.hotkey_actions["catchup_all"] = function () {
Feeds.catchupAllFeeds();
};
this.hotkey_actions["cat_toggle_collapse"] = function () {
if (Feeds.activeFeedIsCat()) {
dijit.byId("feedTree").collapseCat(Feeds.getActiveFeedId());
}
};
this.hotkey_actions["goto_all"] = function () {
Feeds.viewfeed({feed: -4});
};
this.hotkey_actions["goto_fresh"] = function () {
Feeds.viewfeed({feed: -3});
};
this.hotkey_actions["goto_marked"] = function () {
Feeds.viewfeed({feed: -1});
};
this.hotkey_actions["goto_published"] = function () {
Feeds.viewfeed({feed: -2});
};
this.hotkey_actions["goto_tagcloud"] = function () {
Utils.displayDlg(__("Tag cloud"), "printTagCloud");
};
this.hotkey_actions["goto_prefs"] = function () {
document.location.href = "prefs.php";
};
this.hotkey_actions["select_article_cursor"] = function () {
const id = Article.getArticleUnderPointer();
if (id) {
const row = $("RROW-" + id);
2016-08-10 10:48:09 +02:00
2018-12-01 19:51:00 +01:00
if (row) {
const cb = dijit.getEnclosingWidget(
row.select(".rchk")[0]);
2016-08-10 10:48:09 +02:00
2018-12-01 19:51:00 +01:00
if (cb) {
if (!row.hasClassName("active"))
cb.attr("checked", !cb.attr("checked"));
2016-08-10 10:48:09 +02:00
2018-12-01 19:51:00 +01:00
toggleSelectRowById(cb, "RROW-" + id);
return false;
}
}
}
};
this.hotkey_actions["create_label"] = function () {
2018-12-01 20:19:20 +01:00
CommonDialogs.addLabel();
2018-12-01 19:51:00 +01:00
};
this.hotkey_actions["create_filter"] = function () {
Filters.quickAddFilter();
2018-12-01 19:51:00 +01:00
};
this.hotkey_actions["collapse_sidebar"] = function () {
Feeds.viewCurrentFeed();
2018-12-01 19:51:00 +01:00
};
this.hotkey_actions["toggle_embed_original"] = function () {
if (typeof embedOriginalArticle != "undefined") {
if (Article.getActiveArticleId())
embedOriginalArticle(Article.getActiveArticleId());
} else {
alert(__("Please enable embed_original plugin first."));
}
};
this.hotkey_actions["toggle_widescreen"] = function () {
if (!App.isCombinedMode()) {
App._widescreen_mode = !App._widescreen_mode;
2018-12-01 19:51:00 +01:00
// reset stored sizes because geometry changed
setCookie("ttrss_ci_width", 0);
setCookie("ttrss_ci_height", 0);
2018-12-01 19:51:00 +01:00
App.switchPanelMode(App._widescreen_mode);
} else {
alert(__("Widescreen is not available in combined mode."));
}
};
this.hotkey_actions["help_dialog"] = function () {
Utils.helpDialog("main");
};
this.hotkey_actions["toggle_combined_mode"] = function () {
notify_progress("Loading, please wait...");
2018-12-01 19:51:00 +01:00
const value = App.isCombinedMode() ? "false" : "true";
2018-12-01 19:51:00 +01:00
xhrPost("backend.php", {op: "rpc", method: "setpref", key: "COMBINED_DISPLAY_MODE", value: value}, () => {
setInitParam("combined_display_mode",
!getInitParam("combined_display_mode"));
Article.closeArticlePanel();
Feeds.viewCurrentFeed();
})
};
this.hotkey_actions["toggle_cdm_expanded"] = function () {
notify_progress("Loading, please wait...");
2018-12-01 19:51:00 +01:00
const value = getInitParam("cdm_expanded") ? "false" : "true";
2007-08-10 18:16:43 +02:00
2018-12-01 19:51:00 +01:00
xhrPost("backend.php", {op: "rpc", method: "setpref", key: "CDM_EXPANDED", value: value}, () => {
setInitParam("cdm_expanded", !getInitParam("cdm_expanded"));
Feeds.viewCurrentFeed();
});
};
},
onActionSelected: function(opid) {
switch (opid) {
case "qmcPrefs":
2018-12-01 20:19:20 +01:00
document.location.href = "prefs.php";
2018-12-01 19:51:00 +01:00
break;
case "qmcLogout":
document.location.href = "backend.php?op=logout";
break;
case "qmcTagCloud":
Utils.displayDlg(__("Tag cloud"), "printTagCloud");
break;
case "qmcSearch":
Feeds.search();
break;
case "qmcAddFeed":
CommonDialogs.quickAddFeed();
break;
case "qmcDigest":
window.location.href = "backend.php?op=digest";
break;
case "qmcEditFeed":
if (Feeds.activeFeedIsCat())
alert(__("You can't edit this kind of feed."));
else
CommonDialogs.editFeed(Feeds.getActiveFeedId());
2018-12-01 19:51:00 +01:00
break;
case "qmcRemoveFeed":
var actid = Feeds.getActiveFeedId();
if (Feeds.activeFeedIsCat()) {
alert(__("You can't unsubscribe from the category."));
return;
}
2007-08-10 18:16:43 +02:00
2018-12-01 19:51:00 +01:00
if (!actid) {
alert(__("Please select some feed first."));
return;
}
var fn = Feeds.getFeedName(actid);
var pr = __("Unsubscribe from %s?").replace("%s", fn);
if (confirm(pr)) {
CommonDialogs.unsubscribeFeed(actid);
2018-12-01 19:51:00 +01:00
}
break;
case "qmcCatchupAll":
Feeds.catchupAllFeeds();
break;
case "qmcShowOnlyUnread":
Feeds.toggleDispRead();
break;
case "qmcToggleWidescreen":
if (!App.isCombinedMode()) {
App._widescreen_mode = !App._widescreen_mode;
// reset stored sizes because geometry changed
setCookie("ttrss_ci_width", 0);
setCookie("ttrss_ci_height", 0);
App.switchPanelMode(App._widescreen_mode);
} else {
alert(__("Widescreen is not available in combined mode."));
}
break;
case "qmcHKhelp":
Utils.helpDialog("main");
break;
default:
console.log("quickMenuGo: unknown action: " + opid);
}
2018-12-01 19:51:00 +01:00
},
isPrefs: function() {
return false;
}
2018-12-01 19:51:00 +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();
}