summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2018-12-02 17:18:59 +0300
committerAndrew Dolgov <[email protected]>2018-12-02 17:18:59 +0300
commit807ff074540575e6ef8f99ad32b098a816091171 (patch)
tree292feaa65ef0507f5eb9be47994d5da7f8ae3c56
parentfda3ad39c8d89b07d4ead691bacdca6865e46517 (diff)
split main objects to dojo modules
-rw-r--r--index.php2
-rw-r--r--js/Article.js335
-rw-r--r--js/ArticleCache.js25
-rw-r--r--js/Feeds.js638
-rwxr-xr-xjs/Headlines.js1213
-rw-r--r--js/feedlist.js638
-rwxr-xr-xjs/prefs.js2
-rw-r--r--js/tt-rss.js14
-rwxr-xr-xjs/viewfeed.js1569
9 files changed, 2226 insertions, 2210 deletions
diff --git a/index.php b/index.php
index a2d965239..00bf42830 100644
--- a/index.php
+++ b/index.php
@@ -114,7 +114,7 @@
require({cache:{}});
<?php
print get_minified_js(["tt-rss.js",
- "functions.js", "feedlist.js", "viewfeed.js", "PluginHost.js"]);
+ "functions.js", "PluginHost.js"]);
?>
</script>
<script type="text/javascript">
diff --git a/js/Article.js b/js/Article.js
new file mode 100644
index 000000000..89bb3b3af
--- /dev/null
+++ b/js/Article.js
@@ -0,0 +1,335 @@
+define(["dojo/_base/declare"], function (declare) {
+ return declare("fox.Article", null, {
+ _active_article_id: 0,
+ selectionSetScore: function() {
+ const ids = Headlines.getSelected();
+
+ if (ids.length > 0) {
+ console.log(ids);
+
+ const score = prompt(__("Please enter new score for selected articles:"));
+
+ if (score != undefined) {
+ const query = {
+ op: "article", method: "setScore", id: ids.toString(),
+ score: score
+ };
+
+ xhrJson("backend.php", query, (reply) => {
+ if (reply) {
+ reply.id.each((id) => {
+ const row = $("RROW-" + id);
+
+ if (row) {
+ const pic = row.getElementsByClassName("score-pic")[0];
+
+ if (pic) {
+ pic.src = pic.src.replace(/score_.*?\.png/,
+ reply["score_pic"]);
+ pic.setAttribute("score", reply["score"]);
+ }
+ }
+ });
+ }
+ });
+ }
+
+ } else {
+ alert(__("No articles selected."));
+ }
+ },
+ setScore: function(id, pic) {
+ const score = pic.getAttribute("score");
+
+ const new_score = prompt(__("Please enter new score for this article:"), score);
+
+ if (new_score != undefined) {
+ const query = {op: "article", method: "setScore", id: id, score: new_score};
+
+ xhrJson("backend.php", query, (reply) => {
+ if (reply) {
+ pic.src = pic.src.replace(/score_.*?\.png/, reply["score_pic"]);
+ pic.setAttribute("score", new_score);
+ pic.setAttribute("title", new_score);
+ }
+ });
+ }
+ },
+ cdmUnsetActive: function(event) {
+ const row = $("RROW-" + Article.getActive());
+
+ if (row) {
+ row.removeClassName("active");
+ const cb = dijit.getEnclosingWidget(row.select(".rchk")[0]);
+
+ if (cb && !row.hasClassName("Selected"))
+ cb.attr("checked", false);
+
+ Article.setActive(0);
+
+ if (event)
+ event.stopPropagation();
+
+ return false;
+ }
+ },
+ close: function () {
+ if (dijit.byId("content-insert"))
+ dijit.byId("headlines-wrap-inner").removeChild(
+ dijit.byId("content-insert"));
+ },
+ displayUrl: function (id) {
+ const query = {op: "rpc", method: "getlinktitlebyid", id: id};
+
+ xhrJson("backend.php", query, (reply) => {
+ if (reply && reply.link) {
+ prompt(__("Article URL:"), reply.link);
+ }
+ });
+ },
+ openInNewWindow: function (id) {
+ const w = window.open("");
+ w.opener = null;
+ w.location = "backend.php?op=article&method=redirect&id=" + id;
+
+ Article.setActive(id);
+ },
+ render: function (article) {
+ Utils.cleanupMemory("content-insert");
+
+ dijit.byId("headlines-wrap-inner").addChild(
+ dijit.byId("content-insert"));
+
+ const c = dijit.byId("content-insert");
+
+ try {
+ c.domNode.scrollTop = 0;
+ } catch (e) {
+ }
+
+ c.attr('content', article);
+ PluginHost.run(PluginHost.HOOK_ARTICLE_RENDERED, c.domNode);
+
+ Headlines.correctHeadlinesOffset(Article.getActive());
+
+ try {
+ c.focus();
+ } catch (e) {
+ }
+ },
+ view: function(id, noexpand) {
+ this.setActive(id);
+
+ if (!noexpand) {
+ console.log("loading article", id);
+
+ const cids = [];
+
+ /* only request uncached articles */
+
+ this.getRelativeIds(id).each((n) => {
+ if (!ArticleCache.get(n))
+ cids.push(n);
+ });
+
+ const cached_article = ArticleCache.get(id);
+
+ if (cached_article) {
+ console.log('rendering cached', id);
+ this.render(cached_article);
+ return false;
+ }
+
+ xhrPost("backend.php", {op: "article", method: "view", id: id, cids: cids.toString()}, (transport) => {
+ try {
+ const reply = Utils.handleRpcJson(transport);
+
+ if (reply) {
+
+ reply.each(function (article) {
+ if (Article.getActive() == article['id']) {
+ Article.render(article['content']);
+ }
+ ArticleCache.set(article['id'], article['content']);
+ });
+
+ } else {
+ console.error("Invalid object received: " + transport.responseText);
+
+ Article.render("<div class='whiteBox'>" +
+ __('Could not display article (invalid object received - see error console for details)') + "</div>");
+ }
+
+ //const unread_in_buffer = $$("#headlines-frame > div[id*=RROW][class*=Unread]").length;
+ //request_counters(unread_in_buffer == 0);
+
+ notify("");
+
+ } catch (e) {
+ exception_error(e);
+ }
+ })
+ }
+
+ return false;
+ },
+ editTags: function(id) {
+ const query = "backend.php?op=article&method=editArticleTags&param=" + param_escape(id);
+
+ if (dijit.byId("editTagsDlg"))
+ dijit.byId("editTagsDlg").destroyRecursive();
+
+ const dialog = new dijit.Dialog({
+ id: "editTagsDlg",
+ title: __("Edit article Tags"),
+ style: "width: 600px",
+ execute: function () {
+ if (this.validate()) {
+ notify_progress("Saving article tags...", true);
+
+ xhrPost("backend.php", this.attr('value'), (transport) => {
+ try {
+ notify('');
+ dialog.hide();
+
+ const data = JSON.parse(transport.responseText);
+
+ if (data) {
+ const id = data.id;
+
+ const tags = $("ATSTR-" + id);
+ const tooltip = dijit.byId("ATSTRTIP-" + id);
+
+ if (tags) tags.innerHTML = data.content;
+ if (tooltip) tooltip.attr('label', data.content_full);
+ }
+ } catch (e) {
+ exception_error(e);
+ }
+ });
+ }
+ },
+ href: query
+ });
+
+ const tmph = dojo.connect(dialog, 'onLoad', function () {
+ dojo.disconnect(tmph);
+
+ new Ajax.Autocompleter('tags_str', 'tags_choices',
+ "backend.php?op=article&method=completeTags",
+ {tokens: ',', paramName: "search"});
+ });
+
+ dialog.show();
+ },
+ cdmScrollToId: function(id, force) {
+ const ctr = $("headlines-frame");
+ const e = $("RROW-" + id);
+
+ if (!e || !ctr) return;
+
+ if (force || e.offsetTop + e.offsetHeight > (ctr.scrollTop + ctr.offsetHeight) ||
+ e.offsetTop < ctr.scrollTop) {
+
+ // expanded cdm has a 4px margin now
+ ctr.scrollTop = parseInt(e.offsetTop) - 4;
+
+ Element.hide("floatingTitle");
+ }
+ },
+ setActive: function(id) {
+ console.log("setActive", id);
+
+ $$("div[id*=RROW][class*=active]").each((e) => {
+ e.removeClassName("active");
+
+ if (!e.hasClassName("Selected")) {
+ const cb = dijit.getEnclosingWidget(e.select(".rchk")[0]);
+ if (cb) cb.attr("checked", false);
+ }
+ });
+
+ this._active_article_id = id;
+
+ const row = $("RROW-" + id);
+
+ if (row) {
+ if (row.hasAttribute("data-content")) {
+ console.log("unpacking: " + row.id);
+
+ row.select(".content-inner")[0].innerHTML = row.getAttribute("data-content");
+ row.removeAttribute("data-content");
+
+ PluginHost.run(PluginHost.HOOK_ARTICLE_RENDERED_CDM, row);
+ }
+
+ if (row.hasClassName("Unread")) {
+
+ Headlines.catchupBatched(() => {
+ Feeds.decrementFeedCounter(Feeds.getActive(), Feeds.activeIsCat());
+ Headlines.toggleUnread(id, 0);
+ Headlines.updateFloatingTitle(true);
+ });
+
+ }
+
+ row.addClassName("active");
+
+ if (!row.hasClassName("Selected")) {
+ const cb = dijit.getEnclosingWidget(row.select(".rchk")[0]);
+ if (cb) cb.attr("checked", true);
+ }
+
+ PluginHost.run(PluginHost.HOOK_ARTICLE_SET_ACTIVE, this._active_article_id);
+ }
+
+ Headlines.updateSelectedPrompt();
+ },
+ getActive: function() {
+ return this._active_article_id;
+ },
+ scroll: function(offset) {
+ if (!App.isCombinedMode()) {
+ const ci = $("content-insert");
+ if (ci) {
+ ci.scrollTop += offset;
+ }
+ } else {
+ const hi = $("headlines-frame");
+ if (hi) {
+ hi.scrollTop += offset;
+ }
+
+ }
+ },
+ getRelativeIds: function(id, limit) {
+
+ const tmp = [];
+
+ if (!limit) limit = 6; //3
+
+ const ids = Headlines.getLoaded();
+
+ for (let i = 0; i < ids.length; i++) {
+ if (ids[i] == id) {
+ for (let k = 1; k <= limit; k++) {
+ //if (i > k-1) tmp.push(ids[i-k]);
+ if (i < ids.length - k) tmp.push(ids[i + k]);
+ }
+ break;
+ }
+ }
+
+ return tmp;
+ },
+ mouseIn: function(id) {
+ this.post_under_pointer = id;
+ },
+ mouseOut: function(id) {
+ this.post_under_pointer = false;
+ },
+ getUnderPointer: function() {
+ return this.post_under_pointer;
+ }
+ });
+}); \ No newline at end of file
diff --git a/js/ArticleCache.js b/js/ArticleCache.js
new file mode 100644
index 000000000..fbba1f679
--- /dev/null
+++ b/js/ArticleCache.js
@@ -0,0 +1,25 @@
+define(["dojo/_base/declare"], function (declare) {
+ return declare("fox.ArticleCache", null, {
+ has_storage: 'sessionStorage' in window && window['sessionStorage'] !== null,
+ set: function(id, obj) {
+ if (this.has_storage)
+ try {
+ sessionStorage["article:" + id] = obj;
+ } catch (e) {
+ sessionStorage.clear();
+ }
+ },
+ get: function(id) {
+ if (this.has_storage)
+ return sessionStorage["article:" + id];
+ },
+ clear: function() {
+ if (this.has_storage)
+ sessionStorage.clear();
+ },
+ del: function(id) {
+ if (this.has_storage)
+ sessionStorage.removeItem("article:" + id);
+ },
+ });
+});
diff --git a/js/Feeds.js b/js/Feeds.js
new file mode 100644
index 000000000..a461ab7d2
--- /dev/null
+++ b/js/Feeds.js
@@ -0,0 +1,638 @@
+define(["dojo/_base/declare"], function (declare) {
+ return declare("fox.Feeds", null, {
+ counters_last_request: 0,
+ _active_feed_id: 0,
+ _active_feed_is_cat: false,
+ infscroll_in_progress: 0,
+ infscroll_disabled: 0,
+ _infscroll_timeout: false,
+ _search_query: false,
+ last_search_query: [],
+ _viewfeed_wait_timeout: false,
+ _counters_prev: [],
+ // NOTE: this implementation is incomplete
+ // for general objects but good enough for counters
+ // http://adripofjavascript.com/blog/drips/object-equality-in-javascript.html
+ counterEquals: function(a, b) {
+ // Create arrays of property names
+ const aProps = Object.getOwnPropertyNames(a);
+ const bProps = Object.getOwnPropertyNames(b);
+
+ // If number of properties is different,
+ // objects are not equivalent
+ if (aProps.length != bProps.length) {
+ return false;
+ }
+
+ for (let i = 0; i < aProps.length; i++) {
+ const propName = aProps[i];
+
+ // If values of same property are not equal,
+ // objects are not equivalent
+ if (a[propName] !== b[propName]) {
+ return false;
+ }
+ }
+
+ // If we made it this far, objects
+ // are considered equivalent
+ return true;
+ },
+ resetCounters: function () {
+ this._counters_prev = [];
+ },
+ parseCounters: function (elems) {
+ for (let l = 0; l < elems.length; l++) {
+
+ if (Feeds._counters_prev[l] && this.counterEquals(elems[l], this._counters_prev[l])) {
+ continue;
+ }
+
+ const id = elems[l].id;
+ const kind = elems[l].kind;
+ const ctr = parseInt(elems[l].counter);
+ const error = elems[l].error;
+ const has_img = elems[l].has_img;
+ const updated = elems[l].updated;
+ const auxctr = parseInt(elems[l].auxcounter);
+
+ if (id == "global-unread") {
+ App.global_unread = ctr;
+ App.updateTitle();
+ continue;
+ }
+
+ if (id == "subscribed-feeds") {
+ /* feeds_found = ctr; */
+ continue;
+ }
+
+ /*if (this.getUnread(id, (kind == "cat")) != ctr ||
+ (kind == "cat")) {
+ }*/
+
+ this.setUnread(id, (kind == "cat"), ctr);
+ this.setValue(id, (kind == "cat"), 'auxcounter', auxctr);
+
+ if (kind != "cat") {
+ this.setValue(id, false, 'error', error);
+ this.setValue(id, false, 'updated', updated);
+
+ if (id > 0) {
+ if (has_img) {
+ this.setIcon(id, false,
+ getInitParam("icons_url") + "/" + id + ".ico?" + has_img);
+ } else {
+ this.setIcon(id, false, 'images/blank_icon.gif');
+ }
+ }
+ }
+ }
+
+ this.hideOrShowFeeds(getInitParam("hide_read_feeds") == 1);
+ this._counters_prev = elems;
+ },
+ reloadCurrent: function(method) {
+ console.log("reloadCurrent: " + method);
+
+ if (this.getActive() != undefined) {
+ this.open({feed: this.getActive(), is_cat: this.activeIsCat(), method: method});
+ }
+ return false; // block unneeded form submits
+ },
+ openNextUnread: function() {
+ const is_cat = this.activeIsCat();
+ const nuf = this.getNextUnread(this.getActive(), is_cat);
+ if (nuf) this.open({feed: nuf, is_cat: is_cat});
+ },
+ toggle: function() {
+ Element.toggle("feeds-holder");
+
+ const splitter = $("feeds-holder_splitter");
+
+ Element.visible("feeds-holder") ? splitter.show() : splitter.hide();
+
+ dijit.byId("main").resize();
+ },
+ cancelSearch: function() {
+ this._search_query = "";
+ this.reloadCurrent();
+ },
+ requestCounters: function(force) {
+ const date = new Date();
+ const timestamp = Math.round(date.getTime() / 1000);
+
+ if (force || timestamp - this.counters_last_request > 5) {
+ console.log("scheduling request of counters...");
+
+ this.counters_last_request = timestamp;
+
+ let query = {op: "rpc", method: "getAllCounters", seq: Utils.next_seq()};
+
+ if (!force)
+ query.last_article_id = getInitParam("last_article_id");
+
+ xhrPost("backend.php", query, (transport) => {
+ Utils.handleRpcJson(transport);
+ });
+
+ } else {
+ console.log("request_counters: rate limit reached: " + (timestamp - this.counters_last_request));
+ }
+ },
+ reload: function() {
+ try {
+ Element.show("feedlistLoading");
+
+ this.resetCounters();
+
+ if (dijit.byId("feedTree")) {
+ dijit.byId("feedTree").destroyRecursive();
+ }
+
+ const store = new dojo.data.ItemFileWriteStore({
+ url: "backend.php?op=pref_feeds&method=getfeedtree&mode=2"
+ });
+
+ // noinspection JSUnresolvedFunction
+ const treeModel = new fox.FeedStoreModel({
+ store: store,
+ query: {
+ "type": getInitParam('enable_feed_cats') == 1 ? "category" : "feed"
+ },
+ rootId: "root",
+ rootLabel: "Feeds",
+ childrenAttrs: ["items"]
+ });
+
+ // noinspection JSUnresolvedFunction
+ const tree = new fox.FeedTree({
+ model: treeModel,
+ onClick: function (item/*, node*/) {
+ const id = String(item.id);
+ const is_cat = id.match("^CAT:");
+ const feed = id.substr(id.indexOf(":") + 1);
+ Feeds.open({feed: feed, is_cat: is_cat});
+ return false;
+ },
+ openOnClick: false,
+ showRoot: false,
+ persist: true,
+ id: "feedTree",
+ }, "feedTree");
+
+ const tmph = dojo.connect(dijit.byId('feedMenu'), '_openMyself', function (event) {
+ console.log(dijit.getEnclosingWidget(event.target));
+ dojo.disconnect(tmph);
+ });
+
+ $("feeds-holder").appendChild(tree.domNode);
+
+ const tmph2 = dojo.connect(tree, 'onLoad', function () {
+ dojo.disconnect(tmph2);
+ Element.hide("feedlistLoading");
+
+ try {
+ Feeds.init();
+ Utils.setLoadingProgress(25);
+ } catch (e) {
+ exception_error(e);
+ }
+ });
+
+ tree.startup();
+ } catch (e) {
+ exception_error(e);
+ }
+ },
+ init: function() {
+ console.log("in feedlist init");
+
+ Utils.setLoadingProgress(50);
+
+ document.onkeydown = () => { App.hotkeyHandler(event) };
+ window.setInterval(() => { Headlines.catchupBatched() }, 10 * 1000);
+
+ if (!this.getActive()) {
+ this.open({feed: -3});
+ } else {
+ this.open({feed: this.getActive(), is_cat: this.activeIsCat()});
+ }
+
+ this.hideOrShowFeeds(getInitParam("hide_read_feeds") == 1);
+
+ if (getInitParam("is_default_pw")) {
+ console.warn("user password is at default value");
+
+ const dialog = new dijit.Dialog({
+ title: __("Your password is at default value"),
+ href: "backend.php?op=dlg&method=defaultpasswordwarning",
+ id: 'infoBox',
+ style: "width: 600px",
+ onCancel: function () {
+ return true;
+ },
+ onExecute: function () {
+ return true;
+ },
+ onClose: function () {
+ return true;
+ }
+ });
+
+ dialog.show();
+ }
+
+ // bw_limit disables timeout() so we request initial counters separately
+ if (getInitParam("bw_limit") == "1") {
+ this.requestCounters(true);
+ } else {
+ setTimeout(() => {
+ this.requestCounters(true);
+ setInterval(() => { this.requestCounters(); }, 60 * 1000)
+ }, 250);
+ }
+ },
+ activeIsCat: function() {
+ return !!this._active_feed_is_cat;
+ },
+ getActive: function() {
+ return this._active_feed_id;
+ },
+ setActive: function(id, is_cat) {
+ hash_set('f', id);
+ hash_set('c', is_cat ? 1 : 0);
+
+ this._active_feed_id = id;
+ this._active_feed_is_cat = is_cat;
+
+ $("headlines-frame").setAttribute("feed-id", id);
+ $("headlines-frame").setAttribute("is-cat", is_cat ? 1 : 0);
+
+ this.select(id, is_cat);
+
+ PluginHost.run(PluginHost.HOOK_FEED_SET_ACTIVE, [this._active_feed_id, this._active_feed_is_cat]);
+ },
+ select: function(feed, is_cat) {
+ const tree = dijit.byId("feedTree");
+
+ if (tree) return tree.selectFeed(feed, is_cat);
+ },
+ toggleUnread: function() {
+ const hide = !(getInitParam("hide_read_feeds") == "1");
+
+ xhrPost("backend.php", {op: "rpc", method: "setpref", key: "HIDE_READ_FEEDS", value: hide}, () => {
+ this.hideOrShowFeeds(hide);
+ setInitParam("hide_read_feeds", hide);
+ });
+ },
+ hideOrShowFeeds: function(hide) {
+ const tree = dijit.byId("feedTree");
+
+ if (tree)
+ return tree.hideRead(hide, getInitParam("hide_read_shows_special"));
+ },
+ open: function(params) {
+ const feed = params.feed;
+ const is_cat = !!params.is_cat || false;
+ const offset = params.offset || 0;
+ const viewfeed_debug = params.viewfeed_debug;
+ const method = params.method;
+ // this is used to quickly switch between feeds, sets active but xhr is on a timeout
+ const delayed = params.delayed || false;
+
+ if (feed != this.getActive() || this.activeIsCat() != is_cat) {
+ this._search_query = false;
+ Article.setActive(0);
+ }
+
+ if (offset != 0) {
+ if (this.infscroll_in_progress)
+ return;
+
+ this.infscroll_in_progress = 1;
+
+ window.clearTimeout(this._infscroll_timeout);
+ this._infscroll_timeout = window.setTimeout(() => {
+ console.log('infscroll request timed out, aborting');
+ this.infscroll_in_progress = 0;
+
+ // call scroll handler to maybe repeat infscroll request
+ Headlines.scrollHandler();
+ }, 10 * 1000);
+ }
+
+ Form.enable("main_toolbar_form");
+
+ let query = Object.assign({op: "feeds", method: "view", feed: feed},
+ dojo.formToObject("main_toolbar_form"));
+
+ if (method) query.m = method;
+
+ if (offset > 0) {
+ if (Headlines.current_first_id) {
+ query.fid = Headlines.current_first_id;
+ }
+ }
+
+ if (this._search_query) {
+ query = Object.assign(query, this._search_query);
+ }
+
+ if (offset != 0) {
+ query.skip = offset;
+
+ // to prevent duplicate feed titles when showing grouped vfeeds
+ if (Headlines.vgroup_last_feed != undefined) {
+ query.vgrlf = Headlines.vgroup_last_feed;
+ }
+ } else if (!is_cat && feed == this.getActive() && !params.method) {
+ query.m = "ForceUpdate";
+ }
+
+ Form.enable("main_toolbar_form");
+
+ if (!delayed)
+ if (!this.setExpando(feed, is_cat,
+ (is_cat) ? 'images/indicator_tiny.gif' : 'images/indicator_white.gif'))
+ notify_progress("Loading, please wait...", true);
+
+ query.cat = is_cat;
+
+ this.setActive(feed, is_cat);
+
+ if (viewfeed_debug) {
+ window.open("backend.php?" +
+ dojo.objectToQuery(
+ Object.assign({debug: 1, csrf_token: getInitParam("csrf_token")}, query)
+ ));
+ }
+
+ window.clearTimeout(this._viewfeed_wait_timeout);
+ this._viewfeed_wait_timeout = window.setTimeout(() => {
+ Headlines.catchupBatched(() => {
+ xhrPost("backend.php", query, (transport) => {
+ try {
+ window.clearTimeout(this._infscroll_timeout);
+ this.setExpando(feed, is_cat, 'images/blank_icon.gif');
+ Headlines.onLoaded(transport, offset);
+ PluginHost.run(PluginHost.HOOK_FEED_LOADED, [feed, is_cat]);
+ } catch (e) {
+ exception_error(e);
+ }
+ });
+ });
+ }, delayed ? 250 : 0);
+ },
+ catchupAll: function() {
+ 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"}, () => {
+ this.requestCounters(true);
+ this.reloadCurrent();
+ });
+
+ App.global_unread = 0;
+ App.updateTitle();
+ }
+ },
+ decrementFeedCounter: function(feed, is_cat) {
+ let ctr = this.getUnread(feed, is_cat);
+
+ if (ctr > 0) {
+ this.setUnread(feed, is_cat, ctr - 1);
+ App.global_unread -= 1;
+ App.updateTitle();
+
+ if (!is_cat) {
+ const cat = parseInt(this.getCategory(feed));
+
+ if (!isNaN(cat)) {
+ ctr = this.getUnread(cat, true);
+
+ if (ctr > 0) {
+ this.setUnread(cat, true, ctr - 1);
+ }
+ }
+ }
+ }
+ },
+ catchupFeed: function(feed, is_cat, mode) {
+ if (is_cat == undefined) is_cat = false;
+
+ let str = false;
+
+ switch (mode) {
+ case "1day":
+ str = __("Mark %w in %s older than 1 day as read?");
+ break;
+ case "1week":
+ str = __("Mark %w in %s older than 1 week as read?");
+ break;
+ case "2week":
+ str = __("Mark %w in %s older than 2 weeks as read?");
+ break;
+ default:
+ str = __("Mark %w in %s as read?");
+ }
+
+ const mark_what = this.last_search_query && this.last_search_query[0] ? __("search results") : __("all articles");
+ const fn = this.getName(feed, is_cat);
+
+ str = str.replace("%s", fn)
+ .replace("%w", mark_what);
+
+ if (getInitParam("confirm_feed_catchup") == 1 && !confirm(str)) {
+ return;
+ }
+
+ const catchup_query = {
+ op: 'rpc', method: 'catchupFeed', feed_id: feed,
+ is_cat: is_cat, mode: mode, search_query: this.last_search_query[0],
+ search_lang: this.last_search_query[1]
+ };
+
+ notify_progress("Loading, please wait...", true);
+
+ xhrPost("backend.php", catchup_query, (transport) => {
+ Utils.handleRpcJson(transport);
+
+ const show_next_feed = getInitParam("on_catchup_show_next_feed") == "1";
+
+ if (show_next_feed) {
+ const nuf = this.getNextUnread(feed, is_cat);
+
+ if (nuf) {
+ this.open({feed: nuf, is_cat: is_cat});
+ }
+ } else if (feed == this.getActive() && is_cat == this.activeIsCat()) {
+ this.reloadCurrent();
+ }
+
+ notify("");
+ });
+ },
+ catchupCurrent: function(mode) {
+ this.catchupFeed(this.getActive(), this.activeIsCat(), mode);
+ },
+ catchupFeedInGroup: function(id) {
+ const title = this.getName(id);
+
+ const str = __("Mark all articles in %s as read?").replace("%s", title);
+
+ if (getInitParam("confirm_feed_catchup") != 1 || confirm(str)) {
+
+ const rows = $$("#headlines-frame > div[id*=RROW][data-orig-feed-id='" + id + "']");
+
+ if (rows.length > 0) {
+
+ rows.each(function (row) {
+ row.removeClassName("Unread");
+
+ if (row.getAttribute("data-article-id") != Article.getActive()) {
+ new Effect.Fade(row, {duration: 0.5});
+ }
+
+ });
+
+ const feedTitles = $$("#headlines-frame > div[class='feed-title']");
+
+ for (let i = 0; i < feedTitles.length; i++) {
+ if (feedTitles[i].getAttribute("data-feed-id") == id) {
+
+ if (i < feedTitles.length - 1) {
+ new Effect.Fade(feedTitles[i], {duration: 0.5});
+ }
+
+ break;
+ }
+ }
+
+ Headlines.updateFloatingTitle(true);
+ }
+
+ notify_progress("Loading, please wait...", true);
+
+ xhrPost("backend.php", {op: "rpc", method: "catchupFeed", feed_id: id, is_cat: false}, (transport) => {
+ Utils.handleRpcJson(transport);
+ });
+ }
+ },
+ getUnread: function(feed, is_cat) {
+ try {
+ const tree = dijit.byId("feedTree");
+
+ if (tree && tree.model)
+ return tree.model.getFeedUnread(feed, is_cat);
+
+ } catch (e) {
+ //
+ }
+
+ return -1;
+ },
+ getCategory: function(feed) {
+ try {
+ const tree = dijit.byId("feedTree");
+
+ if (tree && tree.model)
+ return tree.getFeedCategory(feed);
+
+ } catch (e) {
+ //
+ }
+
+ return false;
+ },
+ getName: function(feed, is_cat) {
+ if (isNaN(feed)) return feed; // it's a tag
+
+ const tree = dijit.byId("feedTree");
+
+ if (tree && tree.model)
+ return tree.model.getFeedValue(feed, is_cat, 'name');
+ },
+ setUnread: function(feed, is_cat, unread) {
+ const tree = dijit.byId("feedTree");
+
+ if (tree && tree.model)
+ return tree.model.setFeedUnread(feed, is_cat, unread);
+ },
+ setValue: function(feed, is_cat, key, value) {
+ try {
+ const tree = dijit.byId("feedTree");
+
+ if (tree && tree.model)
+ return tree.model.setFeedValue(feed, is_cat, key, value);
+
+ } catch (e) {
+ //
+ }
+ },
+ getValue: function(feed, is_cat, key) {
+ try {
+ const tree = dijit.byId("feedTree");
+
+ if (tree && tree.model)
+ return tree.model.getFeedValue(feed, is_cat, key);
+
+ } catch (e) {
+ //
+ }
+ return '';
+ },
+ setIcon: function(feed, is_cat, src) {
+ const tree = dijit.byId("feedTree");
+
+ if (tree) return tree.setFeedIcon(feed, is_cat, src);
+ },
+ setExpando: function(feed, is_cat, src) {
+ const tree = dijit.byId("feedTree");
+
+ if (tree) return tree.setFeedExpandoIcon(feed, is_cat, src);
+
+ return false;
+ },
+ getNextUnread: function(feed, is_cat) {
+ const tree = dijit.byId("feedTree");
+ const nuf = tree.model.getNextUnreadFeed(feed, is_cat);
+
+ if (nuf)
+ return tree.model.store.getValue(nuf, 'bare_id');
+ },
+ search: function() {
+ const query = "backend.php?op=feeds&method=search&param=" +
+ param_escape(Feeds.getActive() + ":" + Feeds.activeIsCat());
+
+ if (dijit.byId("searchDlg"))
+ dijit.byId("searchDlg").destroyRecursive();
+
+ const dialog = new dijit.Dialog({
+ id: "searchDlg",
+ title: __("Search"),
+ style: "width: 600px",
+ execute: function () {
+ if (this.validate()) {
+ Feeds._search_query = this.attr('value');
+ this.hide();
+ Feeds.reloadCurrent();
+ }
+ },
+ href: query
+ });
+
+ dialog.show();
+ },
+ updateRandom: function() {
+ console.log("in update_random_feed");
+
+ xhrPost("backend.php", {op: "rpc", method: "updateRandom"}, (transport) => {
+ Utils.handleRpcJson(transport, true);
+ });
+ },
+ });
+}); \ No newline at end of file
diff --git a/js/Headlines.js b/js/Headlines.js
new file mode 100755
index 000000000..32bf222a7
--- /dev/null
+++ b/js/Headlines.js
@@ -0,0 +1,1213 @@
+/* global dijit, __, ngettext, notify */
+
+define(["dojo/_base/declare"], function (declare) {
+ return declare("fox.Headlines", null, {
+ vgroup_last_feed: undefined,
+ _headlines_scroll_timeout: 0,
+ loaded_article_ids: [],
+ current_first_id: 0,
+ catchup_id_batch: [],
+ click: function(event, id, in_body) {
+ in_body = in_body || false;
+
+ if (App.isCombinedMode()) {
+
+ if (!in_body && (event.ctrlKey || id == Article.getActive() || getInitParam("cdm_expanded"))) {
+ Article.openInNewWindow(id);
+ }
+
+ Article.setActive(id);
+
+ if (!getInitParam("cdm_expanded"))
+ Article.cdmScrollToId(id);
+
+ return in_body;
+
+ } else {
+ if (event.ctrlKey) {
+ Article.openInNewWindow(id);
+ Article.setActive(id);
+ } else {
+ Article.view(id);
+ }
+
+ return false;
+ }
+ },
+ initScrollHandler: function() {
+ $("headlines-frame").onscroll = (event) => {
+ clearTimeout(this._headlines_scroll_timeout);
+ this._headlines_scroll_timeout = window.setTimeout(function() {
+ //console.log('done scrolling', event);
+ Headlines.scrollHandler();
+ }, 50);
+ }
+ },
+ loadMore: function() {
+ const view_mode = document.forms["main_toolbar_form"].view_mode.value;
+ const unread_in_buffer = $$("#headlines-frame > div[id*=RROW][class*=Unread]").length;
+ const num_all = $$("#headlines-frame > div[id*=RROW]").length;
+ const num_unread = Feeds.getUnread(Feeds.getActive(), Feeds.activeIsCat());
+
+ // TODO implement marked & published
+
+ let offset = num_all;
+
+ switch (view_mode) {
+ case "marked":
+ case "published":
+ console.warn("loadMore: ", view_mode, "not implemented");
+ break;
+ case "unread":
+ offset = unread_in_buffer;
+ break;
+ case "adaptive":
+ if (!(Feeds.getActive() == -1 && !Feeds.activeIsCat()))
+ offset = num_unread > 0 ? unread_in_buffer : num_all;
+ break;
+ }
+
+ console.log("loadMore, offset=", offset);
+
+ Feeds.open({feed: Feeds.getActive(), is_cat: Feeds.activeIsCat(), offset: offset});
+ },
+ scrollHandler: function() {
+ try {
+ Headlines.unpackVisible();
+
+ if (App.isCombinedMode()) {
+ Headlines.updateFloatingTitle();
+
+ // set topmost child in the buffer as active, but not if we're at the beginning (to prevent auto marking
+ // first article as read all the time)
+ if ($("headlines-frame").scrollTop != 0 &&
+ getInitParam("cdm_expanded") && getInitParam("cdm_auto_catchup") == 1) {
+
+ const rows = $$("#headlines-frame > div[id*=RROW]");
+
+ for (let i = 0; i < rows.length; i++) {
+ const row = rows[i];
+
+ if ($("headlines-frame").scrollTop <= row.offsetTop &&
+ row.offsetTop - $("headlines-frame").scrollTop < 100 &&
+ row.getAttribute("data-article-id") != Article.getActive()) {
+
+ Article.setActive(row.getAttribute("data-article-id"));
+ break;
+ }
+ }
+ }
+ }
+
+ if (!Feeds.infscroll_disabled) {
+ const hsp = $("headlines-spacer");
+ const container = $("headlines-frame");
+
+ if (hsp && hsp.offsetTop - 250 <= container.scrollTop + container.offsetHeight) {
+
+ hsp.innerHTML = "<span class='loading'><img src='images/indicator_tiny.gif'> " +
+ __("Loading, please wait...") + "</span>";
+
+ Headlines.loadMore();
+ return;
+ }
+ }
+
+ if (getInitParam("cdm_auto_catchup") == 1) {
+
+ let rows = $$("#headlines-frame > div[id*=RROW][class*=Unread]");
+
+ for (let i = 0; i < rows.length; i++) {
+ const row = rows[i];
+
+ if ($("headlines-frame").scrollTop > (row.offsetTop + row.offsetHeight / 2)) {
+ const id = row.getAttribute("data-article-id")
+
+ if (this.catchup_id_batch.indexOf(id) == -1)
+ this.catchup_id_batch.push(id);
+
+ } else {
+ break;
+ }
+ }
+
+ if (Feeds.infscroll_disabled) {
+ const row = $$("#headlines-frame div[id*=RROW]").last();
+
+ if (row && $("headlines-frame").scrollTop >
+ (row.offsetTop + row.offsetHeight - 50)) {
+
+ console.log("we seem to be at an end");
+
+ if (getInitParam("on_catchup_show_next_feed") == "1") {
+ Feeds.openNextUnread();
+ }
+ }
+ }
+ }
+ } catch (e) {
+ console.warn("scrollHandler", e);
+ }
+ },
+ updateFloatingTitle: function(unread_only) {
+ if (!App.isCombinedMode()/* || !getInitParam("cdm_expanded")*/) return;
+
+ const hf = $("headlines-frame");
+ const elems = $$("#headlines-frame > div[id*=RROW]");
+ const ft = $("floatingTitle");
+
+ for (let i = 0; i < elems.length; i++) {
+ const row = elems[i];
+
+ if (row && row.offsetTop + row.offsetHeight > hf.scrollTop) {
+
+ const header = row.select(".header")[0];
+ const id = row.getAttribute("data-article-id");
+
+ if (unread_only || id != ft.getAttribute("data-article-id")) {
+ if (id != ft.getAttribute("data-article-id")) {
+
+ ft.setAttribute("data-article-id", id);
+ ft.innerHTML = header.innerHTML;
+ ft.firstChild.innerHTML = "<img class='anchor marked-pic' src='images/page_white_go.png' " +
+ "onclick=\"Article.cdmScrollToId(" + id + ", true)\">" + ft.firstChild.innerHTML;
+
+ this.initFloatingMenu();
+
+ const cb = ft.select(".rchk")[0];
+
+ if (cb)
+ cb.parentNode.removeChild(cb);
+ }
+
+ if (row.hasClassName("Unread"))
+ ft.addClassName("Unread");
+ else
+ ft.removeClassName("Unread");
+
+ PluginHost.run(PluginHost.HOOK_FLOATING_TITLE, row);
+ }
+
+ ft.style.marginRight = hf.offsetWidth - row.offsetWidth + "px";
+
+ if (header.offsetTop + header.offsetHeight < hf.scrollTop + ft.offsetHeight - 5 &&
+ row.offsetTop + row.offsetHeight >= hf.scrollTop + ft.offsetHeight - 5)
+ new Effect.Appear(ft, {duration: 0.3});
+ else
+ Element.hide(ft);
+
+ return;
+ }
+ }
+ },
+ unpackVisible: function() {
+ if (!App.isCombinedMode() || !getInitParam("cdm_expanded")) return;
+
+ const rows = $$("#headlines-frame div[id*=RROW][data-content]");
+ const threshold = $("headlines-frame").scrollTop + $("headlines-frame").offsetHeight + 600;
+
+ for (let i = 0; i < rows.length; i++) {
+ const row = rows[i];
+
+ if (row.offsetTop <= threshold) {
+ console.log("unpacking: " + row.id);
+
+ row.select(".content-inner")[0].innerHTML = row.getAttribute("data-content");
+ row.removeAttribute("data-content");
+
+ PluginHost.run(PluginHost.HOOK_ARTICLE_RENDERED_CDM, row);
+ } else {
+ break;
+ }
+ }
+ },
+ onLoaded: function(transport, offset) {
+ const reply = Utils.handleRpcJson(transport);
+
+ console.log("Headlines.onLoaded: offset=", offset);
+
+ let is_cat = false;
+ let feed_id = false;
+
+ if (reply) {
+
+ is_cat = reply['headlines']['is_cat'];
+ feed_id = reply['headlines']['id'];
+ Feeds.last_search_query = reply['headlines']['search_query'];
+
+ if (feed_id != -7 && (feed_id != Feeds.getActive() || is_cat != Feeds.activeIsCat()))
+ return;
+
+ try {
+ if (offset == 0) {
+ $("headlines-frame").scrollTop = 0;
+
+ Element.hide("floatingTitle");
+ $("floatingTitle").setAttribute("data-article-id", 0);
+ $("floatingTitle").innerHTML = "";
+ }
+ } catch (e) {
+ }
+
+ $("headlines-frame").removeClassName("cdm");
+ $("headlines-frame").removeClassName("normal");
+
+ $("headlines-frame").addClassName(App.isCombinedMode() ? "cdm" : "normal");
+
+ const headlines_count = reply['headlines-info']['count'];
+ Feeds.infscroll_disabled = parseInt(headlines_count) != 30;
+
+ console.log('received', headlines_count, 'headlines, infscroll disabled=', Feeds.infscroll_disabled);
+
+ this.vgroup_last_feed = reply['headlines-info']['vgroup_last_feed'];
+ this.current_first_id = reply['headlines']['first_id'];
+
+ if (offset == 0) {
+ this.loaded_article_ids = [];
+
+ dojo.html.set($("headlines-toolbar"),
+ reply['headlines']['toolbar'],
+ {parseContent: true});
+
+ $("headlines-frame").innerHTML = '';
+
+ let tmp = document.createElement("div");
+ tmp.innerHTML = reply['headlines']['content'];
+ dojo.parser.parse(tmp);
+
+ while (tmp.hasChildNodes()) {
+ const row = tmp.removeChild(tmp.firstChild);
+
+ if (this.loaded_article_ids.indexOf(row.id) == -1 || row.hasClassName("feed-title")) {
+ dijit.byId("headlines-frame").domNode.appendChild(row);
+
+ this.loaded_article_ids.push(row.id);
+ }
+ }
+
+ let hsp = $("headlines-spacer");
+
+ if (!hsp) {
+ hsp = document.createElement("div");
+ hsp.id = "headlines-spacer";
+ }
+
+ dijit.byId('headlines-frame').domNode.appendChild(hsp);
+
+ this.initHeadlinesMenu();
+
+ if (Feeds.infscroll_disabled)
+ hsp.innerHTML = "<a href='#' onclick='Feeds.openNextUnread()'>" +
+ __("Click to open next unread feed.") + "</a>";
+
+ if (Feeds._search_query) {
+ $("feed_title").innerHTML += "<span id='cancel_search'>" +
+ " (<a href='#' onclick='Feeds.cancelSearch()'>" + __("Cancel search") + "</a>)" +
+ "</span>";
+ }
+
+ } else if (headlines_count > 0 && feed_id == Feeds.getActive() && is_cat == Feeds.activeIsCat()) {
+ const c = dijit.byId("headlines-frame");
+ //const ids = Headlines.getSelected();
+
+ let hsp = $("headlines-spacer");
+
+ if (hsp)
+ c.domNode.removeChild(hsp);
+
+ let tmp = document.createElement("div");
+ tmp.innerHTML = reply['headlines']['content'];
+ dojo.parser.parse(tmp);
+
+ while (tmp.hasChildNodes()) {
+ let row = tmp.removeChild(tmp.firstChild);
+
+ if (this.loaded_article_ids.indexOf(row.id) == -1 || row.hasClassName("feed-title")) {
+ dijit.byId("headlines-frame").domNode.appendChild(row);
+
+ this.loaded_article_ids.push(row.id);
+ }
+ }
+
+ if (!hsp) {
+ hsp = document.createElement("div");
+ hsp.id = "headlines-spacer";
+ }
+
+ c.domNode.appendChild(hsp);
+
+ /* console.log("restore selected ids: " + ids);
+
+ for (let i = 0; i < ids.length; i++) {
+ markHeadline(ids[i]);
+ } */
+
+ this.initHeadlinesMenu();
+
+ if (Feeds.infscroll_disabled) {
+ hsp.innerHTML = "<a href='#' onclick='Feeds.openNextUnread()'>" +
+ __("Click to open next unread feed.") + "</a>";
+ }
+
+ } else {
+ console.log("no new headlines received");
+
+ const first_id_changed = reply['headlines']['first_id_changed'];
+ console.log("first id changed:" + first_id_changed);
+
+ let hsp = $("headlines-spacer");
+
+ if (hsp) {
+ if (first_id_changed) {
+ hsp.innerHTML = "<a href='#' onclick='Feeds.reloadCurrent()'>" +
+ __("New articles found, reload feed to continue.") + "</a>";
+ } else {
+ hsp.innerHTML = "<a href='#' onclick='Feeds.openNextUnread()'>" +
+ __("Click to open next unread feed.") + "</a>";
+ }
+ }
+ }
+
+ } else {
+ console.error("Invalid object received: " + transport.responseText);
+ dijit.byId("headlines-frame").attr('content', "<div class='whiteBox'>" +
+ __('Could not update headlines (invalid object received - see error console for details)') +
+ "</div>");
+ }
+
+ Feeds.infscroll_in_progress = 0;
+
+ // this is used to auto-catchup articles if needed after infscroll request has finished,
+ // unpack visible articles, fill buffer more, etc
+ this.scrollHandler();
+
+ notify("");
+ },
+ reverse: function() {
+ const toolbar = document.forms["main_toolbar_form"];
+ const order_by = dijit.getEnclosingWidget(toolbar.order_by);
+
+ let value = order_by.attr('value');
+
+ if (value == "date_reverse")
+ value = "default";
+ else
+ value = "date_reverse";
+
+ order_by.attr('value', value);
+
+ Feeds.reloadCurrent();
+ },
+ selectionToggleUnread: function(params) {
+ params = params || {};
+
+ const cmode = params.cmode || 2;
+ const callback = params.callback;
+ const no_error = params.no_error || false;
+ const ids = params.ids || Headlines.getSelected();
+
+ if (ids.length == 0) {
+ if (!no_error)
+ alert(__("No articles selected."));
+
+ return;
+ }
+
+ ids.each((id) => {
+ const row = $("RROW-" + id);
+
+ if (row) {
+ switch (cmode) {
+ case 0:
+ row.removeClassName("Unread");
+ break;
+ case 1:
+ row.addClassName("Unread");
+ break;
+ case 2:
+ row.toggleClassName("Unread");
+ }
+ }
+ });
+
+ const query = {
+ op: "rpc", method: "catchupSelected",
+ cmode: cmode, ids: ids.toString()
+ };
+
+ notify_progress("Loading, please wait...");
+
+ xhrPost("backend.php", query, (transport) => {
+ Utils.handleRpcJson(transport);
+ if (callback) callback(transport);
+ });
+ },
+ selectionToggleMarked: function(ids) {
+ const rows = ids || Headlines.getSelected();
+
+ if (rows.length == 0) {
+ alert(__("No articles selected."));
+ return;
+ }
+
+ for (let i = 0; i < rows.length; i++) {
+ this.toggleMark(rows[i], true, true);
+ }
+
+ const query = {
+ op: "rpc", method: "markSelected",
+ ids: rows.toString(), cmode: 2
+ };
+
+ xhrPost("backend.php", query, (transport) => {
+ Utils.handleRpcJson(transport);
+ });
+ },
+ selectionTogglePublished: function(ids) {
+ const rows = ids || Headlines.getSelected();
+
+ if (rows.length == 0) {
+ alert(__("No articles selected."));
+ return;
+ }
+
+ for (let i = 0; i < rows.length; i++) {
+ this.togglePub(rows[i], true);
+ }
+
+ if (rows.length > 0) {
+ const query = {
+ op: "rpc", method: "publishSelected",
+ ids: rows.toString(), cmode: 2
+ };
+
+ xhrPost("backend.php", query, (transport) => {
+ Utils.handleRpcJson(transport);
+ });
+ }
+ },
+ toggleMark: function(id, client_only) {
+ const query = {op: "rpc", id: id, method: "mark"};
+ const row = $("RROW-" + id);
+
+ if (row) {
+ const imgs = $$("img[class*=marked-pic][class*=marked-" + id + "]");
+
+ imgs.each((img) => {
+ if (!row.hasClassName("marked")) {
+ img.src = img.src.replace("mark_unset", "mark_set");
+ query.mark = 1;
+ } else {
+ img.src = img.src.replace("mark_set", "mark_unset");
+ query.mark = 0;
+ }
+ });
+
+ row.toggleClassName("marked");
+
+ if (!client_only)
+ xhrPost("backend.php", query, (transport) => {
+ Utils.handleRpcJson(transport);
+ });
+ }
+ },
+ togglePub: function(id, client_only) {
+ const row = $("RROW-" + id);
+
+ if (row) {
+ const query = {op: "rpc", id: id, method: "publ"};
+
+ const imgs = $$("img[class*=pub-pic][class*=pub-" + id + "]");
+
+ imgs.each((img) => {
+ if (!row.hasClassName("published")) {
+ img.src = img.src.replace("pub_unset", "pub_set");
+ query.pub = 1;
+ } else {
+ img.src = img.src.replace("pub_set", "pub_unset");
+ query.pub = 0;
+ }
+ });
+
+ row.toggleClassName("published");
+
+ if (!client_only)
+ xhrPost("backend.php", query, (transport) => {
+ Utils.handleRpcJson(transport);
+ });
+
+ }
+ },
+ move: function(mode, noscroll, noexpand) {
+ const rows = Headlines.getLoaded();
+
+ let prev_id = false;
+ let next_id = false;
+
+ if (!$('RROW-' + Article.getActive())) {
+ Article.setActive(0);
+ }
+
+ if (!Article.getActive()) {
+ next_id = rows[0];
+ prev_id = rows[rows.length - 1]
+ } else {
+ for (let i = 0; i < rows.length; i++) {
+ if (rows[i] == Article.getActive()) {
+
+ // Account for adjacent identical article ids.
+ if (i > 0) prev_id = rows[i - 1];
+
+ for (let j = i + 1; j < rows.length; j++) {
+ if (rows[j] != Article.getActive()) {
+ next_id = rows[j];
+ break;
+ }
+ }
+ break;
+ }
+ }
+ }
+
+ console.log("cur: " + Article.getActive() + " next: " + next_id);
+
+ if (mode == "next") {
+ if (next_id || Article.getActive()) {
+ if (App.isCombinedMode()) {
+
+ const article = $("RROW-" + Article.getActive());
+ const ctr = $("headlines-frame");
+
+ if (!noscroll && article && article.offsetTop + article.offsetHeight >
+ ctr.scrollTop + ctr.offsetHeight) {
+
+ Article.scroll(ctr.offsetHeight / 4);
+
+ } else if (next_id) {
+ Article.setActive(next_id);
+ Article.cdmScrollToId(next_id, true);
+ }
+
+ } else if (next_id) {
+ Headlines.correctHeadlinesOffset(next_id);
+ Article.view(next_id, noexpand);
+ }
+ }
+ }
+
+ if (mode == "prev") {
+ if (prev_id || Article.getActive()) {
+ if (App.isCombinedMode()) {
+
+ const article = $("RROW-" + Article.getActive());
+ const prev_article = $("RROW-" + prev_id);
+ const ctr = $("headlines-frame");
+
+ if (!noscroll && article && article.offsetTop < ctr.scrollTop) {
+ Article.scroll(-ctr.offsetHeight / 3);
+ } else if (!noscroll && prev_article &&
+ prev_article.offsetTop < ctr.scrollTop) {
+ Article.scroll(-ctr.offsetHeight / 4);
+ } else if (prev_id) {
+ Article.setActive(prev_id);
+ Article.cdmScrollToId(prev_id, noscroll);
+ }
+
+ } else if (prev_id) {
+ Headlines.correctHeadlinesOffset(prev_id);
+ Article.view(prev_id, noexpand);
+ }
+ }
+ }
+ },
+ updateSelectedPrompt: function() {
+ const count = Headlines.getSelected().length;
+ const elem = $("selected_prompt");
+
+ if (elem) {
+ elem.innerHTML = ngettext("%d article selected",
+ "%d articles selected", count).replace("%d", count);
+
+ count > 0 ? Element.show(elem) : Element.hide(elem);
+ }
+ },
+ toggleUnread: function(id, cmode) {
+ const row = $("RROW-" + id);
+
+ if (row) {
+ const origClassName = row.className;
+
+ if (cmode == undefined) cmode = 2;
+
+ switch (cmode) {
+ case 0:
+ row.removeClassName("Unread");
+ break;
+ case 1:
+ row.addClassName("Unread");
+ break;
+ case 2:
+ row.toggleClassName("Unread");
+ break;
+ }
+
+ if (row.className != origClassName)
+ xhrPost("backend.php",
+ {op: "rpc", method: "catchupSelected", cmode: cmode, ids: id}, (transport) => {
+ Utils.handleRpcJson(transport);
+ });
+ }
+ },
+ selectionRemoveLabel: function(id, ids) {
+ if (!ids) ids = Headlines.getSelected();
+
+ if (ids.length == 0) {
+ alert(__("No articles selected."));
+ return;
+ }
+
+ const query = {
+ op: "article", method: "removeFromLabel",
+ ids: ids.toString(), lid: id
+ };
+
+ xhrPost("backend.php", query, (transport) => {
+ Utils.handleRpcJson(transport);
+ this.onLabelsUpdated(transport);
+ });
+ },
+ selectionAssignLabel: function(id, ids) {
+ if (!ids) ids = Headlines.getSelected();
+
+ if (ids.length == 0) {
+ alert(__("No articles selected."));
+ return;
+ }
+
+ const query = {
+ op: "article", method: "assignToLabel",
+ ids: ids.toString(), lid: id
+ };
+
+ xhrPost("backend.php", query, (transport) => {
+ Utils.handleRpcJson(transport);
+ this.onLabelsUpdated(transport);
+ });
+ },
+ deleteSelection: function() {
+ const rows = Headlines.getSelected();
+
+ if (rows.length == 0) {
+ alert(__("No articles selected."));
+ return;
+ }
+
+ const fn = Feeds.getName(Feeds.getActive(), Feeds.activeIsCat());
+ let str;
+
+ if (Feeds.getActive() != 0) {
+ str = ngettext("Delete %d selected article in %s?", "Delete %d selected articles in %s?", rows.length);
+ } else {
+ str = ngettext("Delete %d selected article?", "Delete %d selected articles?", rows.length);
+ }
+
+ str = str.replace("%d", rows.length);
+ str = str.replace("%s", fn);
+
+ if (getInitParam("confirm_feed_catchup") == 1 && !confirm(str)) {
+ return;
+ }
+
+ const query = {op: "rpc", method: "delete", ids: rows.toString()};
+
+ xhrPost("backend.php", query, (transport) => {
+ Utils.handleRpcJson(transport);
+ Feeds.reloadCurrent();
+ });
+ },
+ getSelected: function() {
+ const rv = [];
+
+ $$("#headlines-frame > div[id*=RROW][class*=Selected]").each(
+ function (child) {
+ rv.push(child.getAttribute("data-article-id"));
+ });
+
+ // consider active article a honorary member of selected articles
+ if (Article.getActive())
+ rv.push(Article.getActive());
+
+ return rv.uniq();
+ },
+ getLoaded: function() {
+ const rv = [];
+
+ const children = $$("#headlines-frame > div[id*=RROW-]");
+
+ children.each(function (child) {
+ if (Element.visible(child)) {
+ rv.push(child.getAttribute("data-article-id"));
+ }
+ });
+
+ return rv;
+ },
+ onRowChecked: function(elem) {
+ // account for dojo checkboxes
+ elem = elem.domNode || elem;
+
+ elem.up("div[id*=RROW]").toggleClassName("Selected");
+
+ this.updateSelectedPrompt();
+ },
+ select: function(mode) {
+ // mode = all,none,unread,invert,marked,published
+ let query = "#headlines-frame > div[id*=RROW]";
+
+ switch (mode) {
+ case "none":
+ case "all":
+ case "invert":
+ break;
+ case "marked":
+ query += "[class*=marked]";
+ break;
+ case "published":
+ query += "[class*=published]";
+ break;
+ case "unread":
+ query += "[class*=Unread]";
+ break;
+ default:
+ console.warn("select: unknown mode", mode);
+ }
+
+ const rows = $$(query);
+
+ for (let i = 0; i < rows.length; i++) {
+ const row = rows[i];
+ const cb = dijit.getEnclosingWidget(row.select(".rchk")[0]);
+
+ switch (mode) {
+ case "none":
+ row.removeClassName("Selected");
+
+ if (!row.hasClassName("active"))
+ cb.attr("checked", false);
+ break;
+ case "invert":
+ if (row.hasClassName("Selected")) {
+ row.removeClassName("Selected");
+
+ if (!row.hasClassName("active"))
+ cb.attr("checked", false);
+ } else {
+ row.addClassName("Selected");
+ cb.attr("checked", true);
+ }
+ break;
+ default:
+ row.addClassName("Selected");
+ cb.attr("checked", true);
+ }
+
+ Headlines.updateSelectedPrompt();
+ }
+ },
+ archiveSelection: function() {
+ const rows = Headlines.getSelected();
+
+ if (rows.length == 0) {
+ alert(__("No articles selected."));
+ return;
+ }
+
+ const fn = Feeds.getName(Feeds.getActive(), Feeds.activeIsCat());
+ let str;
+ let op;
+
+ if (Feeds.getActive() != 0) {
+ str = ngettext("Archive %d selected article in %s?", "Archive %d selected articles in %s?", rows.length);
+ op = "archive";
+ } else {
+ str = ngettext("Move %d archived article back?", "Move %d archived articles back?", rows.length);
+ str += " " + __("Please note that unstarred articles might get purged on next feed update.");
+
+ op = "unarchive";
+ }
+
+ str = str.replace("%d", rows.length);
+ str = str.replace("%s", fn);
+
+ if (getInitParam("confirm_feed_catchup") == 1 && !confirm(str)) {
+ return;
+ }
+
+ for (let i = 0; i < rows.length; i++) {
+ ArticleCache.del(rows[i]);
+ }
+
+ const query = {op: "rpc", method: op, ids: rows.toString()};
+
+ xhrPost("backend.php", query, (transport) => {
+ Utils.handleRpcJson(transport);
+ Feeds.reloadCurrent();
+ });
+ },
+ catchupSelection: function() {
+ const rows = Headlines.getSelected();
+
+ if (rows.length == 0) {
+ alert(__("No articles selected."));
+ return;
+ }
+
+ const fn = Feeds.getName(Feeds.getActive(), Feeds.activeIsCat());
+
+ let str = ngettext("Mark %d selected article in %s as read?", "Mark %d selected articles in %s as read?", rows.length);
+
+ str = str.replace("%d", rows.length);
+ str = str.replace("%s", fn);
+
+ if (getInitParam("confirm_feed_catchup") == 1 && !confirm(str)) {
+ return;
+ }
+
+ Headlines.selectionToggleUnread({callback: Feeds.reloadCurrent, no_error: 1});
+ },
+ catchupBatched: function(callback) {
+ console.log("catchupBatched, size=", this.catchup_id_batch.length);
+
+ if (this.catchup_id_batch.length > 0) {
+
+ // make a copy of the array
+ const batch = this.catchup_id_batch.slice();
+ const query = {
+ op: "rpc", method: "catchupSelected",
+ cmode: 0, ids: batch.toString()
+ };
+
+ xhrPost("backend.php", query, (transport) => {
+ const reply = Utils.handleRpcJson(transport);
+
+ if (reply) {
+ const batch = reply.ids;
+
+ batch.each(function (id) {
+ const elem = $("RROW-" + id);
+ if (elem) elem.removeClassName("Unread");
+ Headlines.catchup_id_batch.remove(id);
+ });
+ }
+
+ Headlines.updateFloatingTitle(true);
+
+ if (callback) callback();
+ });
+ } else {
+ if (callback) callback();
+ }
+ },
+ catchupRelativeTo: function(below, id) {
+
+ if (!id) id = Article.getActive();
+
+ if (!id) {
+ alert(__("No article is selected."));
+ return;
+ }
+
+ const visible_ids = this.getLoaded();
+
+ const ids_to_mark = [];
+
+ if (!below) {
+ for (let i = 0; i < visible_ids.length; i++) {
+ if (visible_ids[i] != id) {
+ const e = $("RROW-" + visible_ids[i]);
+
+ if (e && e.hasClassName("Unread")) {
+ ids_to_mark.push(visible_ids[i]);
+ }
+ } else {
+ break;
+ }
+ }
+ } else {
+ for (let i = visible_ids.length - 1; i >= 0; i--) {
+ if (visible_ids[i] != id) {
+ const e = $("RROW-" + visible_ids[i]);
+
+ if (e && e.hasClassName("Unread")) {
+ ids_to_mark.push(visible_ids[i]);
+ }
+ } else {
+ break;
+ }
+ }
+ }
+
+ if (ids_to_mark.length == 0) {
+ alert(__("No articles found to mark"));
+ } else {
+ const msg = ngettext("Mark %d article as read?", "Mark %d articles as read?", ids_to_mark.length).replace("%d", ids_to_mark.length);
+
+ if (getInitParam("confirm_feed_catchup") != 1 || confirm(msg)) {
+
+ for (var i = 0; i < ids_to_mark.length; i++) {
+ var e = $("RROW-" + ids_to_mark[i]);
+ e.removeClassName("Unread");
+ }
+
+ const query = {
+ op: "rpc", method: "catchupSelected",
+ cmode: 0, ids: ids_to_mark.toString()
+ };
+
+ xhrPost("backend.php", query, (transport) => {
+ Utils.handleRpcJson(transport);
+ });
+ }
+ }
+ },
+ onLabelsUpdated: function(transport) {
+ const data = JSON.parse(transport.responseText);
+
+ if (data) {
+ data['info-for-headlines'].each(function (elem) {
+ $$(".HLLCTR-" + elem.id).each(function (ctr) {
+ ctr.innerHTML = elem.labels;
+ });
+ });
+ }
+ },
+ onActionChanged: function(elem) {
+ eval(elem.value);
+ elem.attr('value', 'false');
+ },
+ correctHeadlinesOffset: function(id) {
+ const container = $("headlines-frame");
+ const row = $("RROW-" + id);
+
+ if (!container || !row) return;
+
+ const viewport = container.offsetHeight;
+
+ const rel_offset_top = row.offsetTop - container.scrollTop;
+ const rel_offset_bottom = row.offsetTop + row.offsetHeight - container.scrollTop;
+
+ //console.log("Rtop: " + rel_offset_top + " Rbtm: " + rel_offset_bottom);
+ //console.log("Vport: " + viewport);
+
+ if (rel_offset_top <= 0 || rel_offset_top > viewport) {
+ container.scrollTop = row.offsetTop;
+ } else if (rel_offset_bottom > viewport) {
+ container.scrollTop = row.offsetTop + row.offsetHeight - viewport;
+ }
+ },
+ initFloatingMenu: function() {
+ if (!dijit.byId("floatingMenu")) {
+
+ const menu = new dijit.Menu({
+ id: "floatingMenu",
+ targetNodeIds: ["floatingTitle"]
+ });
+
+ this.headlinesMenuCommon(menu);
+
+ menu.startup();
+ }
+ },
+ headlinesMenuCommon: function(menu) {
+
+ menu.addChild(new dijit.MenuItem({
+ label: __("Open original article"),
+ onClick: function (event) {
+ Article.openInNewWindow(this.getParent().currentTarget.getAttribute("data-article-id"));
+ }
+ }));
+
+ menu.addChild(new dijit.MenuItem({
+ label: __("Display article URL"),
+ onClick: function (event) {
+ Article.displayUrl(this.getParent().currentTarget.getAttribute("data-article-id"));
+ }
+ }));
+
+ menu.addChild(new dijit.MenuSeparator());
+
+ menu.addChild(new dijit.MenuItem({
+ label: __("Toggle unread"),
+ onClick: function () {
+
+ let ids = Headlines.getSelected();
+ // cast to string
+ const id = (this.getParent().currentTarget.getAttribute("data-article-id")) + "";
+ ids = ids.length != 0 && ids.indexOf(id) != -1 ? ids : [id];
+
+ Headlines.selectionToggleUnread({ids: ids, no_error: 1});
+ }
+ }));
+
+ menu.addChild(new dijit.MenuItem({
+ label: __("Toggle starred"),
+ onClick: function () {
+ let ids = Headlines.getSelected();
+ // cast to string
+ const id = (this.getParent().currentTarget.getAttribute("data-article-id")) + "";
+ ids = ids.length != 0 && ids.indexOf(id) != -1 ? ids : [id];
+
+ Headlines.selectionToggleMarked(ids);
+ }
+ }));
+
+ menu.addChild(new dijit.MenuItem({
+ label: __("Toggle published"),
+ onClick: function () {
+ let ids = Headlines.getSelected();
+ // cast to string
+ const id = (this.getParent().currentTarget.getAttribute("data-article-id")) + "";
+ ids = ids.length != 0 && ids.indexOf(id) != -1 ? ids : [id];
+
+ Headlines.selectionTogglePublished(ids);
+ }
+ }));
+
+ menu.addChild(new dijit.MenuSeparator());
+
+ menu.addChild(new dijit.MenuItem({
+ label: __("Mark above as read"),
+ onClick: function () {
+ Headlines.catchupRelativeTo(0, this.getParent().currentTarget.getAttribute("data-article-id"));
+ }
+ }));
+
+ menu.addChild(new dijit.MenuItem({
+ label: __("Mark below as read"),
+ onClick: function () {
+ Headlines.catchupRelativeTo(1, this.getParent().currentTarget.getAttribute("data-article-id"));
+ }
+ }));
+
+
+ const labels = getInitParam("labels");
+
+ if (labels && labels.length) {
+
+ menu.addChild(new dijit.MenuSeparator());
+
+ const labelAddMenu = new dijit.Menu({ownerMenu: menu});
+ const labelDelMenu = new dijit.Menu({ownerMenu: menu});
+
+ labels.each(function (label) {
+ const bare_id = label.id;
+ const name = label.caption;
+
+ labelAddMenu.addChild(new dijit.MenuItem({
+ label: name,
+ labelId: bare_id,
+ onClick: function () {
+
+ let ids = Headlines.getSelected();
+ // cast to string
+ const id = (this.getParent().ownerMenu.currentTarget.getAttribute("data-article-id")) + "";
+
+ ids = ids.length != 0 && ids.indexOf(id) != -1 ? ids : [id];
+
+ Headlines.selectionAssignLabel(this.labelId, ids);
+ }
+ }));
+
+ labelDelMenu.addChild(new dijit.MenuItem({
+ label: name,
+ labelId: bare_id,
+ onClick: function () {
+ let ids = Headlines.getSelected();
+ // cast to string
+ const id = (this.getParent().ownerMenu.currentTarget.getAttribute("data-article-id")) + "";
+
+ ids = ids.length != 0 && ids.indexOf(id) != -1 ? ids : [id];
+
+ Headlines.selectionRemoveLabel(this.labelId, ids);
+ }
+ }));
+
+ });
+
+ menu.addChild(new dijit.PopupMenuItem({
+ label: __("Assign label"),
+ popup: labelAddMenu
+ }));
+
+ menu.addChild(new dijit.PopupMenuItem({
+ label: __("Remove label"),
+ popup: labelDelMenu
+ }));
+
+ }
+ },
+ initHeadlinesMenu: function() {
+ if (!dijit.byId("headlinesMenu")) {
+
+ const menu = new dijit.Menu({
+ id: "headlinesMenu",
+ targetNodeIds: ["headlines-frame"],
+ selector: ".hlMenuAttach"
+ });
+
+ this.headlinesMenuCommon(menu);
+
+ menu.startup();
+ }
+
+ /* vgroup feed title menu */
+
+ if (!dijit.byId("headlinesFeedTitleMenu")) {
+
+ const menu = new dijit.Menu({
+ id: "headlinesFeedTitleMenu",
+ targetNodeIds: ["headlines-frame"],
+ selector: "div.cdmFeedTitle"
+ });
+
+ menu.addChild(new dijit.MenuItem({
+ label: __("Select articles in group"),
+ onClick: function (event) {
+ Headlines.select("all",
+ "#headlines-frame > div[id*=RROW]" +
+ "[data-orig-feed-id='" + this.getParent().currentTarget.getAttribute("data-feed-id") + "']");
+
+ }
+ }));
+
+ menu.addChild(new dijit.MenuItem({
+ label: __("Mark group as read"),
+ onClick: function () {
+ Headlines.select("none");
+ Headlines.select("all",
+ "#headlines-frame > div[id*=RROW]" +
+ "[data-orig-feed-id='" + this.getParent().currentTarget.getAttribute("data-feed-id") + "']");
+
+ Headlines.catchupSelection();
+ }
+ }));
+
+ menu.addChild(new dijit.MenuItem({
+ label: __("Mark feed as read"),
+ onClick: function () {
+ Feeds.catchupFeedInGroup(this.getParent().currentTarget.getAttribute("data-feed-id"));
+ }
+ }));
+
+ menu.addChild(new dijit.MenuItem({
+ label: __("Edit feed"),
+ onClick: function () {
+ CommonDialogs.editFeed(this.getParent().currentTarget.getAttribute("data-feed-id"));
+ }
+ }));
+
+ menu.startup();
+ }
+ }
+ });
+}); \ No newline at end of file
diff --git a/js/feedlist.js b/js/feedlist.js
deleted file mode 100644
index eca068204..000000000
--- a/js/feedlist.js
+++ /dev/null
@@ -1,638 +0,0 @@
-/* global notify,__,dijit,fox */
-
-const Feeds = {
- counters_last_request: 0,
- _active_feed_id: 0,
- _active_feed_is_cat: false,
- infscroll_in_progress: 0,
- infscroll_disabled: 0,
- _infscroll_timeout: false,
- _search_query: false,
- last_search_query: [],
- _viewfeed_wait_timeout: false,
- _counters_prev: [],
- // NOTE: this implementation is incomplete
- // for general objects but good enough for counters
- // http://adripofjavascript.com/blog/drips/object-equality-in-javascript.html
- counterEquals: function(a, b) {
- // Create arrays of property names
- const aProps = Object.getOwnPropertyNames(a);
- const bProps = Object.getOwnPropertyNames(b);
-
- // If number of properties is different,
- // objects are not equivalent
- if (aProps.length != bProps.length) {
- return false;
- }
-
- for (let i = 0; i < aProps.length; i++) {
- const propName = aProps[i];
-
- // If values of same property are not equal,
- // objects are not equivalent
- if (a[propName] !== b[propName]) {
- return false;
- }
- }
-
- // If we made it this far, objects
- // are considered equivalent
- return true;
- },
- resetCounters: function () {
- this._counters_prev = [];
- },
- parseCounters: function (elems) {
- for (let l = 0; l < elems.length; l++) {
-
- if (Feeds._counters_prev[l] && this.counterEquals(elems[l], this._counters_prev[l])) {
- continue;
- }
-
- const id = elems[l].id;
- const kind = elems[l].kind;
- const ctr = parseInt(elems[l].counter);
- const error = elems[l].error;
- const has_img = elems[l].has_img;
- const updated = elems[l].updated;
- const auxctr = parseInt(elems[l].auxcounter);
-
- if (id == "global-unread") {
- App.global_unread = ctr;
- App.updateTitle();
- continue;
- }
-
- if (id == "subscribed-feeds") {
- /* feeds_found = ctr; */
- continue;
- }
-
- /*if (this.getUnread(id, (kind == "cat")) != ctr ||
- (kind == "cat")) {
- }*/
-
- this.setUnread(id, (kind == "cat"), ctr);
- this.setValue(id, (kind == "cat"), 'auxcounter', auxctr);
-
- if (kind != "cat") {
- this.setValue(id, false, 'error', error);
- this.setValue(id, false, 'updated', updated);
-
- if (id > 0) {
- if (has_img) {
- this.setIcon(id, false,
- getInitParam("icons_url") + "/" + id + ".ico?" + has_img);
- } else {
- this.setIcon(id, false, 'images/blank_icon.gif');
- }
- }
- }
- }
-
- this.hideOrShowFeeds(getInitParam("hide_read_feeds") == 1);
- this._counters_prev = elems;
- },
- reloadCurrent: function(method) {
- console.log("reloadCurrent: " + method);
-
- if (this.getActive() != undefined) {
- this.open({feed: this.getActive(), is_cat: this.activeIsCat(), method: method});
- }
- return false; // block unneeded form submits
- },
- openNextUnread: function() {
- const is_cat = this.activeIsCat();
- const nuf = this.getNextUnread(this.getActive(), is_cat);
- if (nuf) this.open({feed: nuf, is_cat: is_cat});
- },
- toggle: function() {
- Element.toggle("feeds-holder");
-
- const splitter = $("feeds-holder_splitter");
-
- Element.visible("feeds-holder") ? splitter.show() : splitter.hide();
-
- dijit.byId("main").resize();
- },
- cancelSearch: function() {
- this._search_query = "";
- this.reloadCurrent();
- },
- requestCounters: function(force) {
- const date = new Date();
- const timestamp = Math.round(date.getTime() / 1000);
-
- if (force || timestamp - this.counters_last_request > 5) {
- console.log("scheduling request of counters...");
-
- this.counters_last_request = timestamp;
-
- let query = {op: "rpc", method: "getAllCounters", seq: Utils.next_seq()};
-
- if (!force)
- query.last_article_id = getInitParam("last_article_id");
-
- xhrPost("backend.php", query, (transport) => {
- Utils.handleRpcJson(transport);
- });
-
- } else {
- console.log("request_counters: rate limit reached: " + (timestamp - this.counters_last_request));
- }
- },
- reload: function() {
- try {
- Element.show("feedlistLoading");
-
- this.resetCounters();
-
- if (dijit.byId("feedTree")) {
- dijit.byId("feedTree").destroyRecursive();
- }
-
- const store = new dojo.data.ItemFileWriteStore({
- url: "backend.php?op=pref_feeds&method=getfeedtree&mode=2"
- });
-
- // noinspection JSUnresolvedFunction
- const treeModel = new fox.FeedStoreModel({
- store: store,
- query: {
- "type": getInitParam('enable_feed_cats') == 1 ? "category" : "feed"
- },
- rootId: "root",
- rootLabel: "Feeds",
- childrenAttrs: ["items"]
- });
-
- // noinspection JSUnresolvedFunction
- const tree = new fox.FeedTree({
- model: treeModel,
- onClick: function (item/*, node*/) {
- const id = String(item.id);
- const is_cat = id.match("^CAT:");
- const feed = id.substr(id.indexOf(":") + 1);
- Feeds.open({feed: feed, is_cat: is_cat});
- return false;
- },
- openOnClick: false,
- showRoot: false,
- persist: true,
- id: "feedTree",
- }, "feedTree");
-
- const tmph = dojo.connect(dijit.byId('feedMenu'), '_openMyself', function (event) {
- console.log(dijit.getEnclosingWidget(event.target));
- dojo.disconnect(tmph);
- });
-
- $("feeds-holder").appendChild(tree.domNode);
-
- const tmph2 = dojo.connect(tree, 'onLoad', function () {
- dojo.disconnect(tmph2);
- Element.hide("feedlistLoading");
-
- try {
- Feeds.init();
- Utils.setLoadingProgress(25);
- } catch (e) {
- exception_error(e);
- }
- });
-
- tree.startup();
- } catch (e) {
- exception_error(e);
- }
- },
- init: function() {
- console.log("in feedlist init");
-
- Utils.setLoadingProgress(50);
-
- document.onkeydown = () => { App.hotkeyHandler(event) };
- window.setInterval(() => { Headlines.catchupBatched() }, 10 * 1000);
-
- if (!this.getActive()) {
- this.open({feed: -3});
- } else {
- this.open({feed: this.getActive(), is_cat: this.activeIsCat()});
- }
-
- this.hideOrShowFeeds(getInitParam("hide_read_feeds") == 1);
-
- if (getInitParam("is_default_pw")) {
- console.warn("user password is at default value");
-
- const dialog = new dijit.Dialog({
- title: __("Your password is at default value"),
- href: "backend.php?op=dlg&method=defaultpasswordwarning",
- id: 'infoBox',
- style: "width: 600px",
- onCancel: function () {
- return true;
- },
- onExecute: function () {
- return true;
- },
- onClose: function () {
- return true;
- }
- });
-
- dialog.show();
- }
-
- // bw_limit disables timeout() so we request initial counters separately
- if (getInitParam("bw_limit") == "1") {
- this.requestCounters(true);
- } else {
- setTimeout(() => {
- this.requestCounters(true);
- setInterval(() => { this.requestCounters(); }, 60 * 1000)
- }, 250);
- }
- },
- activeIsCat: function() {
- return !!this._active_feed_is_cat;
- },
- getActive: function() {
- return this._active_feed_id;
- },
- setActive: function(id, is_cat) {
- hash_set('f', id);
- hash_set('c', is_cat ? 1 : 0);
-
- this._active_feed_id = id;
- this._active_feed_is_cat = is_cat;
-
- $("headlines-frame").setAttribute("feed-id", id);
- $("headlines-frame").setAttribute("is-cat", is_cat ? 1 : 0);
-
- this.select(id, is_cat);
-
- PluginHost.run(PluginHost.HOOK_FEED_SET_ACTIVE, [this._active_feed_id, this._active_feed_is_cat]);
- },
- select: function(feed, is_cat) {
- const tree = dijit.byId("feedTree");
-
- if (tree) return tree.selectFeed(feed, is_cat);
- },
- toggleUnread: function() {
- const hide = !(getInitParam("hide_read_feeds") == "1");
-
- xhrPost("backend.php", {op: "rpc", method: "setpref", key: "HIDE_READ_FEEDS", value: hide}, () => {
- this.hideOrShowFeeds(hide);
- setInitParam("hide_read_feeds", hide);
- });
- },
- hideOrShowFeeds: function(hide) {
- const tree = dijit.byId("feedTree");
-
- if (tree)
- return tree.hideRead(hide, getInitParam("hide_read_shows_special"));
- },
- open: function(params) {
- const feed = params.feed;
- const is_cat = !!params.is_cat || false;
- const offset = params.offset || 0;
- const viewfeed_debug = params.viewfeed_debug;
- const method = params.method;
- // this is used to quickly switch between feeds, sets active but xhr is on a timeout
- const delayed = params.delayed || false;
-
- if (feed != this.getActive() || this.activeIsCat() != is_cat) {
- this._search_query = false;
- Article.setActive(0);
- }
-
- if (offset != 0) {
- if (this.infscroll_in_progress)
- return;
-
- this.infscroll_in_progress = 1;
-
- window.clearTimeout(this._infscroll_timeout);
- this._infscroll_timeout = window.setTimeout(() => {
- console.log('infscroll request timed out, aborting');
- this.infscroll_in_progress = 0;
-
- // call scroll handler to maybe repeat infscroll request
- Headlines.scrollHandler();
- }, 10 * 1000);
- }
-
- Form.enable("main_toolbar_form");
-
- let query = Object.assign({op: "feeds", method: "view", feed: feed},
- dojo.formToObject("main_toolbar_form"));
-
- if (method) query.m = method;
-
- if (offset > 0) {
- if (Headlines.current_first_id) {
- query.fid = Headlines.current_first_id;
- }
- }
-
- if (this._search_query) {
- query = Object.assign(query, this._search_query);
- }
-
- if (offset != 0) {
- query.skip = offset;
-
- // to prevent duplicate feed titles when showing grouped vfeeds
- if (Headlines.vgroup_last_feed != undefined) {
- query.vgrlf = Headlines.vgroup_last_feed;
- }
- } else if (!is_cat && feed == this.getActive() && !params.method) {
- query.m = "ForceUpdate";
- }
-
- Form.enable("main_toolbar_form");
-
- if (!delayed)
- if (!this.setExpando(feed, is_cat,
- (is_cat) ? 'images/indicator_tiny.gif' : 'images/indicator_white.gif'))
- notify_progress("Loading, please wait...", true);
-
- query.cat = is_cat;
-
- this.setActive(feed, is_cat);
-
- if (viewfeed_debug) {
- window.open("backend.php?" +
- dojo.objectToQuery(
- Object.assign({debug: 1, csrf_token: getInitParam("csrf_token")}, query)
- ));
- }
-
- window.clearTimeout(this._viewfeed_wait_timeout);
- this._viewfeed_wait_timeout = window.setTimeout(() => {
- Headlines.catchupBatched(() => {
- xhrPost("backend.php", query, (transport) => {
- try {
- window.clearTimeout(this._infscroll_timeout);
- this.setExpando(feed, is_cat, 'images/blank_icon.gif');
- Headlines.onLoaded(transport, offset);
- PluginHost.run(PluginHost.HOOK_FEED_LOADED, [feed, is_cat]);
- } catch (e) {
- exception_error(e);
- }
- });
- });
- }, delayed ? 250 : 0);
- },
- catchupAll: function() {
- 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"}, () => {
- this.requestCounters(true);
- this.reloadCurrent();
- });
-
- App.global_unread = 0;
- App.updateTitle();
- }
- },
- decrementFeedCounter: function(feed, is_cat) {
- let ctr = this.getUnread(feed, is_cat);
-
- if (ctr > 0) {
- this.setUnread(feed, is_cat, ctr - 1);
- App.global_unread -= 1;
- App.updateTitle();
-
- if (!is_cat) {
- const cat = parseInt(this.getCategory(feed));
-
- if (!isNaN(cat)) {
- ctr = this.getUnread(cat, true);
-
- if (ctr > 0) {
- this.setUnread(cat, true, ctr - 1);
- }
- }
- }
- }
- },
- catchupFeed: function(feed, is_cat, mode) {
- if (is_cat == undefined) is_cat = false;
-
- let str = false;
-
- switch (mode) {
- case "1day":
- str = __("Mark %w in %s older than 1 day as read?");
- break;
- case "1week":
- str = __("Mark %w in %s older than 1 week as read?");
- break;
- case "2week":
- str = __("Mark %w in %s older than 2 weeks as read?");
- break;
- default:
- str = __("Mark %w in %s as read?");
- }
-
- const mark_what = this.last_search_query && this.last_search_query[0] ? __("search results") : __("all articles");
- const fn = this.getName(feed, is_cat);
-
- str = str.replace("%s", fn)
- .replace("%w", mark_what);
-
- if (getInitParam("confirm_feed_catchup") == 1 && !confirm(str)) {
- return;
- }
-
- const catchup_query = {
- op: 'rpc', method: 'catchupFeed', feed_id: feed,
- is_cat: is_cat, mode: mode, search_query: this.last_search_query[0],
- search_lang: this.last_search_query[1]
- };
-
- notify_progress("Loading, please wait...", true);
-
- xhrPost("backend.php", catchup_query, (transport) => {
- Utils.handleRpcJson(transport);
-
- const show_next_feed = getInitParam("on_catchup_show_next_feed") == "1";
-
- if (show_next_feed) {
- const nuf = this.getNextUnread(feed, is_cat);
-
- if (nuf) {
- this.open({feed: nuf, is_cat: is_cat});
- }
- } else if (feed == this.getActive() && is_cat == this.activeIsCat()) {
- this.reloadCurrent();
- }
-
- notify("");
- });
- },
- catchupCurrent: function(mode) {
- this.catchupFeed(this.getActive(), this.activeIsCat(), mode);
- },
- catchupFeedInGroup: function(id) {
- const title = this.getName(id);
-
- const str = __("Mark all articles in %s as read?").replace("%s", title);
-
- if (getInitParam("confirm_feed_catchup") != 1 || confirm(str)) {
-
- const rows = $$("#headlines-frame > div[id*=RROW][data-orig-feed-id='" + id + "']");
-
- if (rows.length > 0) {
-
- rows.each(function (row) {
- row.removeClassName("Unread");
-
- if (row.getAttribute("data-article-id") != Article.getActive()) {
- new Effect.Fade(row, {duration: 0.5});
- }
-
- });
-
- const feedTitles = $$("#headlines-frame > div[class='feed-title']");
-
- for (let i = 0; i < feedTitles.length; i++) {
- if (feedTitles[i].getAttribute("data-feed-id") == id) {
-
- if (i < feedTitles.length - 1) {
- new Effect.Fade(feedTitles[i], {duration: 0.5});
- }
-
- break;
- }
- }
-
- Headlines.updateFloatingTitle(true);
- }
-
- notify_progress("Loading, please wait...", true);
-
- xhrPost("backend.php", {op: "rpc", method: "catchupFeed", feed_id: id, is_cat: false}, (transport) => {
- Utils.handleRpcJson(transport);
- });
- }
- },
- getUnread: function(feed, is_cat) {
- try {
- const tree = dijit.byId("feedTree");
-
- if (tree && tree.model)
- return tree.model.getFeedUnread(feed, is_cat);
-
- } catch (e) {
- //
- }
-
- return -1;
- },
- getCategory: function(feed) {
- try {
- const tree = dijit.byId("feedTree");
-
- if (tree && tree.model)
- return tree.getFeedCategory(feed);
-
- } catch (e) {
- //
- }
-
- return false;
- },
- getName: function(feed, is_cat) {
- if (isNaN(feed)) return feed; // it's a tag
-
- const tree = dijit.byId("feedTree");
-
- if (tree && tree.model)
- return tree.model.getFeedValue(feed, is_cat, 'name');
- },
- setUnread: function(feed, is_cat, unread) {
- const tree = dijit.byId("feedTree");
-
- if (tree && tree.model)
- return tree.model.setFeedUnread(feed, is_cat, unread);
- },
- setValue: function(feed, is_cat, key, value) {
- try {
- const tree = dijit.byId("feedTree");
-
- if (tree && tree.model)
- return tree.model.setFeedValue(feed, is_cat, key, value);
-
- } catch (e) {
- //
- }
- },
- getValue: function(feed, is_cat, key) {
- try {
- const tree = dijit.byId("feedTree");
-
- if (tree && tree.model)
- return tree.model.getFeedValue(feed, is_cat, key);
-
- } catch (e) {
- //
- }
- return '';
- },
- setIcon: function(feed, is_cat, src) {
- const tree = dijit.byId("feedTree");
-
- if (tree) return tree.setFeedIcon(feed, is_cat, src);
- },
- setExpando: function(feed, is_cat, src) {
- const tree = dijit.byId("feedTree");
-
- if (tree) return tree.setFeedExpandoIcon(feed, is_cat, src);
-
- return false;
- },
- getNextUnread: function(feed, is_cat) {
- const tree = dijit.byId("feedTree");
- const nuf = tree.model.getNextUnreadFeed(feed, is_cat);
-
- if (nuf)
- return tree.model.store.getValue(nuf, 'bare_id');
- },
- search: function() {
- const query = "backend.php?op=feeds&method=search&param=" +
- param_escape(Feeds.getActive() + ":" + Feeds.activeIsCat());
-
- if (dijit.byId("searchDlg"))
- dijit.byId("searchDlg").destroyRecursive();
-
- const dialog = new dijit.Dialog({
- id: "searchDlg",
- title: __("Search"),
- style: "width: 600px",
- execute: function () {
- if (this.validate()) {
- Feeds._search_query = this.attr('value');
- this.hide();
- Feeds.reloadCurrent();
- }
- },
- href: query
- });
-
- dialog.show();
- },
- updateRandom: function() {
- console.log("in update_random_feed");
-
- xhrPost("backend.php", {op: "rpc", method: "updateRandom"}, (transport) => {
- Utils.handleRpcJson(transport, true);
- });
- },
-};
diff --git a/js/prefs.js b/js/prefs.js
index 8804bdba9..637bc7905 100755
--- a/js/prefs.js
+++ b/js/prefs.js
@@ -1,4 +1,4 @@
-/* global dijit, __,fox */
+/* global dijit, __ */
let Utils;
let CommonDialogs;
diff --git a/js/tt-rss.js b/js/tt-rss.js
index d0a97a1c0..cbae4db4c 100644
--- a/js/tt-rss.js
+++ b/js/tt-rss.js
@@ -1,8 +1,12 @@
-/* global dijit,__,fox */
+/* global dijit,__ */
let Utils;
let CommonDialogs;
let Filters;
+let Feeds;
+let Headlines;
+let Article;
+let ArticleCache;
const App = {
global_unread: -1,
@@ -51,6 +55,10 @@ const App = {
"fox/Utils",
"fox/CommonDialogs",
"fox/CommonFilters",
+ "fox/Feeds",
+ "fox/Headlines",
+ "fox/Article",
+ "fox/ArticleCache",
"fox/FeedStoreModel",
"fox/FeedTree"], function (dojo, ready, parser) {
@@ -60,6 +68,10 @@ const App = {
Utils = fox.Utils();
CommonDialogs = fox.CommonDialogs();
Filters = fox.CommonFilters();
+ Feeds = fox.Feeds();
+ Headlines = fox.Headlines();
+ Article = fox.Article();
+ ArticleCache = fox.ArticleCache();
parser.parse();
diff --git a/js/viewfeed.js b/js/viewfeed.js
deleted file mode 100755
index 0365feeeb..000000000
--- a/js/viewfeed.js
+++ /dev/null
@@ -1,1569 +0,0 @@
-/* global dijit, __, ngettext, notify */
-
-const ArticleCache = {
- has_storage: 'sessionStorage' in window && window['sessionStorage'] !== null,
- set: function(id, obj) {
- if (this.has_storage)
- try {
- sessionStorage["article:" + id] = obj;
- } catch (e) {
- sessionStorage.clear();
- }
- },
- get: function(id) {
- if (this.has_storage)
- return sessionStorage["article:" + id];
- },
- clear: function() {
- if (this.has_storage)
- sessionStorage.clear();
- },
- del: function(id) {
- if (this.has_storage)
- sessionStorage.removeItem("article:" + id);
- },
-};
-
-const Article = {
- _active_article_id: 0,
- selectionSetScore: function() {
- const ids = Headlines.getSelected();
-
- if (ids.length > 0) {
- console.log(ids);
-
- const score = prompt(__("Please enter new score for selected articles:"));
-
- if (score != undefined) {
- const query = {
- op: "article", method: "setScore", id: ids.toString(),
- score: score
- };
-
- xhrJson("backend.php", query, (reply) => {
- if (reply) {
- reply.id.each((id) => {
- const row = $("RROW-" + id);
-
- if (row) {
- const pic = row.getElementsByClassName("score-pic")[0];
-
- if (pic) {
- pic.src = pic.src.replace(/score_.*?\.png/,
- reply["score_pic"]);
- pic.setAttribute("score", reply["score"]);
- }
- }
- });
- }
- });
- }
-
- } else {
- alert(__("No articles selected."));
- }
- },
- setScore: function(id, pic) {
- const score = pic.getAttribute("score");
-
- const new_score = prompt(__("Please enter new score for this article:"), score);
-
- if (new_score != undefined) {
- const query = {op: "article", method: "setScore", id: id, score: new_score};
-
- xhrJson("backend.php", query, (reply) => {
- if (reply) {
- pic.src = pic.src.replace(/score_.*?\.png/, reply["score_pic"]);
- pic.setAttribute("score", new_score);
- pic.setAttribute("title", new_score);
- }
- });
- }
- },
- cdmUnsetActive: function(event) {
- const row = $("RROW-" + Article.getActive());
-
- if (row) {
- row.removeClassName("active");
- const cb = dijit.getEnclosingWidget(row.select(".rchk")[0]);
-
- if (cb && !row.hasClassName("Selected"))
- cb.attr("checked", false);
-
- Article.setActive(0);
-
- if (event)
- event.stopPropagation();
-
- return false;
- }
- },
- close: function () {
- if (dijit.byId("content-insert"))
- dijit.byId("headlines-wrap-inner").removeChild(
- dijit.byId("content-insert"));
- },
- displayUrl: function (id) {
- const query = {op: "rpc", method: "getlinktitlebyid", id: id};
-
- xhrJson("backend.php", query, (reply) => {
- if (reply && reply.link) {
- prompt(__("Article URL:"), reply.link);
- }
- });
- },
- openInNewWindow: function (id) {
- const w = window.open("");
- w.opener = null;
- w.location = "backend.php?op=article&method=redirect&id=" + id;
-
- Article.setActive(id);
- },
- render: function (article) {
- Utils.cleanupMemory("content-insert");
-
- dijit.byId("headlines-wrap-inner").addChild(
- dijit.byId("content-insert"));
-
- const c = dijit.byId("content-insert");
-
- try {
- c.domNode.scrollTop = 0;
- } catch (e) {
- }
-
- c.attr('content', article);
- PluginHost.run(PluginHost.HOOK_ARTICLE_RENDERED, c.domNode);
-
- Headlines.correctHeadlinesOffset(Article.getActive());
-
- try {
- c.focus();
- } catch (e) {
- }
- },
- view: function(id, noexpand) {
- this.setActive(id);
-
- if (!noexpand) {
- console.log("loading article", id);
-
- const cids = [];
-
- /* only request uncached articles */
-
- this.getRelativeIds(id).each((n) => {
- if (!ArticleCache.get(n))
- cids.push(n);
- });
-
- const cached_article = ArticleCache.get(id);
-
- if (cached_article) {
- console.log('rendering cached', id);
- this.render(cached_article);
- return false;
- }
-
- xhrPost("backend.php", {op: "article", method: "view", id: id, cids: cids.toString()}, (transport) => {
- try {
- const reply = Utils.handleRpcJson(transport);
-
- if (reply) {
-
- reply.each(function (article) {
- if (Article.getActive() == article['id']) {
- Article.render(article['content']);
- }
- ArticleCache.set(article['id'], article['content']);
- });
-
- } else {
- console.error("Invalid object received: " + transport.responseText);
-
- Article.render("<div class='whiteBox'>" +
- __('Could not display article (invalid object received - see error console for details)') + "</div>");
- }
-
- //const unread_in_buffer = $$("#headlines-frame > div[id*=RROW][class*=Unread]").length;
- //request_counters(unread_in_buffer == 0);
-
- notify("");
-
- } catch (e) {
- exception_error(e);
- }
- })
- }
-
- return false;
- },
- editTags: function(id) {
- const query = "backend.php?op=article&method=editArticleTags&param=" + param_escape(id);
-
- if (dijit.byId("editTagsDlg"))
- dijit.byId("editTagsDlg").destroyRecursive();
-
- const dialog = new dijit.Dialog({
- id: "editTagsDlg",
- title: __("Edit article Tags"),
- style: "width: 600px",
- execute: function () {
- if (this.validate()) {
- notify_progress("Saving article tags...", true);
-
- xhrPost("backend.php", this.attr('value'), (transport) => {
- try {
- notify('');
- dialog.hide();
-
- const data = JSON.parse(transport.responseText);
-
- if (data) {
- const id = data.id;
-
- const tags = $("ATSTR-" + id);
- const tooltip = dijit.byId("ATSTRTIP-" + id);
-
- if (tags) tags.innerHTML = data.content;
- if (tooltip) tooltip.attr('label', data.content_full);
- }
- } catch (e) {
- exception_error(e);
- }
- });
- }
- },
- href: query
- });
-
- const tmph = dojo.connect(dialog, 'onLoad', function () {
- dojo.disconnect(tmph);
-
- new Ajax.Autocompleter('tags_str', 'tags_choices',
- "backend.php?op=article&method=completeTags",
- {tokens: ',', paramName: "search"});
- });
-
- dialog.show();
- },
- cdmScrollToId: function(id, force) {
- const ctr = $("headlines-frame");
- const e = $("RROW-" + id);
-
- if (!e || !ctr) return;
-
- if (force || e.offsetTop + e.offsetHeight > (ctr.scrollTop + ctr.offsetHeight) ||
- e.offsetTop < ctr.scrollTop) {
-
- // expanded cdm has a 4px margin now
- ctr.scrollTop = parseInt(e.offsetTop) - 4;
-
- Element.hide("floatingTitle");
- }
- },
- setActive: function(id) {
- console.log("setActive", id);
-
- $$("div[id*=RROW][class*=active]").each((e) => {
- e.removeClassName("active");
-
- if (!e.hasClassName("Selected")) {
- const cb = dijit.getEnclosingWidget(e.select(".rchk")[0]);
- if (cb) cb.attr("checked", false);
- }
- });
-
- this._active_article_id = id;
-
- const row = $("RROW-" + id);
-
- if (row) {
- if (row.hasAttribute("data-content")) {
- console.log("unpacking: " + row.id);
-
- row.select(".content-inner")[0].innerHTML = row.getAttribute("data-content");
- row.removeAttribute("data-content");
-
- PluginHost.run(PluginHost.HOOK_ARTICLE_RENDERED_CDM, row);
- }
-
- if (row.hasClassName("Unread")) {
-
- Headlines.catchupBatched(() => {
- Feeds.decrementFeedCounter(Feeds.getActive(), Feeds.activeIsCat());
- Headlines.toggleUnread(id, 0);
- Headlines.updateFloatingTitle(true);
- });
-
- }
-
- row.addClassName("active");
-
- if (!row.hasClassName("Selected")) {
- const cb = dijit.getEnclosingWidget(row.select(".rchk")[0]);
- if (cb) cb.attr("checked", true);
- }
-
- PluginHost.run(PluginHost.HOOK_ARTICLE_SET_ACTIVE, this._active_article_id);
- }
-
- Headlines.updateSelectedPrompt();
- },
- getActive: function() {
- return this._active_article_id;
- },
- scroll: function(offset) {
- if (!App.isCombinedMode()) {
- const ci = $("content-insert");
- if (ci) {
- ci.scrollTop += offset;
- }
- } else {
- const hi = $("headlines-frame");
- if (hi) {
- hi.scrollTop += offset;
- }
-
- }
- },
- getRelativeIds: function(id, limit) {
-
- const tmp = [];
-
- if (!limit) limit = 6; //3
-
- const ids = Headlines.getLoaded();
-
- for (let i = 0; i < ids.length; i++) {
- if (ids[i] == id) {
- for (let k = 1; k <= limit; k++) {
- //if (i > k-1) tmp.push(ids[i-k]);
- if (i < ids.length - k) tmp.push(ids[i + k]);
- }
- break;
- }
- }
-
- return tmp;
- },
- mouseIn: function(id) {
- this.post_under_pointer = id;
- },
- mouseOut: function(id) {
- this.post_under_pointer = false;
- },
- getUnderPointer: function() {
- return this.post_under_pointer;
- }
-};
-
-const Headlines = {
- vgroup_last_feed: undefined,
- _headlines_scroll_timeout: 0,
- loaded_article_ids: [],
- current_first_id: 0,
- catchup_id_batch: [],
- click: function(event, id, in_body) {
- in_body = in_body || false;
-
- if (App.isCombinedMode()) {
-
- if (!in_body && (event.ctrlKey || id == Article.getActive() || getInitParam("cdm_expanded"))) {
- Article.openInNewWindow(id);
- }
-
- Article.setActive(id);
-
- if (!getInitParam("cdm_expanded"))
- Article.cdmScrollToId(id);
-
- return in_body;
-
- } else {
- if (event.ctrlKey) {
- Article.openInNewWindow(id);
- Article.setActive(id);
- } else {
- Article.view(id);
- }
-
- return false;
- }
- },
- initScrollHandler: function() {
- $("headlines-frame").onscroll = (event) => {
- clearTimeout(this._headlines_scroll_timeout);
- this._headlines_scroll_timeout = window.setTimeout(function() {
- //console.log('done scrolling', event);
- Headlines.scrollHandler();
- }, 50);
- }
- },
- loadMore: function() {
- const view_mode = document.forms["main_toolbar_form"].view_mode.value;
- const unread_in_buffer = $$("#headlines-frame > div[id*=RROW][class*=Unread]").length;
- const num_all = $$("#headlines-frame > div[id*=RROW]").length;
- const num_unread = Feeds.getUnread(Feeds.getActive(), Feeds.activeIsCat());
-
- // TODO implement marked & published
-
- let offset = num_all;
-
- switch (view_mode) {
- case "marked":
- case "published":
- console.warn("loadMore: ", view_mode, "not implemented");
- break;
- case "unread":
- offset = unread_in_buffer;
- break;
- case "adaptive":
- if (!(Feeds.getActive() == -1 && !Feeds.activeIsCat()))
- offset = num_unread > 0 ? unread_in_buffer : num_all;
- break;
- }
-
- console.log("loadMore, offset=", offset);
-
- Feeds.open({feed: Feeds.getActive(), is_cat: Feeds.activeIsCat(), offset: offset});
- },
- scrollHandler: function() {
- try {
- Headlines.unpackVisible();
-
- if (App.isCombinedMode()) {
- Headlines.updateFloatingTitle();
-
- // set topmost child in the buffer as active, but not if we're at the beginning (to prevent auto marking
- // first article as read all the time)
- if ($("headlines-frame").scrollTop != 0 &&
- getInitParam("cdm_expanded") && getInitParam("cdm_auto_catchup") == 1) {
-
- const rows = $$("#headlines-frame > div[id*=RROW]");
-
- for (let i = 0; i < rows.length; i++) {
- const row = rows[i];
-
- if ($("headlines-frame").scrollTop <= row.offsetTop &&
- row.offsetTop - $("headlines-frame").scrollTop < 100 &&
- row.getAttribute("data-article-id") != Article.getActive()) {
-
- Article.setActive(row.getAttribute("data-article-id"));
- break;
- }
- }
- }
- }
-
- if (!Feeds.infscroll_disabled) {
- const hsp = $("headlines-spacer");
- const container = $("headlines-frame");
-
- if (hsp && hsp.offsetTop - 250 <= container.scrollTop + container.offsetHeight) {
-
- hsp.innerHTML = "<span class='loading'><img src='images/indicator_tiny.gif'> " +
- __("Loading, please wait...") + "</span>";
-
- Headlines.loadMore();
- return;
- }
- }
-
- if (getInitParam("cdm_auto_catchup") == 1) {
-
- let rows = $$("#headlines-frame > div[id*=RROW][class*=Unread]");
-
- for (let i = 0; i < rows.length; i++) {
- const row = rows[i];
-
- if ($("headlines-frame").scrollTop > (row.offsetTop + row.offsetHeight / 2)) {
- const id = row.getAttribute("data-article-id")
-
- if (this.catchup_id_batch.indexOf(id) == -1)
- this.catchup_id_batch.push(id);
-
- } else {
- break;
- }
- }
-
- if (Feeds.infscroll_disabled) {
- const row = $$("#headlines-frame div[id*=RROW]").last();
-
- if (row && $("headlines-frame").scrollTop >
- (row.offsetTop + row.offsetHeight - 50)) {
-
- console.log("we seem to be at an end");
-
- if (getInitParam("on_catchup_show_next_feed") == "1") {
- Feeds.openNextUnread();
- }
- }
- }
- }
- } catch (e) {
- console.warn("scrollHandler", e);
- }
- },
- updateFloatingTitle: function(unread_only) {
- if (!App.isCombinedMode()/* || !getInitParam("cdm_expanded")*/) return;
-
- const hf = $("headlines-frame");
- const elems = $$("#headlines-frame > div[id*=RROW]");
- const ft = $("floatingTitle");
-
- for (let i = 0; i < elems.length; i++) {
- const row = elems[i];
-
- if (row && row.offsetTop + row.offsetHeight > hf.scrollTop) {
-
- const header = row.select(".header")[0];
- const id = row.getAttribute("data-article-id");
-
- if (unread_only || id != ft.getAttribute("data-article-id")) {
- if (id != ft.getAttribute("data-article-id")) {
-
- ft.setAttribute("data-article-id", id);
- ft.innerHTML = header.innerHTML;
- ft.firstChild.innerHTML = "<img class='anchor marked-pic' src='images/page_white_go.png' " +
- "onclick=\"Article.cdmScrollToId(" + id + ", true)\">" + ft.firstChild.innerHTML;
-
- this.initFloatingMenu();
-
- const cb = ft.select(".rchk")[0];
-
- if (cb)
- cb.parentNode.removeChild(cb);
- }
-
- if (row.hasClassName("Unread"))
- ft.addClassName("Unread");
- else
- ft.removeClassName("Unread");
-
- PluginHost.run(PluginHost.HOOK_FLOATING_TITLE, row);
- }
-
- ft.style.marginRight = hf.offsetWidth - row.offsetWidth + "px";
-
- if (header.offsetTop + header.offsetHeight < hf.scrollTop + ft.offsetHeight - 5 &&
- row.offsetTop + row.offsetHeight >= hf.scrollTop + ft.offsetHeight - 5)
- new Effect.Appear(ft, {duration: 0.3});
- else
- Element.hide(ft);
-
- return;
- }
- }
- },
- unpackVisible: function() {
- if (!App.isCombinedMode() || !getInitParam("cdm_expanded")) return;
-
- const rows = $$("#headlines-frame div[id*=RROW][data-content]");
- const threshold = $("headlines-frame").scrollTop + $("headlines-frame").offsetHeight + 600;
-
- for (let i = 0; i < rows.length; i++) {
- const row = rows[i];
-
- if (row.offsetTop <= threshold) {
- console.log("unpacking: " + row.id);
-
- row.select(".content-inner")[0].innerHTML = row.getAttribute("data-content");
- row.removeAttribute("data-content");
-
- PluginHost.run(PluginHost.HOOK_ARTICLE_RENDERED_CDM, row);
- } else {
- break;
- }
- }
- },
- onLoaded: function(transport, offset) {
- const reply = Utils.handleRpcJson(transport);
-
- console.log("Headlines.onLoaded: offset=", offset);
-
- let is_cat = false;
- let feed_id = false;
-
- if (reply) {
-
- is_cat = reply['headlines']['is_cat'];
- feed_id = reply['headlines']['id'];
- Feeds.last_search_query = reply['headlines']['search_query'];
-
- if (feed_id != -7 && (feed_id != Feeds.getActive() || is_cat != Feeds.activeIsCat()))
- return;
-
- try {
- if (offset == 0) {
- $("headlines-frame").scrollTop = 0;
-
- Element.hide("floatingTitle");
- $("floatingTitle").setAttribute("data-article-id", 0);
- $("floatingTitle").innerHTML = "";
- }
- } catch (e) {
- }
-
- $("headlines-frame").removeClassName("cdm");
- $("headlines-frame").removeClassName("normal");
-
- $("headlines-frame").addClassName(App.isCombinedMode() ? "cdm" : "normal");
-
- const headlines_count = reply['headlines-info']['count'];
- Feeds.infscroll_disabled = parseInt(headlines_count) != 30;
-
- console.log('received', headlines_count, 'headlines, infscroll disabled=', Feeds.infscroll_disabled);
-
- this.vgroup_last_feed = reply['headlines-info']['vgroup_last_feed'];
- this.current_first_id = reply['headlines']['first_id'];
-
- if (offset == 0) {
- this.loaded_article_ids = [];
-
- dojo.html.set($("headlines-toolbar"),
- reply['headlines']['toolbar'],
- {parseContent: true});
-
- $("headlines-frame").innerHTML = '';
-
- let tmp = document.createElement("div");
- tmp.innerHTML = reply['headlines']['content'];
- dojo.parser.parse(tmp);
-
- while (tmp.hasChildNodes()) {
- const row = tmp.removeChild(tmp.firstChild);
-
- if (this.loaded_article_ids.indexOf(row.id) == -1 || row.hasClassName("feed-title")) {
- dijit.byId("headlines-frame").domNode.appendChild(row);
-
- this.loaded_article_ids.push(row.id);
- }
- }
-
- let hsp = $("headlines-spacer");
-
- if (!hsp) {
- hsp = document.createElement("div");
- hsp.id = "headlines-spacer";
- }
-
- dijit.byId('headlines-frame').domNode.appendChild(hsp);
-
- this.initHeadlinesMenu();
-
- if (Feeds.infscroll_disabled)
- hsp.innerHTML = "<a href='#' onclick='Feeds.openNextUnread()'>" +
- __("Click to open next unread feed.") + "</a>";
-
- if (Feeds._search_query) {
- $("feed_title").innerHTML += "<span id='cancel_search'>" +
- " (<a href='#' onclick='Feeds.cancelSearch()'>" + __("Cancel search") + "</a>)" +
- "</span>";
- }
-
- } else if (headlines_count > 0 && feed_id == Feeds.getActive() && is_cat == Feeds.activeIsCat()) {
- const c = dijit.byId("headlines-frame");
- //const ids = Headlines.getSelected();
-
- let hsp = $("headlines-spacer");
-
- if (hsp)
- c.domNode.removeChild(hsp);
-
- let tmp = document.createElement("div");
- tmp.innerHTML = reply['headlines']['content'];
- dojo.parser.parse(tmp);
-
- while (tmp.hasChildNodes()) {
- let row = tmp.removeChild(tmp.firstChild);
-
- if (this.loaded_article_ids.indexOf(row.id) == -1 || row.hasClassName("feed-title")) {
- dijit.byId("headlines-frame").domNode.appendChild(row);
-
- this.loaded_article_ids.push(row.id);
- }
- }
-
- if (!hsp) {
- hsp = document.createElement("div");
- hsp.id = "headlines-spacer";
- }
-
- c.domNode.appendChild(hsp);
-
- /* console.log("restore selected ids: " + ids);
-
- for (let i = 0; i < ids.length; i++) {
- markHeadline(ids[i]);
- } */
-
- this.initHeadlinesMenu();
-
- if (Feeds.infscroll_disabled) {
- hsp.innerHTML = "<a href='#' onclick='Feeds.openNextUnread()'>" +
- __("Click to open next unread feed.") + "</a>";
- }
-
- } else {
- console.log("no new headlines received");
-
- const first_id_changed = reply['headlines']['first_id_changed'];
- console.log("first id changed:" + first_id_changed);
-
- let hsp = $("headlines-spacer");
-
- if (hsp) {
- if (first_id_changed) {
- hsp.innerHTML = "<a href='#' onclick='Feeds.reloadCurrent()'>" +
- __("New articles found, reload feed to continue.") + "</a>";
- } else {
- hsp.innerHTML = "<a href='#' onclick='Feeds.openNextUnread()'>" +
- __("Click to open next unread feed.") + "</a>";
- }
- }
- }
-
- } else {
- console.error("Invalid object received: " + transport.responseText);
- dijit.byId("headlines-frame").attr('content', "<div class='whiteBox'>" +
- __('Could not update headlines (invalid object received - see error console for details)') +
- "</div>");
- }
-
- Feeds.infscroll_in_progress = 0;
-
- // this is used to auto-catchup articles if needed after infscroll request has finished,
- // unpack visible articles, fill buffer more, etc
- this.scrollHandler();
-
- notify("");
- },
- reverse: function() {
- const toolbar = document.forms["main_toolbar_form"];
- const order_by = dijit.getEnclosingWidget(toolbar.order_by);
-
- let value = order_by.attr('value');
-
- if (value == "date_reverse")
- value = "default";
- else
- value = "date_reverse";
-
- order_by.attr('value', value);
-
- Feeds.reloadCurrent();
- },
- selectionToggleUnread: function(params) {
- params = params || {};
-
- const cmode = params.cmode || 2;
- const callback = params.callback;
- const no_error = params.no_error || false;
- const ids = params.ids || Headlines.getSelected();
-
- if (ids.length == 0) {
- if (!no_error)
- alert(__("No articles selected."));
-
- return;
- }
-
- ids.each((id) => {
- const row = $("RROW-" + id);
-
- if (row) {
- switch (cmode) {
- case 0:
- row.removeClassName("Unread");
- break;
- case 1:
- row.addClassName("Unread");
- break;
- case 2:
- row.toggleClassName("Unread");
- }
- }
- });
-
- const query = {
- op: "rpc", method: "catchupSelected",
- cmode: cmode, ids: ids.toString()
- };
-
- notify_progress("Loading, please wait...");
-
- xhrPost("backend.php", query, (transport) => {
- Utils.handleRpcJson(transport);
- if (callback) callback(transport);
- });
- },
- selectionToggleMarked: function(ids) {
- const rows = ids || Headlines.getSelected();
-
- if (rows.length == 0) {
- alert(__("No articles selected."));
- return;
- }
-
- for (let i = 0; i < rows.length; i++) {
- this.toggleMark(rows[i], true, true);
- }
-
- const query = {
- op: "rpc", method: "markSelected",
- ids: rows.toString(), cmode: 2
- };
-
- xhrPost("backend.php", query, (transport) => {
- Utils.handleRpcJson(transport);
- });
- },
- selectionTogglePublished: function(ids) {
- const rows = ids || Headlines.getSelected();
-
- if (rows.length == 0) {
- alert(__("No articles selected."));
- return;
- }
-
- for (let i = 0; i < rows.length; i++) {
- this.togglePub(rows[i], true);
- }
-
- if (rows.length > 0) {
- const query = {
- op: "rpc", method: "publishSelected",
- ids: rows.toString(), cmode: 2
- };
-
- xhrPost("backend.php", query, (transport) => {
- Utils.handleRpcJson(transport);
- });
- }
- },
- toggleMark: function(id, client_only) {
- const query = {op: "rpc", id: id, method: "mark"};
- const row = $("RROW-" + id);
-
- if (row) {
- const imgs = $$("img[class*=marked-pic][class*=marked-" + id + "]");
-
- imgs.each((img) => {
- if (!row.hasClassName("marked")) {
- img.src = img.src.replace("mark_unset", "mark_set");
- query.mark = 1;
- } else {
- img.src = img.src.replace("mark_set", "mark_unset");
- query.mark = 0;
- }
- });
-
- row.toggleClassName("marked");
-
- if (!client_only)
- xhrPost("backend.php", query, (transport) => {
- Utils.handleRpcJson(transport);
- });
- }
- },
- togglePub: function(id, client_only) {
- const row = $("RROW-" + id);
-
- if (row) {
- const query = {op: "rpc", id: id, method: "publ"};
-
- const imgs = $$("img[class*=pub-pic][class*=pub-" + id + "]");
-
- imgs.each((img) => {
- if (!row.hasClassName("published")) {
- img.src = img.src.replace("pub_unset", "pub_set");
- query.pub = 1;
- } else {
- img.src = img.src.replace("pub_set", "pub_unset");
- query.pub = 0;
- }
- });
-
- row.toggleClassName("published");
-
- if (!client_only)
- xhrPost("backend.php", query, (transport) => {
- Utils.handleRpcJson(transport);
- });
-
- }
- },
- move: function(mode, noscroll, noexpand) {
- const rows = Headlines.getLoaded();
-
- let prev_id = false;
- let next_id = false;
-
- if (!$('RROW-' + Article.getActive())) {
- Article.setActive(0);
- }
-
- if (!Article.getActive()) {
- next_id = rows[0];
- prev_id = rows[rows.length - 1]
- } else {
- for (let i = 0; i < rows.length; i++) {
- if (rows[i] == Article.getActive()) {
-
- // Account for adjacent identical article ids.
- if (i > 0) prev_id = rows[i - 1];
-
- for (let j = i + 1; j < rows.length; j++) {
- if (rows[j] != Article.getActive()) {
- next_id = rows[j];
- break;
- }
- }
- break;
- }
- }
- }
-
- console.log("cur: " + Article.getActive() + " next: " + next_id);
-
- if (mode == "next") {
- if (next_id || Article.getActive()) {
- if (App.isCombinedMode()) {
-
- const article = $("RROW-" + Article.getActive());
- const ctr = $("headlines-frame");
-
- if (!noscroll && article && article.offsetTop + article.offsetHeight >
- ctr.scrollTop + ctr.offsetHeight) {
-
- Article.scroll(ctr.offsetHeight / 4);
-
- } else if (next_id) {
- Article.setActive(next_id);
- Article.cdmScrollToId(next_id, true);
- }
-
- } else if (next_id) {
- Headlines.correctHeadlinesOffset(next_id);
- Article.view(next_id, noexpand);
- }
- }
- }
-
- if (mode == "prev") {
- if (prev_id || Article.getActive()) {
- if (App.isCombinedMode()) {
-
- const article = $("RROW-" + Article.getActive());
- const prev_article = $("RROW-" + prev_id);
- const ctr = $("headlines-frame");
-
- if (!noscroll && article && article.offsetTop < ctr.scrollTop) {
- Article.scroll(-ctr.offsetHeight / 3);
- } else if (!noscroll && prev_article &&
- prev_article.offsetTop < ctr.scrollTop) {
- Article.scroll(-ctr.offsetHeight / 4);
- } else if (prev_id) {
- Article.setActive(prev_id);
- Article.cdmScrollToId(prev_id, noscroll);
- }
-
- } else if (prev_id) {
- Headlines.correctHeadlinesOffset(prev_id);
- Article.view(prev_id, noexpand);
- }
- }
- }
- },
- updateSelectedPrompt: function() {
- const count = Headlines.getSelected().length;
- const elem = $("selected_prompt");
-
- if (elem) {
- elem.innerHTML = ngettext("%d article selected",
- "%d articles selected", count).replace("%d", count);
-
- count > 0 ? Element.show(elem) : Element.hide(elem);
- }
- },
- toggleUnread: function(id, cmode) {
- const row = $("RROW-" + id);
-
- if (row) {
- const origClassName = row.className;
-
- if (cmode == undefined) cmode = 2;
-
- switch (cmode) {
- case 0:
- row.removeClassName("Unread");
- break;
- case 1:
- row.addClassName("Unread");
- break;
- case 2:
- row.toggleClassName("Unread");
- break;
- }
-
- if (row.className != origClassName)
- xhrPost("backend.php",
- {op: "rpc", method: "catchupSelected", cmode: cmode, ids: id}, (transport) => {
- Utils.handleRpcJson(transport);
- });
- }
- },
- selectionRemoveLabel: function(id, ids) {
- if (!ids) ids = Headlines.getSelected();
-
- if (ids.length == 0) {
- alert(__("No articles selected."));
- return;
- }
-
- const query = {
- op: "article", method: "removeFromLabel",
- ids: ids.toString(), lid: id
- };
-
- xhrPost("backend.php", query, (transport) => {
- Utils.handleRpcJson(transport);
- this.onLabelsUpdated(transport);
- });
- },
- selectionAssignLabel: function(id, ids) {
- if (!ids) ids = Headlines.getSelected();
-
- if (ids.length == 0) {
- alert(__("No articles selected."));
- return;
- }
-
- const query = {
- op: "article", method: "assignToLabel",
- ids: ids.toString(), lid: id
- };
-
- xhrPost("backend.php", query, (transport) => {
- Utils.handleRpcJson(transport);
- this.onLabelsUpdated(transport);
- });
- },
- deleteSelection: function() {
- const rows = Headlines.getSelected();
-
- if (rows.length == 0) {
- alert(__("No articles selected."));
- return;
- }
-
- const fn = Feeds.getName(Feeds.getActive(), Feeds.activeIsCat());
- let str;
-
- if (Feeds.getActive() != 0) {
- str = ngettext("Delete %d selected article in %s?", "Delete %d selected articles in %s?", rows.length);
- } else {
- str = ngettext("Delete %d selected article?", "Delete %d selected articles?", rows.length);
- }
-
- str = str.replace("%d", rows.length);
- str = str.replace("%s", fn);
-
- if (getInitParam("confirm_feed_catchup") == 1 && !confirm(str)) {
- return;
- }
-
- const query = {op: "rpc", method: "delete", ids: rows.toString()};
-
- xhrPost("backend.php", query, (transport) => {
- Utils.handleRpcJson(transport);
- Feeds.reloadCurrent();
- });
- },
- getSelected: function() {
- const rv = [];
-
- $$("#headlines-frame > div[id*=RROW][class*=Selected]").each(
- function (child) {
- rv.push(child.getAttribute("data-article-id"));
- });
-
- // consider active article a honorary member of selected articles
- if (Article.getActive())
- rv.push(Article.getActive());
-
- return rv.uniq();
- },
- getLoaded: function() {
- const rv = [];
-
- const children = $$("#headlines-frame > div[id*=RROW-]");
-
- children.each(function (child) {
- if (Element.visible(child)) {
- rv.push(child.getAttribute("data-article-id"));
- }
- });
-
- return rv;
- },
- onRowChecked: function(elem) {
- // account for dojo checkboxes
- elem = elem.domNode || elem;
-
- elem.up("div[id*=RROW]").toggleClassName("Selected");
-
- this.updateSelectedPrompt();
- },
- select: function(mode) {
- // mode = all,none,unread,invert,marked,published
- let query = "#headlines-frame > div[id*=RROW]";
-
- switch (mode) {
- case "none":
- case "all":
- case "invert":
- break;
- case "marked":
- query += "[class*=marked]";
- break;
- case "published":
- query += "[class*=published]";
- break;
- case "unread":
- query += "[class*=Unread]";
- break;
- default:
- console.warn("select: unknown mode", mode);
- }
-
- const rows = $$(query);
-
- for (let i = 0; i < rows.length; i++) {
- const row = rows[i];
- const cb = dijit.getEnclosingWidget(row.select(".rchk")[0]);
-
- switch (mode) {
- case "none":
- row.removeClassName("Selected");
-
- if (!row.hasClassName("active"))
- cb.attr("checked", false);
- break;
- case "invert":
- if (row.hasClassName("Selected")) {
- row.removeClassName("Selected");
-
- if (!row.hasClassName("active"))
- cb.attr("checked", false);
- } else {
- row.addClassName("Selected");
- cb.attr("checked", true);
- }
- break;
- default:
- row.addClassName("Selected");
- cb.attr("checked", true);
- }
-
- Headlines.updateSelectedPrompt();
- }
- },
- archiveSelection: function() {
- const rows = Headlines.getSelected();
-
- if (rows.length == 0) {
- alert(__("No articles selected."));
- return;
- }
-
- const fn = Feeds.getName(Feeds.getActive(), Feeds.activeIsCat());
- let str;
- let op;
-
- if (Feeds.getActive() != 0) {
- str = ngettext("Archive %d selected article in %s?", "Archive %d selected articles in %s?", rows.length);
- op = "archive";
- } else {
- str = ngettext("Move %d archived article back?", "Move %d archived articles back?", rows.length);
- str += " " + __("Please note that unstarred articles might get purged on next feed update.");
-
- op = "unarchive";
- }
-
- str = str.replace("%d", rows.length);
- str = str.replace("%s", fn);
-
- if (getInitParam("confirm_feed_catchup") == 1 && !confirm(str)) {
- return;
- }
-
- for (let i = 0; i < rows.length; i++) {
- ArticleCache.del(rows[i]);
- }
-
- const query = {op: "rpc", method: op, ids: rows.toString()};
-
- xhrPost("backend.php", query, (transport) => {
- Utils.handleRpcJson(transport);
- Feeds.reloadCurrent();
- });
- },
- catchupSelection: function() {
- const rows = Headlines.getSelected();
-
- if (rows.length == 0) {
- alert(__("No articles selected."));
- return;
- }
-
- const fn = Feeds.getName(Feeds.getActive(), Feeds.activeIsCat());
-
- let str = ngettext("Mark %d selected article in %s as read?", "Mark %d selected articles in %s as read?", rows.length);
-
- str = str.replace("%d", rows.length);
- str = str.replace("%s", fn);
-
- if (getInitParam("confirm_feed_catchup") == 1 && !confirm(str)) {
- return;
- }
-
- Headlines.selectionToggleUnread({callback: Feeds.reloadCurrent, no_error: 1});
- },
- catchupBatched: function(callback) {
- console.log("catchupBatched, size=", this.catchup_id_batch.length);
-
- if (this.catchup_id_batch.length > 0) {
-
- // make a copy of the array
- const batch = this.catchup_id_batch.slice();
- const query = {
- op: "rpc", method: "catchupSelected",
- cmode: 0, ids: batch.toString()
- };
-
- xhrPost("backend.php", query, (transport) => {
- const reply = Utils.handleRpcJson(transport);
-
- if (reply) {
- const batch = reply.ids;
-
- batch.each(function (id) {
- const elem = $("RROW-" + id);
- if (elem) elem.removeClassName("Unread");
- Headlines.catchup_id_batch.remove(id);
- });
- }
-
- Headlines.updateFloatingTitle(true);
-
- if (callback) callback();
- });
- } else {
- if (callback) callback();
- }
- },
- catchupRelativeTo: function(below, id) {
-
- if (!id) id = Article.getActive();
-
- if (!id) {
- alert(__("No article is selected."));
- return;
- }
-
- const visible_ids = this.getLoaded();
-
- const ids_to_mark = [];
-
- if (!below) {
- for (let i = 0; i < visible_ids.length; i++) {
- if (visible_ids[i] != id) {
- const e = $("RROW-" + visible_ids[i]);
-
- if (e && e.hasClassName("Unread")) {
- ids_to_mark.push(visible_ids[i]);
- }
- } else {
- break;
- }
- }
- } else {
- for (let i = visible_ids.length - 1; i >= 0; i--) {
- if (visible_ids[i] != id) {
- const e = $("RROW-" + visible_ids[i]);
-
- if (e && e.hasClassName("Unread")) {
- ids_to_mark.push(visible_ids[i]);
- }
- } else {
- break;
- }
- }
- }
-
- if (ids_to_mark.length == 0) {
- alert(__("No articles found to mark"));
- } else {
- const msg = ngettext("Mark %d article as read?", "Mark %d articles as read?", ids_to_mark.length).replace("%d", ids_to_mark.length);
-
- if (getInitParam("confirm_feed_catchup") != 1 || confirm(msg)) {
-
- for (var i = 0; i < ids_to_mark.length; i++) {
- var e = $("RROW-" + ids_to_mark[i]);
- e.removeClassName("Unread");
- }
-
- const query = {
- op: "rpc", method: "catchupSelected",
- cmode: 0, ids: ids_to_mark.toString()
- };
-
- xhrPost("backend.php", query, (transport) => {
- Utils.handleRpcJson(transport);
- });
- }
- }
- },
- onLabelsUpdated: function(transport) {
- const data = JSON.parse(transport.responseText);
-
- if (data) {
- data['info-for-headlines'].each(function (elem) {
- $$(".HLLCTR-" + elem.id).each(function (ctr) {
- ctr.innerHTML = elem.labels;
- });
- });
- }
- },
- onActionChanged: function(elem) {
- eval(elem.value);
- elem.attr('value', 'false');
- },
- correctHeadlinesOffset: function(id) {
- const container = $("headlines-frame");
- const row = $("RROW-" + id);
-
- if (!container || !row) return;
-
- const viewport = container.offsetHeight;
-
- const rel_offset_top = row.offsetTop - container.scrollTop;
- const rel_offset_bottom = row.offsetTop + row.offsetHeight - container.scrollTop;
-
- //console.log("Rtop: " + rel_offset_top + " Rbtm: " + rel_offset_bottom);
- //console.log("Vport: " + viewport);
-
- if (rel_offset_top <= 0 || rel_offset_top > viewport) {
- container.scrollTop = row.offsetTop;
- } else if (rel_offset_bottom > viewport) {
- container.scrollTop = row.offsetTop + row.offsetHeight - viewport;
- }
- },
- initFloatingMenu: function() {
- if (!dijit.byId("floatingMenu")) {
-
- const menu = new dijit.Menu({
- id: "floatingMenu",
- targetNodeIds: ["floatingTitle"]
- });
-
- this.headlinesMenuCommon(menu);
-
- menu.startup();
- }
- },
- headlinesMenuCommon: function(menu) {
-
- menu.addChild(new dijit.MenuItem({
- label: __("Open original article"),
- onClick: function (event) {
- Article.openInNewWindow(this.getParent().currentTarget.getAttribute("data-article-id"));
- }
- }));
-
- menu.addChild(new dijit.MenuItem({
- label: __("Display article URL"),
- onClick: function (event) {
- Article.displayUrl(this.getParent().currentTarget.getAttribute("data-article-id"));
- }
- }));
-
- menu.addChild(new dijit.MenuSeparator());
-
- menu.addChild(new dijit.MenuItem({
- label: __("Toggle unread"),
- onClick: function () {
-
- let ids = Headlines.getSelected();
- // cast to string
- const id = (this.getParent().currentTarget.getAttribute("data-article-id")) + "";
- ids = ids.length != 0 && ids.indexOf(id) != -1 ? ids : [id];
-
- Headlines.selectionToggleUnread({ids: ids, no_error: 1});
- }
- }));
-
- menu.addChild(new dijit.MenuItem({
- label: __("Toggle starred"),
- onClick: function () {
- let ids = Headlines.getSelected();
- // cast to string
- const id = (this.getParent().currentTarget.getAttribute("data-article-id")) + "";
- ids = ids.length != 0 && ids.indexOf(id) != -1 ? ids : [id];
-
- Headlines.selectionToggleMarked(ids);
- }
- }));
-
- menu.addChild(new dijit.MenuItem({
- label: __("Toggle published"),
- onClick: function () {
- let ids = Headlines.getSelected();
- // cast to string
- const id = (this.getParent().currentTarget.getAttribute("data-article-id")) + "";
- ids = ids.length != 0 && ids.indexOf(id) != -1 ? ids : [id];
-
- Headlines.selectionTogglePublished(ids);
- }
- }));
-
- menu.addChild(new dijit.MenuSeparator());
-
- menu.addChild(new dijit.MenuItem({
- label: __("Mark above as read"),
- onClick: function () {
- Headlines.catchupRelativeTo(0, this.getParent().currentTarget.getAttribute("data-article-id"));
- }
- }));
-
- menu.addChild(new dijit.MenuItem({
- label: __("Mark below as read"),
- onClick: function () {
- Headlines.catchupRelativeTo(1, this.getParent().currentTarget.getAttribute("data-article-id"));
- }
- }));
-
-
- const labels = getInitParam("labels");
-
- if (labels && labels.length) {
-
- menu.addChild(new dijit.MenuSeparator());
-
- const labelAddMenu = new dijit.Menu({ownerMenu: menu});
- const labelDelMenu = new dijit.Menu({ownerMenu: menu});
-
- labels.each(function (label) {
- const bare_id = label.id;
- const name = label.caption;
-
- labelAddMenu.addChild(new dijit.MenuItem({
- label: name,
- labelId: bare_id,
- onClick: function () {
-
- let ids = Headlines.getSelected();
- // cast to string
- const id = (this.getParent().ownerMenu.currentTarget.getAttribute("data-article-id")) + "";
-
- ids = ids.length != 0 && ids.indexOf(id) != -1 ? ids : [id];
-
- Headlines.selectionAssignLabel(this.labelId, ids);
- }
- }));
-
- labelDelMenu.addChild(new dijit.MenuItem({
- label: name,
- labelId: bare_id,
- onClick: function () {
- let ids = Headlines.getSelected();
- // cast to string
- const id = (this.getParent().ownerMenu.currentTarget.getAttribute("data-article-id")) + "";
-
- ids = ids.length != 0 && ids.indexOf(id) != -1 ? ids : [id];
-
- Headlines.selectionRemoveLabel(this.labelId, ids);
- }
- }));
-
- });
-
- menu.addChild(new dijit.PopupMenuItem({
- label: __("Assign label"),
- popup: labelAddMenu
- }));
-
- menu.addChild(new dijit.PopupMenuItem({
- label: __("Remove label"),
- popup: labelDelMenu
- }));
-
- }
- },
- initHeadlinesMenu: function() {
- if (!dijit.byId("headlinesMenu")) {
-
- const menu = new dijit.Menu({
- id: "headlinesMenu",
- targetNodeIds: ["headlines-frame"],
- selector: ".hlMenuAttach"
- });
-
- this.headlinesMenuCommon(menu);
-
- menu.startup();
- }
-
- /* vgroup feed title menu */
-
- if (!dijit.byId("headlinesFeedTitleMenu")) {
-
- const menu = new dijit.Menu({
- id: "headlinesFeedTitleMenu",
- targetNodeIds: ["headlines-frame"],
- selector: "div.cdmFeedTitle"
- });
-
- menu.addChild(new dijit.MenuItem({
- label: __("Select articles in group"),
- onClick: function (event) {
- Headlines.select("all",
- "#headlines-frame > div[id*=RROW]" +
- "[data-orig-feed-id='" + this.getParent().currentTarget.getAttribute("data-feed-id") + "']");
-
- }
- }));
-
- menu.addChild(new dijit.MenuItem({
- label: __("Mark group as read"),
- onClick: function () {
- Headlines.select("none");
- Headlines.select("all",
- "#headlines-frame > div[id*=RROW]" +
- "[data-orig-feed-id='" + this.getParent().currentTarget.getAttribute("data-feed-id") + "']");
-
- Headlines.catchupSelection();
- }
- }));
-
- menu.addChild(new dijit.MenuItem({
- label: __("Mark feed as read"),
- onClick: function () {
- Feeds.catchupFeedInGroup(this.getParent().currentTarget.getAttribute("data-feed-id"));
- }
- }));
-
- menu.addChild(new dijit.MenuItem({
- label: __("Edit feed"),
- onClick: function () {
- CommonDialogs.editFeed(this.getParent().currentTarget.getAttribute("data-feed-id"));
- }
- }));
-
- menu.startup();
- }
- }
-};