2007-08-24 07:31:57 +02:00
|
|
|
var _infscroll_disable = 0;
|
2007-08-28 07:05:45 +02:00
|
|
|
var _infscroll_request_sent = 0;
|
2015-07-14 11:50:27 +02:00
|
|
|
|
2010-11-21 11:35:16 +01:00
|
|
|
var _search_query = false;
|
2012-08-14 17:30:49 +02:00
|
|
|
var _viewfeed_last = 0;
|
2013-06-14 07:39:26 +02:00
|
|
|
var _viewfeed_timeout = false;
|
2007-08-09 09:36:04 +02:00
|
|
|
|
2008-05-21 06:09:04 +02:00
|
|
|
var counters_last_request = 0;
|
2017-01-22 17:29:14 +01:00
|
|
|
var _counters_prev = [];
|
2008-05-19 18:55:57 +02:00
|
|
|
|
2017-02-04 09:57:31 +01:00
|
|
|
function resetCounterCache() {
|
|
|
|
_counters_prev = [];
|
|
|
|
}
|
|
|
|
|
2011-08-04 13:20:23 +02:00
|
|
|
function loadMoreHeadlines() {
|
2017-03-04 12:34:44 +01:00
|
|
|
console.log("loadMoreHeadlines");
|
|
|
|
|
|
|
|
var offset = 0;
|
|
|
|
|
|
|
|
var view_mode = document.forms["main_toolbar_form"].view_mode.value;
|
|
|
|
var unread_in_buffer = $$("#headlines-frame > div[id*=RROW][class*=Unread]").length;
|
|
|
|
var num_all = $$("#headlines-frame > div[id*=RROW]").length;
|
|
|
|
var num_unread = getFeedUnread(getActiveFeedId(), activeFeedIsCat());
|
|
|
|
|
|
|
|
// TODO implement marked & published
|
|
|
|
|
|
|
|
if (view_mode == "marked") {
|
|
|
|
console.warn("loadMoreHeadlines: marked is not implemented, falling back.");
|
|
|
|
offset = num_all;
|
|
|
|
} else if (view_mode == "published") {
|
|
|
|
console.warn("loadMoreHeadlines: published is not implemented, falling back.");
|
|
|
|
offset = num_all;
|
|
|
|
} else if (view_mode == "unread") {
|
|
|
|
offset = unread_in_buffer;
|
|
|
|
} else if (_search_query) {
|
|
|
|
offset = num_all;
|
|
|
|
} else if (view_mode == "adaptive" && !(getActiveFeedId() == -1 && !activeFeedIsCat())) {
|
|
|
|
// ^ starred feed shows both unread & read articles in adaptive mode
|
|
|
|
offset = num_unread > 0 ? unread_in_buffer : num_all;
|
|
|
|
} else {
|
|
|
|
offset = num_all;
|
|
|
|
}
|
2008-05-17 07:21:57 +02:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
console.log("offset: " + offset);
|
2012-10-10 14:30:26 +02:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
viewfeed({feed: getActiveFeedId(), is_cat: activeFeedIsCat(), offset: offset, infscroll_req: true});
|
2007-08-09 09:36:04 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-01-10 23:11:26 +01:00
|
|
|
function cleanup_memory(root) {
|
2017-03-04 12:34:44 +01:00
|
|
|
var dijits = dojo.query("[widgetid]", dijit.byId(root).domNode).map(dijit.byNode);
|
2016-01-10 23:11:26 +01:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
dijits.each(function (d) {
|
|
|
|
dojo.destroy(d.domNode);
|
|
|
|
});
|
2016-01-10 23:11:26 +01:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
$$("#" + root + " *").each(function (i) {
|
|
|
|
i.parentNode ? i.parentNode.removeChild(i) : true;
|
|
|
|
});
|
2016-01-10 23:11:26 +01:00
|
|
|
}
|
|
|
|
|
2015-08-12 13:09:46 +02:00
|
|
|
function viewfeed(params) {
|
2017-03-04 12:34:44 +01:00
|
|
|
var feed = params.feed;
|
|
|
|
var is_cat = params.is_cat;
|
|
|
|
var offset = params.offset;
|
|
|
|
var background = params.background;
|
|
|
|
var infscroll_req = params.infscroll_req;
|
|
|
|
var can_wait = params.can_wait;
|
|
|
|
var viewfeed_debug = params.viewfeed_debug;
|
|
|
|
var method = params.method;
|
|
|
|
|
|
|
|
if (is_cat == undefined)
|
|
|
|
is_cat = false;
|
|
|
|
else
|
|
|
|
is_cat = !!is_cat;
|
|
|
|
|
|
|
|
if (offset == undefined) offset = 0;
|
|
|
|
if (background == undefined) background = false;
|
|
|
|
if (infscroll_req == undefined) infscroll_req = false;
|
|
|
|
|
|
|
|
last_requested_article = 0;
|
|
|
|
|
|
|
|
if (feed != getActiveFeedId() || activeFeedIsCat() != is_cat) {
|
|
|
|
if (!background && _search_query) _search_query = false;
|
|
|
|
}
|
2012-08-14 17:30:49 +02:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
if (!background) {
|
|
|
|
_viewfeed_last = get_timestamp();
|
2016-01-10 23:11:26 +01:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
if (getActiveFeedId() != feed || !infscroll_req) {
|
|
|
|
setActiveArticleId(0);
|
|
|
|
_infscroll_disable = 0;
|
2007-01-19 10:38:16 +01:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
cleanup_memory("headlines-frame");
|
|
|
|
_headlines_scroll_offset = 0;
|
|
|
|
}
|
2007-08-28 07:05:45 +02:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
if (infscroll_req) {
|
|
|
|
var timestamp = get_timestamp();
|
2011-08-31 13:25:42 +02:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
if (_infscroll_request_sent && _infscroll_request_sent + 30 > timestamp) {
|
|
|
|
//console.log("infscroll request in progress, aborting");
|
|
|
|
return;
|
2007-08-28 07:05:45 +02:00
|
|
|
}
|
2017-03-04 12:34:44 +01:00
|
|
|
|
|
|
|
_infscroll_request_sent = timestamp;
|
2007-08-28 07:05:45 +02:00
|
|
|
}
|
2017-03-04 12:34:44 +01:00
|
|
|
}
|
2007-08-28 07:05:45 +02:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
Form.enable("main_toolbar_form");
|
2007-06-19 15:03:47 +02:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
var toolbar_query = Form.serialize("main_toolbar_form");
|
2006-05-21 06:28:51 +02:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
var query = "?op=feeds&method=view&feed=" + param_escape(feed) + "&" +
|
|
|
|
toolbar_query;
|
2012-10-25 11:15:14 +02:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
if (method) query += "&m=" + param_escape(method);
|
2015-09-03 15:41:04 +02:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
if (offset > 0) {
|
|
|
|
if (current_first_id) {
|
|
|
|
query = query + "&fid=" + param_escape(current_first_id);
|
2015-07-12 00:29:36 +02:00
|
|
|
}
|
2017-03-04 12:34:44 +01:00
|
|
|
}
|
2015-07-12 00:29:36 +02:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
if (!background) {
|
|
|
|
if (_search_query) {
|
|
|
|
force_nocache = true;
|
|
|
|
query = query + "&" + _search_query;
|
|
|
|
//_search_query = false;
|
|
|
|
}
|
2006-05-21 14:09:55 +02:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
if (offset != 0) {
|
|
|
|
query = query + "&skip=" + offset;
|
2008-05-17 11:23:04 +02:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
// to prevent duplicate feed titles when showing grouped vfeeds
|
|
|
|
if (vgroup_last_feed) {
|
|
|
|
query = query + "&vgrlf=" + param_escape(vgroup_last_feed);
|
2008-05-17 11:23:04 +02:00
|
|
|
}
|
2017-03-04 12:34:44 +01:00
|
|
|
} else {
|
|
|
|
if (!is_cat && feed == getActiveFeedId() && !params.method) {
|
|
|
|
query = query + "&m=ForceUpdate";
|
|
|
|
}
|
|
|
|
}
|
2011-08-31 13:25:42 +02:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
Form.enable("main_toolbar_form");
|
2011-08-31 13:25:42 +02:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
if (!setFeedExpandoIcon(feed, is_cat,
|
|
|
|
(is_cat) ? 'images/indicator_tiny.gif' : 'images/indicator_white.gif'))
|
|
|
|
notify_progress("Loading, please wait...", true);
|
|
|
|
}
|
2007-01-19 10:38:16 +01:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
query += "&cat=" + is_cat;
|
2006-09-28 14:00:03 +02:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
console.log(query);
|
2008-05-17 06:42:20 +02:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
if (can_wait && _viewfeed_timeout) {
|
|
|
|
setFeedExpandoIcon(getActiveFeedId(), activeFeedIsCat(), 'images/blank_icon.gif');
|
|
|
|
clearTimeout(_viewfeed_timeout);
|
|
|
|
}
|
2013-06-14 07:39:26 +02:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
setActiveFeedId(feed, is_cat);
|
2013-04-04 18:14:39 +02:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
if (viewfeed_debug) {
|
|
|
|
window.open("backend.php" + query + "&debug=1&csrf_token=" + getInitParam("csrf_token"));
|
|
|
|
}
|
2015-08-12 13:09:46 +02:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
timeout_ms = can_wait ? 250 : 0;
|
|
|
|
_viewfeed_timeout = setTimeout(function() {
|
2013-06-14 07:39:26 +02:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
|
|
|
onComplete: function(transport) {
|
|
|
|
try {
|
2013-06-14 07:39:26 +02:00
|
|
|
setFeedExpandoIcon(feed, is_cat, 'images/blank_icon.gif');
|
|
|
|
headlines_callback2(transport, offset, background, infscroll_req);
|
|
|
|
PluginHost.run(PluginHost.HOOK_FEED_LOADED, [feed, is_cat]);
|
2017-03-04 12:34:44 +01:00
|
|
|
} catch (e) {
|
|
|
|
exception_error(e);
|
|
|
|
}
|
|
|
|
} });
|
|
|
|
}, timeout_ms); // Wait 250ms
|
2006-09-28 14:00:03 +02:00
|
|
|
|
2005-09-07 05:53:29 +02:00
|
|
|
}
|
|
|
|
|
2006-09-28 14:00:03 +02:00
|
|
|
function feedlist_init() {
|
2017-03-04 12:34:44 +01:00
|
|
|
console.log("in feedlist init");
|
2011-03-18 10:55:45 +01:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
loading_set_progress(50);
|
2013-05-02 07:48:38 +02:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
document.onkeydown = hotkey_handler;
|
|
|
|
setTimeout(hotkey_prefix_timeout, 5*1000);
|
2009-10-06 13:04:46 +02:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
if (!getActiveFeedId()) {
|
|
|
|
viewfeed({feed: -3});
|
|
|
|
} else {
|
|
|
|
viewfeed({feed: getActiveFeedId(), is_cat: activeFeedIsCat()});
|
|
|
|
}
|
2006-11-22 11:11:41 +01:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
hideOrShowFeeds(getInitParam("hide_read_feeds") == 1);
|
2008-08-29 09:34:35 +02:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
request_counters(true);
|
|
|
|
timeout();
|
2010-11-19 23:31:20 +01:00
|
|
|
|
2005-11-15 10:13:49 +01:00
|
|
|
}
|
2007-11-21 08:08:25 +01:00
|
|
|
|
2008-05-20 17:59:42 +02:00
|
|
|
|
2013-02-01 10:09:43 +01:00
|
|
|
function request_counters(force) {
|
2017-03-04 12:34:44 +01:00
|
|
|
var date = new Date();
|
|
|
|
var timestamp = Math.round(date.getTime() / 1000);
|
2010-11-10 12:48:35 +01:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
if (force || timestamp - counters_last_request > 5) {
|
|
|
|
console.log("scheduling request of counters...");
|
2013-02-01 10:09:43 +01:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
counters_last_request = timestamp;
|
2013-02-01 10:09:43 +01:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
var query = "?op=rpc&method=getAllCounters&seq=" + next_seq();
|
2013-02-01 10:09:43 +01:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
if (!force)
|
|
|
|
query = query + "&last_article_id=" + getInitParam("last_article_id");
|
2013-02-01 10:09:43 +01:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
console.log(query);
|
2013-02-01 10:09:43 +01:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
|
|
|
onComplete: function(transport) {
|
|
|
|
handle_rpc_json(transport);
|
|
|
|
} });
|
2008-05-20 17:59:42 +02:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
} else {
|
|
|
|
console.log("request_counters: rate limit reached: " + (timestamp - counters_last_request));
|
2008-05-20 14:52:38 +02:00
|
|
|
}
|
|
|
|
}
|
2009-02-03 20:33:52 +01:00
|
|
|
|
2017-01-22 17:38:07 +01:00
|
|
|
// NOTE: this implementation is incomplete
|
|
|
|
// for general objects but good enough for counters
|
|
|
|
// http://adripofjavascript.com/blog/drips/object-equality-in-javascript.html
|
|
|
|
function counter_is_equal(a, b) {
|
|
|
|
// Create arrays of property names
|
|
|
|
var aProps = Object.getOwnPropertyNames(a);
|
|
|
|
var bProps = Object.getOwnPropertyNames(b);
|
|
|
|
|
|
|
|
// If number of properties is different,
|
|
|
|
// objects are not equivalent
|
|
|
|
if (aProps.length != bProps.length) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (var i = 0; i < aProps.length; i++) {
|
|
|
|
var 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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-01-22 17:29:14 +01:00
|
|
|
function parse_counters(elems) {
|
2017-03-04 12:34:44 +01:00
|
|
|
for (var l = 0; l < elems.length; l++) {
|
2010-11-12 11:52:53 +01:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
if (_counters_prev[l] && counter_is_equal(elems[l], _counters_prev[l])) {
|
|
|
|
continue;
|
|
|
|
}
|
2017-01-22 17:29:14 +01:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
var id = elems[l].id;
|
|
|
|
var kind = elems[l].kind;
|
|
|
|
var ctr = parseInt(elems[l].counter);
|
|
|
|
var error = elems[l].error;
|
|
|
|
var has_img = elems[l].has_img;
|
|
|
|
var updated = elems[l].updated;
|
|
|
|
var auxctr = parseInt(elems[l].auxcounter);
|
2010-11-12 11:52:53 +01:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
if (id == "global-unread") {
|
|
|
|
global_unread = ctr;
|
|
|
|
updateTitle();
|
|
|
|
continue;
|
|
|
|
}
|
2010-11-15 14:23:42 +01:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
if (id == "subscribed-feeds") {
|
|
|
|
/* feeds_found = ctr; */
|
|
|
|
continue;
|
|
|
|
}
|
2011-08-31 12:03:52 +02:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
/*if (getFeedUnread(id, (kind == "cat")) != ctr ||
|
|
|
|
(kind == "cat")) {
|
|
|
|
}*/
|
2010-11-12 11:52:53 +01:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
setFeedUnread(id, (kind == "cat"), ctr);
|
|
|
|
setFeedValue(id, (kind == "cat"), 'auxcounter', auxctr);
|
2010-11-16 07:49:00 +01:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
if (kind != "cat") {
|
|
|
|
setFeedValue(id, false, 'error', error);
|
|
|
|
setFeedValue(id, false, 'updated', updated);
|
|
|
|
|
|
|
|
if (id > 0) {
|
|
|
|
if (has_img) {
|
|
|
|
setFeedIcon(id, false,
|
|
|
|
getInitParam("icons_url") + "/" + id + ".ico");
|
|
|
|
} else {
|
|
|
|
setFeedIcon(id, false, 'images/blank_icon.gif');
|
2010-11-16 07:49:00 +01:00
|
|
|
}
|
2010-11-12 11:52:53 +01:00
|
|
|
}
|
2010-11-15 19:49:00 +01:00
|
|
|
}
|
2017-03-04 12:34:44 +01:00
|
|
|
}
|
2011-03-18 10:55:45 +01:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
hideOrShowFeeds(getInitParam("hide_read_feeds") == 1);
|
2017-01-22 17:29:14 +01:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
_counters_prev = elems;
|
2010-11-12 11:52:53 +01:00
|
|
|
}
|
|
|
|
|
2010-11-17 10:51:30 +01:00
|
|
|
function getFeedUnread(feed, is_cat) {
|
2010-11-12 11:52:53 +01:00
|
|
|
try {
|
2010-11-18 14:00:00 +01:00
|
|
|
var tree = dijit.byId("feedTree");
|
|
|
|
|
2011-03-18 10:55:45 +01:00
|
|
|
if (tree && tree.model)
|
2010-11-18 14:00:00 +01:00
|
|
|
return tree.model.getFeedUnread(feed, is_cat);
|
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
} catch (e) {
|
2010-11-15 19:49:00 +01:00
|
|
|
//
|
2010-11-12 11:52:53 +01:00
|
|
|
}
|
2010-11-15 19:49:00 +01:00
|
|
|
|
|
|
|
return -1;
|
2010-11-12 11:52:53 +01:00
|
|
|
}
|
|
|
|
|
2012-04-04 13:34:06 +02:00
|
|
|
function getFeedCategory(feed) {
|
|
|
|
try {
|
|
|
|
var tree = dijit.byId("feedTree");
|
|
|
|
|
|
|
|
if (tree && tree.model)
|
|
|
|
return tree.getFeedCategory(feed);
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
//
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
function hideOrShowFeeds(hide) {
|
2010-11-15 19:49:00 +01:00
|
|
|
var tree = dijit.byId("feedTree");
|
|
|
|
|
2010-11-17 20:51:44 +01:00
|
|
|
if (tree)
|
|
|
|
return tree.hideRead(hide, getInitParam("hide_read_shows_special"));
|
2010-11-12 11:52:53 +01:00
|
|
|
}
|
|
|
|
|
2011-03-18 10:55:45 +01:00
|
|
|
function getFeedName(feed, is_cat) {
|
2015-12-30 13:11:39 +01:00
|
|
|
|
|
|
|
if (isNaN(feed)) return feed; // it's a tag
|
|
|
|
|
2010-11-18 14:00:00 +01:00
|
|
|
var tree = dijit.byId("feedTree");
|
|
|
|
|
2011-03-18 10:55:45 +01:00
|
|
|
if (tree && tree.model)
|
2010-11-18 14:00:00 +01:00
|
|
|
return tree.model.getFeedValue(feed, is_cat, 'name');
|
2010-11-15 19:49:00 +01:00
|
|
|
}
|
2010-11-12 11:52:53 +01:00
|
|
|
|
2011-03-18 10:55:45 +01:00
|
|
|
function getFeedValue(feed, is_cat, key) {
|
2010-11-15 19:49:00 +01:00
|
|
|
try {
|
2010-11-18 14:00:00 +01:00
|
|
|
var tree = dijit.byId("feedTree");
|
2010-11-15 19:49:00 +01:00
|
|
|
|
2011-03-18 10:55:45 +01:00
|
|
|
if (tree && tree.model)
|
2010-11-18 14:00:00 +01:00
|
|
|
return tree.model.getFeedValue(feed, is_cat, key);
|
2011-03-18 10:55:45 +01:00
|
|
|
|
2010-11-15 19:49:00 +01:00
|
|
|
} catch (e) {
|
|
|
|
//
|
2010-11-12 11:52:53 +01:00
|
|
|
}
|
2010-11-15 19:49:00 +01:00
|
|
|
return '';
|
2010-11-12 11:52:53 +01:00
|
|
|
}
|
|
|
|
|
2010-11-15 14:23:42 +01:00
|
|
|
function setFeedUnread(feed, is_cat, unread) {
|
2017-03-04 12:34:44 +01:00
|
|
|
var tree = dijit.byId("feedTree");
|
2010-11-18 14:00:00 +01:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
if (tree && tree.model)
|
|
|
|
return tree.model.setFeedUnread(feed, is_cat, unread);
|
2010-11-15 19:49:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function setFeedValue(feed, is_cat, key, value) {
|
|
|
|
try {
|
2010-11-18 14:00:00 +01:00
|
|
|
var tree = dijit.byId("feedTree");
|
2010-11-15 14:23:42 +01:00
|
|
|
|
2011-03-18 10:55:45 +01:00
|
|
|
if (tree && tree.model)
|
2010-11-18 14:00:00 +01:00
|
|
|
return tree.model.setFeedValue(feed, is_cat, key, value);
|
2009-02-04 07:51:31 +01:00
|
|
|
|
2010-11-15 14:23:42 +01:00
|
|
|
} catch (e) {
|
2010-11-18 14:00:00 +01:00
|
|
|
//
|
2010-11-15 19:49:00 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function selectFeed(feed, is_cat) {
|
2017-03-04 12:34:44 +01:00
|
|
|
var tree = dijit.byId("feedTree");
|
2010-11-15 19:49:00 +01:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
if (tree) return tree.selectFeed(feed, is_cat);
|
2010-11-15 14:23:42 +01:00
|
|
|
}
|
2010-11-16 07:49:00 +01:00
|
|
|
|
|
|
|
function setFeedIcon(feed, is_cat, src) {
|
2017-03-04 12:34:44 +01:00
|
|
|
var tree = dijit.byId("feedTree");
|
2010-11-16 07:49:00 +01:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
if (tree) return tree.setFeedIcon(feed, is_cat, src);
|
2010-11-16 07:49:00 +01:00
|
|
|
}
|
2010-11-16 10:23:06 +01:00
|
|
|
|
|
|
|
function setFeedExpandoIcon(feed, is_cat, src) {
|
2017-03-04 12:34:44 +01:00
|
|
|
var tree = dijit.byId("feedTree");
|
2010-11-16 10:23:06 +01:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
if (tree) return tree.setFeedExpandoIcon(feed, is_cat, src);
|
2010-11-16 10:23:06 +01:00
|
|
|
|
2010-11-16 14:57:59 +01:00
|
|
|
return false;
|
2010-11-16 10:23:06 +01:00
|
|
|
}
|
2011-08-31 13:25:42 +02:00
|
|
|
|
|
|
|
function getNextUnreadFeed(feed, is_cat) {
|
2017-03-04 12:34:44 +01:00
|
|
|
var tree = dijit.byId("feedTree");
|
|
|
|
var nuf = tree.model.getNextUnreadFeed(feed, is_cat);
|
2011-08-31 13:25:42 +02:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
if (nuf)
|
|
|
|
return tree.model.store.getValue(nuf, 'bare_id');
|
2011-08-31 13:25:42 +02:00
|
|
|
}
|
|
|
|
|
2013-04-03 16:20:14 +02:00
|
|
|
function catchupCurrentFeed(mode) {
|
|
|
|
catchupFeed(getActiveFeedId(), activeFeedIsCat(), mode);
|
2012-03-29 13:03:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function catchupFeedInGroup(id) {
|
2017-03-04 12:34:44 +01:00
|
|
|
var title = getFeedName(id);
|
2012-03-29 13:03:48 +02:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
var str = __("Mark all articles in %s as read?").replace("%s", title);
|
2012-03-29 13:03:48 +02:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
if (getInitParam("confirm_feed_catchup") != 1 || confirm(str)) {
|
2016-03-21 19:40:40 +01:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
var rows = $$("#headlines-frame > div[id*=RROW][data-orig-feed-id='"+id+"']");
|
2016-03-21 19:40:40 +01:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
if (rows.length > 0) {
|
2016-03-21 19:40:40 +01:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
rows.each(function (row) {
|
|
|
|
row.removeClassName("Unread");
|
2016-03-22 21:22:28 +01:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
if (row.getAttribute("data-article-id") != getActiveArticleId()) {
|
|
|
|
new Effect.Fade(row, {duration: 0.5});
|
|
|
|
}
|
2016-03-21 19:40:40 +01:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
});
|
2016-03-22 21:22:28 +01:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
var feedTitles = $$("#headlines-frame > div[class='cdmFeedTitle']");
|
2016-03-22 21:22:28 +01:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
for (var i = 0; i < feedTitles.length; i++) {
|
|
|
|
if (feedTitles[i].getAttribute("data-feed-id") == id) {
|
2016-03-22 21:22:28 +01:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
if (i < feedTitles.length - 1) {
|
|
|
|
new Effect.Fade(feedTitles[i], {duration: 0.5});
|
2016-03-22 21:22:28 +01:00
|
|
|
}
|
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
break;
|
|
|
|
}
|
2016-03-21 19:43:54 +01:00
|
|
|
}
|
2016-03-21 19:40:40 +01:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
updateFloatingTitle(true);
|
|
|
|
}
|
2016-03-21 19:40:40 +01:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
var catchup_query = "?op=rpc&method=catchupFeed&feed_id=" +
|
|
|
|
id + "&is_cat=false";
|
2016-03-21 19:40:40 +01:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
console.log(catchup_query);
|
2016-03-21 19:40:40 +01:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
notify_progress("Loading, please wait...", true);
|
2016-03-21 19:40:40 +01:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: catchup_query,
|
|
|
|
onComplete: function (transport) {
|
|
|
|
handle_rpc_json(transport);
|
|
|
|
}
|
|
|
|
} );
|
2012-03-29 13:03:48 +02:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
//return viewCurrentFeed('MarkAllReadGR:' + id);
|
2012-03-29 13:03:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-31 10:37:42 +02:00
|
|
|
function catchupFeed(feed, is_cat, mode) {
|
2017-03-04 12:34:44 +01:00
|
|
|
if (is_cat == undefined) is_cat = false;
|
|
|
|
|
|
|
|
var str = false;
|
|
|
|
|
|
|
|
switch (mode) {
|
|
|
|
case "1day":
|
|
|
|
str = __("Mark all articles in %s older than 1 day as read?");
|
|
|
|
break;
|
|
|
|
case "1week":
|
|
|
|
str = __("Mark all articles in %s older than 1 week as read?");
|
|
|
|
break;
|
|
|
|
case "2week":
|
|
|
|
str = __("Mark all articles in %s older than 2 weeks as read?");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
str = __("Mark all articles in %s as read?");
|
|
|
|
}
|
2013-03-31 10:37:42 +02:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
var fn = getFeedName(feed, is_cat);
|
2011-11-11 12:35:29 +01:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
str = str.replace("%s", fn);
|
2011-11-11 12:35:29 +01:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
if (getInitParam("confirm_feed_catchup") == 1 && !confirm(str)) {
|
|
|
|
return;
|
|
|
|
}
|
2011-11-11 12:28:11 +01:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
var catchup_query = "?op=rpc&method=catchupFeed&feed_id=" +
|
|
|
|
feed + "&is_cat=" + is_cat + "&mode=" + mode;
|
2012-06-03 18:02:51 +02:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
console.log(catchup_query);
|
2011-11-11 12:28:11 +01:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
notify_progress("Loading, please wait...", true);
|
2011-11-11 12:28:11 +01:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: catchup_query,
|
|
|
|
onComplete: function(transport) {
|
|
|
|
handle_rpc_json(transport);
|
2012-03-29 13:03:48 +02:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
var show_next_feed = getInitParam("on_catchup_show_next_feed") == "1";
|
2012-03-29 13:03:48 +02:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
if (show_next_feed) {
|
|
|
|
var nuf = getNextUnreadFeed(feed, is_cat);
|
2012-03-29 13:03:48 +02:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
if (nuf) {
|
|
|
|
viewfeed({feed: nuf, is_cat: is_cat});
|
2012-03-29 13:03:48 +02:00
|
|
|
}
|
2017-03-04 12:34:44 +01:00
|
|
|
} else {
|
|
|
|
if (feed == getActiveFeedId() && is_cat == activeFeedIsCat()) {
|
|
|
|
viewCurrentFeed();
|
|
|
|
}
|
|
|
|
}
|
2012-03-29 13:03:48 +02:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
notify("");
|
|
|
|
} });
|
2011-11-11 12:28:11 +01:00
|
|
|
|
|
|
|
}
|
2012-04-05 09:58:50 +02:00
|
|
|
|
|
|
|
function decrementFeedCounter(feed, is_cat) {
|
2017-03-04 12:34:44 +01:00
|
|
|
var ctr = getFeedUnread(feed, is_cat);
|
2012-04-05 09:58:50 +02:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
if (ctr > 0) {
|
|
|
|
setFeedUnread(feed, is_cat, ctr - 1);
|
|
|
|
global_unread = global_unread - 1;
|
|
|
|
updateTitle();
|
2012-04-05 09:58:50 +02:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
if (!is_cat) {
|
|
|
|
var cat = parseInt(getFeedCategory(feed));
|
2012-04-05 09:58:50 +02:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
if (!isNaN(cat)) {
|
|
|
|
ctr = getFeedUnread(cat, true);
|
2012-04-05 09:58:50 +02:00
|
|
|
|
2017-03-04 12:34:44 +01:00
|
|
|
if (ctr > 0) {
|
|
|
|
setFeedUnread(cat, true, ctr - 1);
|
2012-04-05 09:58:50 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-03-04 12:34:44 +01:00
|
|
|
|
2012-04-05 09:58:50 +02:00
|
|
|
}
|
2013-03-26 13:31:36 +01:00
|
|
|
|
|
|
|
|