2018-11-29 18:03:55 +00:00
|
|
|
/* global dijit, __ */
|
|
|
|
|
2018-11-29 17:09:25 +00:00
|
|
|
let _active_article_id = 0;
|
2013-02-28 09:18:58 +00:00
|
|
|
|
2018-11-29 17:09:25 +00:00
|
|
|
let vgroup_last_feed = false;
|
|
|
|
let post_under_pointer = false;
|
2008-05-17 04:42:20 +00:00
|
|
|
|
2018-11-29 19:21:09 +00:00
|
|
|
let last_requested_article = 0;
|
2008-05-20 16:06:12 +00:00
|
|
|
|
2018-11-29 17:09:25 +00:00
|
|
|
let catchup_id_batch = [];
|
2018-11-30 21:11:52 +00:00
|
|
|
//let catchup_timeout_id = false;
|
2011-08-31 11:25:42 +00:00
|
|
|
|
2018-11-30 21:11:52 +00:00
|
|
|
//let cids_requested = [];
|
2018-11-29 17:09:25 +00:00
|
|
|
let loaded_article_ids = [];
|
|
|
|
let _last_headlines_update = 0;
|
|
|
|
let _headlines_scroll_offset = 0;
|
|
|
|
let current_first_id = 0;
|
|
|
|
let last_search_query;
|
2011-08-04 06:16:27 +00:00
|
|
|
|
2018-11-29 17:09:25 +00:00
|
|
|
let _catchup_request_sent = false;
|
2015-08-11 07:06:30 +00:00
|
|
|
|
2018-11-29 17:09:25 +00:00
|
|
|
let has_storage = 'sessionStorage' in window && window['sessionStorage'] !== null;
|
2011-08-31 10:03:52 +00:00
|
|
|
|
2011-11-07 11:46:28 +00:00
|
|
|
function headlines_callback2(transport, offset, background, infscroll_req) {
|
2018-11-29 19:21:09 +00:00
|
|
|
const reply = handle_rpc_json(transport);
|
2017-03-04 11:34:44 +00:00
|
|
|
|
|
|
|
console.log("headlines_callback2 [offset=" + offset + "] B:" + background + " I:" + infscroll_req);
|
|
|
|
|
2018-11-29 19:21:09 +00:00
|
|
|
if (background)
|
|
|
|
return;
|
2017-03-04 11:34:44 +00:00
|
|
|
|
2018-11-30 21:11:52 +00:00
|
|
|
let is_cat = false;
|
|
|
|
let feed_id = false;
|
2009-02-12 21:12:18 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (reply) {
|
2007-11-21 08:23:34 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
is_cat = reply['headlines']['is_cat'];
|
|
|
|
feed_id = reply['headlines']['id'];
|
2017-03-31 08:21:35 +00:00
|
|
|
last_search_query = reply['headlines']['search_query'];
|
2007-08-09 07:36:04 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (feed_id != -7 && (feed_id != getActiveFeedId() || is_cat != activeFeedIsCat()))
|
|
|
|
return;
|
2007-11-21 08:23:34 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
try {
|
|
|
|
if (infscroll_req == false) {
|
|
|
|
$("headlines-frame").scrollTop = 0;
|
2011-11-04 07:33:40 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
$("floatingTitle").style.visibility = "hidden";
|
|
|
|
$("floatingTitle").setAttribute("data-article-id", 0);
|
|
|
|
$("floatingTitle").innerHTML = "";
|
2011-08-31 11:25:42 +00:00
|
|
|
}
|
2018-11-29 17:07:23 +00:00
|
|
|
} catch (e) { }
|
2008-05-17 04:42:20 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
$("headlines-frame").removeClassName("cdm");
|
|
|
|
$("headlines-frame").removeClassName("normal");
|
2011-03-18 09:55:45 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
$("headlines-frame").addClassName(isCdmMode() ? "cdm" : "normal");
|
2012-10-25 09:24:50 +00:00
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
const headlines_count = reply['headlines-info']['count'];
|
2013-06-07 06:04:43 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
vgroup_last_feed = reply['headlines-info']['vgroup_last_feed'];
|
2007-11-21 08:23:34 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (parseInt(headlines_count) < 30) {
|
|
|
|
_infscroll_disable = 1;
|
|
|
|
} else {
|
|
|
|
_infscroll_disable = 0;
|
|
|
|
}
|
2013-05-14 11:28:13 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
current_first_id = reply['headlines']['first_id'];
|
2018-11-29 17:07:23 +00:00
|
|
|
const counters = reply['counters'];
|
|
|
|
const articles = reply['articles'];
|
2013-05-14 11:28:13 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (infscroll_req == false) {
|
|
|
|
loaded_article_ids = [];
|
2011-03-18 09:46:22 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
dojo.html.set($("headlines-toolbar"),
|
|
|
|
reply['headlines']['toolbar'],
|
|
|
|
{parseContent: true});
|
2008-05-17 04:42:20 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
$("headlines-frame").innerHTML = '';
|
2012-10-31 18:55:35 +00:00
|
|
|
|
2018-11-29 19:21:09 +00:00
|
|
|
let tmp = document.createElement("div");
|
2017-03-04 11:34:44 +00:00
|
|
|
tmp.innerHTML = reply['headlines']['content'];
|
|
|
|
dojo.parser.parse(tmp);
|
2007-11-21 09:15:14 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
while (tmp.hasChildNodes()) {
|
|
|
|
var row = tmp.removeChild(tmp.firstChild);
|
|
|
|
|
2018-11-30 12:48:17 +00:00
|
|
|
if (loaded_article_ids.indexOf(row.id) == -1 || row.hasClassName("feed-title")) {
|
2017-03-04 11:34:44 +00:00
|
|
|
dijit.byId("headlines-frame").domNode.appendChild(row);
|
2015-07-12 22:19:52 +00:00
|
|
|
|
2015-07-13 19:01:29 +00:00
|
|
|
loaded_article_ids.push(row.id);
|
2017-03-04 11:34:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-29 19:21:09 +00:00
|
|
|
let hsp = $("headlines-spacer");
|
2017-03-04 11:34:44 +00:00
|
|
|
if (!hsp) hsp = new Element("DIV", {"id": "headlines-spacer"});
|
|
|
|
dijit.byId('headlines-frame').domNode.appendChild(hsp);
|
|
|
|
|
|
|
|
initHeadlinesMenu();
|
|
|
|
|
|
|
|
if (_infscroll_disable)
|
|
|
|
hsp.innerHTML = "<a href='#' onclick='openNextUnreadFeed()'>" +
|
|
|
|
__("Click to open next unread feed.") + "</a>";
|
|
|
|
|
|
|
|
if (_search_query) {
|
|
|
|
$("feed_title").innerHTML += "<span id='cancel_search'>" +
|
|
|
|
" (<a href='#' onclick='cancelSearch()'>" + __("Cancel search") + "</a>)" +
|
|
|
|
"</span>";
|
|
|
|
}
|
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
} else if (headlines_count > 0 && feed_id == getActiveFeedId() && is_cat == activeFeedIsCat()) {
|
2018-11-30 21:11:52 +00:00
|
|
|
console.log("adding some more headlines: " + headlines_count);
|
2017-03-04 11:34:44 +00:00
|
|
|
|
2018-11-30 21:11:52 +00:00
|
|
|
const c = dijit.byId("headlines-frame");
|
|
|
|
//const ids = getSelectedArticleIds2();
|
2017-03-04 11:34:44 +00:00
|
|
|
|
2018-11-30 21:11:52 +00:00
|
|
|
let hsp = $("headlines-spacer");
|
2017-03-04 11:34:44 +00:00
|
|
|
|
2018-11-30 21:11:52 +00:00
|
|
|
if (hsp)
|
|
|
|
c.domNode.removeChild(hsp);
|
2015-10-07 15:14:21 +00:00
|
|
|
|
2018-11-30 21:11:52 +00:00
|
|
|
let tmp = document.createElement("div");
|
|
|
|
tmp.innerHTML = reply['headlines']['content'];
|
|
|
|
dojo.parser.parse(tmp);
|
2015-10-07 15:14:21 +00:00
|
|
|
|
2018-11-30 21:11:52 +00:00
|
|
|
while (tmp.hasChildNodes()) {
|
|
|
|
let row = tmp.removeChild(tmp.firstChild);
|
2015-10-07 15:14:21 +00:00
|
|
|
|
2018-11-30 21:11:52 +00:00
|
|
|
if (loaded_article_ids.indexOf(row.id) == -1 || row.hasClassName("feed-title")) {
|
|
|
|
dijit.byId("headlines-frame").domNode.appendChild(row);
|
2015-10-07 15:14:21 +00:00
|
|
|
|
2018-11-30 21:11:52 +00:00
|
|
|
loaded_article_ids.push(row.id);
|
2015-10-07 15:14:21 +00:00
|
|
|
}
|
2018-11-30 21:11:52 +00:00
|
|
|
}
|
2011-08-03 14:36:08 +00:00
|
|
|
|
2018-11-30 21:11:52 +00:00
|
|
|
if (!hsp) hsp = new Element("DIV", {"id": "headlines-spacer"});
|
|
|
|
c.domNode.appendChild(hsp);
|
2011-08-03 14:36:08 +00:00
|
|
|
|
2018-11-30 21:11:52 +00:00
|
|
|
if (headlines_count < 30) _infscroll_disable = true;
|
2007-11-21 09:59:22 +00:00
|
|
|
|
2018-11-30 21:11:52 +00:00
|
|
|
/* console.log("restore selected ids: " + ids);
|
2014-07-25 09:54:10 +00:00
|
|
|
|
2018-11-30 21:11:52 +00:00
|
|
|
for (let i = 0; i < ids.length; i++) {
|
|
|
|
markHeadline(ids[i]);
|
|
|
|
} */
|
2012-10-30 06:24:30 +00:00
|
|
|
|
2018-11-30 21:11:52 +00:00
|
|
|
initHeadlinesMenu();
|
2012-10-10 12:30:26 +00:00
|
|
|
|
2018-11-30 21:11:52 +00:00
|
|
|
if (_infscroll_disable) {
|
|
|
|
hsp.innerHTML = "<a href='#' onclick='openNextUnreadFeed()'>" +
|
|
|
|
__("Click to open next unread feed.") + "</a>";
|
|
|
|
}
|
2007-09-05 16:10:35 +00:00
|
|
|
|
2018-11-30 21:11:52 +00:00
|
|
|
} else {
|
|
|
|
console.log("no new headlines received");
|
2007-09-05 16:10:35 +00:00
|
|
|
|
2018-11-30 21:11:52 +00:00
|
|
|
const first_id_changed = reply['headlines']['first_id_changed'];
|
|
|
|
console.log("first id changed:" + first_id_changed);
|
2010-11-19 18:05:28 +00:00
|
|
|
|
2018-11-30 21:11:52 +00:00
|
|
|
let hsp = $("headlines-spacer");
|
2015-07-12 10:37:24 +00:00
|
|
|
|
2018-11-30 21:11:52 +00:00
|
|
|
if (hsp) {
|
|
|
|
if (first_id_changed) {
|
|
|
|
hsp.innerHTML = "<a href='#' onclick='viewCurrentFeed()'>" +
|
|
|
|
__("New articles found, reload feed to continue.") + "</a>";
|
|
|
|
} else {
|
|
|
|
hsp.innerHTML = "<a href='#' onclick='openNextUnreadFeed()'>" +
|
|
|
|
__("Click to open next unread feed.") + "</a>";
|
2007-08-24 05:45:42 +00:00
|
|
|
}
|
2011-03-18 09:46:22 +00:00
|
|
|
|
2007-05-15 07:37:10 +00:00
|
|
|
}
|
2010-11-11 06:56:03 +00:00
|
|
|
|
2007-05-15 05:59:22 +00:00
|
|
|
}
|
2011-03-18 09:46:22 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
} 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>");
|
|
|
|
}
|
2013-03-21 06:34:36 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
_infscroll_request_sent = 0;
|
|
|
|
_last_headlines_update = new Date().getTime();
|
2013-04-06 06:33:30 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
unpackVisibleHeadlines();
|
2013-04-06 06:33:30 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
// if we have some more space in the buffer, why not try to fill it
|
2013-04-06 06:33:30 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (!_infscroll_disable && $("headlines-spacer") &&
|
|
|
|
$("headlines-spacer").offsetTop < $("headlines-frame").offsetHeight) {
|
2008-05-19 07:37:44 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
window.setTimeout(function() {
|
|
|
|
loadMoreHeadlines();
|
|
|
|
}, 250);
|
2006-09-28 12:00:03 +00:00
|
|
|
}
|
2017-03-04 11:34:44 +00:00
|
|
|
|
|
|
|
notify("");
|
2006-09-28 12:00:03 +00:00
|
|
|
}
|
|
|
|
|
2007-05-15 05:03:35 +00:00
|
|
|
function render_article(article) {
|
2017-03-04 11:34:44 +00:00
|
|
|
cleanup_memory("content-insert");
|
2016-01-10 22:11:26 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
dijit.byId("headlines-wrap-inner").addChild(
|
|
|
|
dijit.byId("content-insert"));
|
2010-11-16 11:43:43 +00:00
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
const c = dijit.byId("content-insert");
|
2008-07-25 05:11:22 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
try {
|
|
|
|
c.domNode.scrollTop = 0;
|
2018-11-29 17:07:23 +00:00
|
|
|
} catch (e) { }
|
2010-11-16 16:15:04 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
c.attr('content', article);
|
|
|
|
PluginHost.run(PluginHost.HOOK_ARTICLE_RENDERED, c.domNode);
|
2011-01-31 10:10:54 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
correctHeadlinesOffset(getActiveArticleId());
|
2007-05-15 05:03:35 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
try {
|
|
|
|
c.focus();
|
2018-11-29 17:07:23 +00:00
|
|
|
} catch (e) { }
|
2007-05-15 05:03:35 +00:00
|
|
|
}
|
|
|
|
|
2018-11-30 21:11:52 +00:00
|
|
|
/*
|
2013-04-06 01:47:40 +00:00
|
|
|
function showArticleInHeadlines(id, noexpand) {
|
2018-11-29 17:07:23 +00:00
|
|
|
const row = $("RROW-" + id);
|
2017-03-04 11:34:44 +00:00
|
|
|
if (!row) return;
|
2007-05-15 05:03:35 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (!noexpand)
|
|
|
|
row.removeClassName("Unread");
|
2007-11-22 07:45:46 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
row.addClassName("active");
|
2007-11-22 07:45:46 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
selectArticles('none');
|
2007-11-22 07:36:26 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
markHeadline(id);
|
2007-08-24 07:53:35 +00:00
|
|
|
}
|
2007-05-15 05:03:35 +00:00
|
|
|
|
2009-12-29 19:38:22 +00:00
|
|
|
function article_callback2(transport, id) {
|
2017-03-04 11:34:44 +00:00
|
|
|
console.log("article_callback2 " + id);
|
2007-05-15 05:03:35 +00:00
|
|
|
|
2018-11-29 19:56:34 +00:00
|
|
|
const reply = handle_rpc_json(transport);
|
2009-01-31 20:03:40 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (reply) {
|
2011-08-31 11:25:42 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
reply.each(function(article) {
|
|
|
|
if (getActiveArticleId() == article['id']) {
|
|
|
|
render_article(article['content']);
|
|
|
|
}
|
|
|
|
cids_requested.remove(article['id']);
|
2011-08-31 11:25:42 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
cache_set("article:" + article['id'], article['content']);
|
|
|
|
});
|
2007-08-24 07:53:35 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
} else {
|
|
|
|
console.error("Invalid object received: " + transport.responseText);
|
2011-03-18 09:46:22 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
render_article("<div class='whiteBox'>" +
|
|
|
|
__('Could not display article (invalid object received - see error console for details)') + "</div>");
|
|
|
|
}
|
2006-11-23 05:26:49 +00:00
|
|
|
|
2018-11-29 19:56:34 +00:00
|
|
|
const unread_in_buffer = $$("#headlines-frame > div[id*=RROW][class*=Unread]").length;
|
2017-03-04 11:34:44 +00:00
|
|
|
request_counters(unread_in_buffer == 0);
|
2007-03-04 09:54:07 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
notify("");
|
2006-09-28 12:00:03 +00:00
|
|
|
}
|
2018-11-30 21:11:52 +00:00
|
|
|
*/
|
|
|
|
function view(id, noexpand) {
|
|
|
|
setActiveArticleId(id);
|
|
|
|
|
|
|
|
if (!noexpand) {
|
|
|
|
console.log("loading article", id);
|
|
|
|
|
|
|
|
const neighbor_ids = getRelativePostIds(id);
|
|
|
|
const cids = [];
|
|
|
|
|
|
|
|
/* only request uncached articles */
|
2006-09-28 12:00:03 +00:00
|
|
|
|
2018-11-30 21:11:52 +00:00
|
|
|
neighbor_ids.each((n) => {
|
|
|
|
if (!cache_get("article:" + n))
|
|
|
|
cids.push(n);
|
|
|
|
});
|
|
|
|
|
|
|
|
const cached_article = cache_get("article:" + id);
|
|
|
|
|
|
|
|
if (cached_article) {
|
|
|
|
console.log('rendering cached', id);
|
|
|
|
render_article(cached_article);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
xhrPost("backend.php", {op: "article", method: "view", id: id, cids: cids.toString()}, (transport) => {
|
|
|
|
try {
|
|
|
|
const reply = handle_rpc_json(transport);
|
|
|
|
|
|
|
|
if (reply) {
|
|
|
|
|
|
|
|
reply.each(function(article) {
|
|
|
|
if (getActiveArticleId() == article['id']) {
|
|
|
|
render_article(article['content']);
|
|
|
|
}
|
|
|
|
//cids_requested.remove(article['id']);
|
|
|
|
|
|
|
|
cache_set("article:" + article['id'], article['content']);
|
|
|
|
});
|
|
|
|
|
|
|
|
} else {
|
|
|
|
console.error("Invalid object received: " + transport.responseText);
|
|
|
|
|
|
|
|
render_article("<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;
|
|
|
|
|
|
|
|
/* const oldrow = $("RROW-" + getActiveArticleId());
|
2017-03-04 11:34:44 +00:00
|
|
|
if (oldrow) oldrow.removeClassName("active");
|
2013-03-29 19:04:27 +00:00
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
const crow = $("RROW-" + id);
|
2013-02-06 08:27:26 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (!crow) return;
|
|
|
|
if (noexpand) {
|
|
|
|
setActiveArticleId(id);
|
|
|
|
showArticleInHeadlines(id, noexpand);
|
|
|
|
return;
|
|
|
|
}
|
2013-02-06 08:27:26 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
console.log("loading article: " + id);
|
2009-12-29 15:03:16 +00:00
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
const cached_article = cache_get("article:" + id);
|
2007-05-15 05:03:35 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
console.log("cache check result: " + (cached_article != false));
|
2011-03-18 09:46:22 +00:00
|
|
|
|
2018-11-29 19:56:34 +00:00
|
|
|
const query = {op: "article", method: "view", id: id};
|
2006-09-28 12:00:03 +00:00
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
const neighbor_ids = getRelativePostIds(id);
|
2007-05-15 05:03:35 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
/* only request uncached articles */
|
2007-05-15 05:03:35 +00:00
|
|
|
|
2018-11-30 21:11:52 +00:00
|
|
|
/* const cids_to_request = [];
|
2007-05-15 05:41:48 +00:00
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
for (let i = 0; i < neighbor_ids.length; i++) {
|
2017-03-04 11:34:44 +00:00
|
|
|
if (cids_requested.indexOf(neighbor_ids[i]) == -1)
|
|
|
|
if (!cache_get("article:" + neighbor_ids[i])) {
|
|
|
|
cids_to_request.push(neighbor_ids[i]);
|
|
|
|
cids_requested.push(neighbor_ids[i]);
|
|
|
|
}
|
|
|
|
}
|
2007-05-15 05:41:48 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
console.log("additional ids: " + cids_to_request.toString());
|
2011-03-18 09:46:22 +00:00
|
|
|
|
2018-11-29 19:56:34 +00:00
|
|
|
query.cids = cids_to_request.toString();
|
2007-05-15 05:03:35 +00:00
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
const article_is_unread = crow.hasClassName("Unread");
|
2007-05-15 05:03:35 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
setActiveArticleId(id);
|
|
|
|
showArticleInHeadlines(id);
|
2008-05-22 05:40:57 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (cached_article && article_is_unread) {
|
2018-11-29 19:56:34 +00:00
|
|
|
query.mode = "prefetch";
|
2017-03-04 11:34:44 +00:00
|
|
|
render_article(cached_article);
|
|
|
|
} else if (cached_article) {
|
2018-11-30 12:07:44 +00:00
|
|
|
query.mode = "prefetch_old";
|
2017-03-04 11:34:44 +00:00
|
|
|
render_article(cached_article);
|
2008-05-20 15:59:42 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
// if we don't need to request any relative ids, we might as well skip
|
|
|
|
// the server roundtrip altogether
|
|
|
|
if (cids_to_request.length == 0) {
|
|
|
|
return;
|
2011-08-31 10:03:52 +00:00
|
|
|
}
|
2017-03-04 11:34:44 +00:00
|
|
|
}
|
2007-02-07 17:01:35 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
last_requested_article = id;
|
2008-05-20 16:06:12 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
console.log(query);
|
2011-08-03 08:32:30 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (article_is_unread) {
|
|
|
|
decrementFeedCounter(getActiveFeedId(), activeFeedIsCat());
|
|
|
|
}
|
2012-04-04 11:34:06 +00:00
|
|
|
|
2018-11-29 19:56:34 +00:00
|
|
|
xhrPost("backend.php", query, (transport) => {
|
2018-11-30 12:07:44 +00:00
|
|
|
article_callback2(transport, id);
|
2018-11-29 19:56:34 +00:00
|
|
|
})
|
2006-09-28 12:00:03 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
return false;
|
2018-11-30 21:11:52 +00:00
|
|
|
*/
|
2005-09-05 12:02:00 +00:00
|
|
|
}
|
|
|
|
|
2010-11-13 22:41:27 +00:00
|
|
|
function toggleMark(id, client_only) {
|
2018-11-29 19:56:34 +00:00
|
|
|
const query = { op: "rpc", id: id, method: "mark" };
|
2011-03-18 09:46:22 +00:00
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
const row = $("RROW-" + id);
|
2017-03-04 11:34:44 +00:00
|
|
|
if (!row) return;
|
2009-01-26 05:20:56 +00:00
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
const imgs = [];
|
2013-06-05 18:19:33 +00:00
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
const row_imgs = row.getElementsByClassName("markedPic");
|
2013-06-05 18:19:33 +00:00
|
|
|
|
2018-11-29 19:56:34 +00:00
|
|
|
for (let i = 0; i < row_imgs.length; i++)
|
2017-03-04 11:34:44 +00:00
|
|
|
imgs.push(row_imgs[i]);
|
2013-06-05 18:19:33 +00:00
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
const ft = $("floatingTitle");
|
2013-06-05 18:19:33 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (ft && ft.getAttribute("data-article-id") == id) {
|
2018-11-29 17:07:23 +00:00
|
|
|
const fte = ft.getElementsByClassName("markedPic");
|
2013-06-05 18:19:33 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
for (var i = 0; i < fte.length; i++)
|
|
|
|
imgs.push(fte[i]);
|
|
|
|
}
|
2011-03-18 09:46:22 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
for (i = 0; i < imgs.length; i++) {
|
2018-11-29 17:07:23 +00:00
|
|
|
const img = imgs[i];
|
2008-05-20 05:47:57 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (!row.hasClassName("marked")) {
|
|
|
|
img.src = img.src.replace("mark_unset", "mark_set");
|
2018-11-29 19:56:34 +00:00
|
|
|
query.mark = 1;
|
2017-03-04 11:34:44 +00:00
|
|
|
} else {
|
|
|
|
img.src = img.src.replace("mark_set", "mark_unset");
|
2018-11-29 19:56:34 +00:00
|
|
|
query.mark = 0;
|
2007-08-20 07:59:18 +00:00
|
|
|
}
|
2017-03-04 11:34:44 +00:00
|
|
|
}
|
2006-05-23 06:35:27 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
row.toggleClassName("marked");
|
2013-04-09 12:13:32 +00:00
|
|
|
|
2018-11-29 19:56:34 +00:00
|
|
|
if (!client_only)
|
|
|
|
xhrPost("backend.php", query, (transport) => {
|
|
|
|
handle_rpc_json(transport);
|
2017-03-04 11:34:44 +00:00
|
|
|
});
|
2007-08-20 12:37:46 +00:00
|
|
|
}
|
2005-09-05 12:02:00 +00:00
|
|
|
|
2009-03-21 20:11:58 +00:00
|
|
|
function togglePub(id, client_only, no_effects, note) {
|
2018-11-30 12:07:44 +00:00
|
|
|
const query = { op: "rpc", id: id, method: "publ" };
|
2011-03-18 09:46:22 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (note != undefined) {
|
2018-11-29 19:56:34 +00:00
|
|
|
query.note = note;
|
2017-03-04 11:34:44 +00:00
|
|
|
} else {
|
2018-11-29 19:56:34 +00:00
|
|
|
query.note = "undefined";
|
2017-03-04 11:34:44 +00:00
|
|
|
}
|
2009-01-26 05:20:56 +00:00
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
const row = $("RROW-" + id);
|
2017-03-04 11:34:44 +00:00
|
|
|
if (!row) return;
|
2009-01-26 05:20:56 +00:00
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
const imgs = [];
|
2013-06-05 18:19:33 +00:00
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
const row_imgs = row.getElementsByClassName("pubPic");
|
2013-06-05 18:19:33 +00:00
|
|
|
|
2018-11-29 19:56:34 +00:00
|
|
|
for (let i = 0; i < row_imgs.length; i++)
|
2017-03-04 11:34:44 +00:00
|
|
|
imgs.push(row_imgs[i]);
|
2013-06-05 18:19:33 +00:00
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
const ft = $("floatingTitle");
|
2013-06-05 18:19:33 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (ft && ft.getAttribute("data-article-id") == id) {
|
2018-11-29 17:07:23 +00:00
|
|
|
const fte = ft.getElementsByClassName("pubPic");
|
2013-06-05 18:19:33 +00:00
|
|
|
|
2018-11-29 19:56:34 +00:00
|
|
|
for (let i = 0; i < fte.length; i++)
|
2017-03-04 11:34:44 +00:00
|
|
|
imgs.push(fte[i]);
|
|
|
|
}
|
2011-03-18 09:46:22 +00:00
|
|
|
|
2018-11-29 19:56:34 +00:00
|
|
|
for (let i = 0; i < imgs.length; i++) {
|
2018-11-29 17:07:23 +00:00
|
|
|
const img = imgs[i];
|
2008-05-20 05:47:57 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (!row.hasClassName("published") || note != undefined) {
|
|
|
|
img.src = img.src.replace("pub_unset", "pub_set");
|
2018-11-29 19:56:34 +00:00
|
|
|
query.pub = 1;
|
2017-03-04 11:34:44 +00:00
|
|
|
} else {
|
|
|
|
img.src = img.src.replace("pub_set", "pub_unset");
|
2018-11-29 19:56:34 +00:00
|
|
|
query.pub = 0;
|
2007-08-09 12:45:30 +00:00
|
|
|
}
|
2017-03-04 11:34:44 +00:00
|
|
|
}
|
2007-08-20 12:37:46 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (note != undefined)
|
|
|
|
row.addClassName("published");
|
|
|
|
else
|
|
|
|
row.toggleClassName("published");
|
2010-11-29 17:25:51 +00:00
|
|
|
|
2018-11-29 19:56:34 +00:00
|
|
|
if (!client_only)
|
|
|
|
xhrPost("backend.php", query, (transport) => {
|
2017-03-04 11:34:44 +00:00
|
|
|
handle_rpc_json(transport);
|
2018-11-29 19:56:34 +00:00
|
|
|
});
|
2007-08-09 12:45:30 +00:00
|
|
|
}
|
|
|
|
|
2013-04-06 01:47:40 +00:00
|
|
|
function moveToPost(mode, noscroll, noexpand) {
|
2018-11-29 17:07:23 +00:00
|
|
|
const rows = getLoadedArticleIds();
|
2005-09-05 12:02:00 +00:00
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
let prev_id = false;
|
|
|
|
let next_id = false;
|
2011-03-18 09:46:22 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (!$('RROW-' + getActiveArticleId())) {
|
|
|
|
setActiveArticleId(0);
|
|
|
|
}
|
2011-03-18 09:46:22 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (!getActiveArticleId()) {
|
|
|
|
next_id = rows[0];
|
|
|
|
prev_id = rows[rows.length-1]
|
|
|
|
} else {
|
2018-11-29 17:07:23 +00:00
|
|
|
for (let i = 0; i < rows.length; i++) {
|
2017-03-04 11:34:44 +00:00
|
|
|
if (rows[i] == getActiveArticleId()) {
|
2012-03-12 09:53:10 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
// Account for adjacent identical article ids.
|
|
|
|
if (i > 0) prev_id = rows[i-1];
|
2012-03-12 09:53:10 +00:00
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
for (let j = i+1; j < rows.length; j++) {
|
2017-03-04 11:34:44 +00:00
|
|
|
if (rows[j] != getActiveArticleId()) {
|
|
|
|
next_id = rows[j];
|
|
|
|
break;
|
2012-03-12 09:53:10 +00:00
|
|
|
}
|
2008-02-19 14:49:36 +00:00
|
|
|
}
|
2017-03-04 11:34:44 +00:00
|
|
|
break;
|
2008-02-19 14:49:36 +00:00
|
|
|
}
|
2008-05-16 02:06:57 +00:00
|
|
|
}
|
2017-03-04 11:34:44 +00:00
|
|
|
}
|
2011-03-18 09:46:22 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
console.log("cur: " + getActiveArticleId() + " next: " + next_id);
|
2011-03-18 09:46:22 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (mode == "next") {
|
|
|
|
if (next_id || getActiveArticleId()) {
|
|
|
|
if (isCdmMode()) {
|
2008-05-16 02:06:57 +00:00
|
|
|
|
2018-11-30 21:11:52 +00:00
|
|
|
const article = $("RROW-" + getActiveArticleId());
|
|
|
|
const ctr = $("headlines-frame");
|
2013-02-27 18:27:49 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (!noscroll && article && article.offsetTop + article.offsetHeight >
|
|
|
|
ctr.scrollTop + ctr.offsetHeight) {
|
2013-02-27 18:27:49 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
scrollArticle(ctr.offsetHeight/4);
|
2013-02-27 18:27:49 +00:00
|
|
|
|
|
|
|
} else if (next_id) {
|
2018-11-30 21:11:52 +00:00
|
|
|
setActiveArticleId(next_id);
|
2018-11-30 22:03:01 +00:00
|
|
|
cdmScrollToArticleId(next_id, true);
|
2008-02-19 14:49:36 +00:00
|
|
|
}
|
2017-03-04 11:34:44 +00:00
|
|
|
|
|
|
|
} else if (next_id) {
|
|
|
|
correctHeadlinesOffset(next_id);
|
2018-11-30 21:11:52 +00:00
|
|
|
view(next_id, noexpand);
|
2008-02-19 14:49:36 +00:00
|
|
|
}
|
2008-05-16 02:06:57 +00:00
|
|
|
}
|
2017-03-04 11:34:44 +00:00
|
|
|
}
|
2011-03-18 09:46:22 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (mode == "prev") {
|
|
|
|
if (prev_id || getActiveArticleId()) {
|
|
|
|
if (isCdmMode()) {
|
2013-02-27 18:27:49 +00:00
|
|
|
|
2018-11-30 21:11:52 +00:00
|
|
|
const article = $("RROW-" + getActiveArticleId());
|
2018-11-29 17:07:23 +00:00
|
|
|
const prev_article = $("RROW-" + prev_id);
|
2018-11-30 21:11:52 +00:00
|
|
|
const ctr = $("headlines-frame");
|
2013-02-27 18:27:49 +00:00
|
|
|
|
2018-11-30 10:51:54 +00:00
|
|
|
if (!noscroll && article && article.offsetTop < ctr.scrollTop) {
|
|
|
|
scrollArticle(-ctr.offsetHeight/3);
|
|
|
|
} else if (!noscroll && prev_article &&
|
|
|
|
prev_article.offsetTop < ctr.scrollTop) {
|
|
|
|
scrollArticle(-ctr.offsetHeight/4);
|
|
|
|
} else if (prev_id) {
|
2018-11-30 21:11:52 +00:00
|
|
|
setActiveArticleId(prev_id);
|
2018-11-30 22:03:01 +00:00
|
|
|
cdmScrollToArticleId(prev_id, noscroll);
|
2018-11-30 10:51:54 +00:00
|
|
|
}
|
2017-03-04 11:34:44 +00:00
|
|
|
|
|
|
|
} else if (prev_id) {
|
|
|
|
correctHeadlinesOffset(prev_id);
|
2018-11-30 21:11:52 +00:00
|
|
|
view(prev_id, noexpand);
|
2008-05-16 02:06:57 +00:00
|
|
|
}
|
2011-03-18 09:46:22 +00:00
|
|
|
}
|
2005-09-05 12:41:59 +00:00
|
|
|
}
|
2017-03-04 11:34:44 +00:00
|
|
|
|
2008-02-19 14:49:36 +00:00
|
|
|
}
|
|
|
|
|
2018-11-30 21:11:52 +00:00
|
|
|
/* function toggleSelected(id, force_on) {
|
2018-11-29 17:07:23 +00:00
|
|
|
const row = $("RROW-" + id);
|
2008-05-16 02:06:57 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (row) {
|
2018-11-29 17:07:23 +00:00
|
|
|
const cb = dijit.getEnclosingWidget(
|
2017-03-04 11:34:44 +00:00
|
|
|
row.getElementsByClassName("rchk")[0]);
|
2013-04-06 20:52:39 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (row.hasClassName('Selected') && !force_on) {
|
|
|
|
row.removeClassName('Selected');
|
|
|
|
if (cb) cb.attr("checked", false);
|
|
|
|
} else {
|
|
|
|
row.addClassName('Selected');
|
|
|
|
if (cb) cb.attr("checked", true);
|
2005-09-05 12:41:59 +00:00
|
|
|
}
|
2008-02-19 14:49:36 +00:00
|
|
|
}
|
2017-03-04 11:34:44 +00:00
|
|
|
|
|
|
|
updateSelectedPrompt();
|
2018-11-30 21:11:52 +00:00
|
|
|
} */
|
2005-09-05 12:41:59 +00:00
|
|
|
|
2013-04-15 09:16:14 +00:00
|
|
|
function updateSelectedPrompt() {
|
2018-11-29 18:03:55 +00:00
|
|
|
const count = getSelectedArticleIds2().length;
|
2018-11-29 17:07:23 +00:00
|
|
|
const elem = $("selected_prompt");
|
2013-04-15 09:16:14 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (elem) {
|
|
|
|
elem.innerHTML = ngettext("%d article selected",
|
|
|
|
"%d articles selected", count).replace("%d", count);
|
2013-04-15 09:16:14 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (count > 0)
|
|
|
|
Element.show(elem);
|
|
|
|
else
|
|
|
|
Element.hide(elem);
|
2013-04-15 09:16:14 +00:00
|
|
|
}
|
2017-03-04 11:34:44 +00:00
|
|
|
|
2013-04-15 09:16:14 +00:00
|
|
|
}
|
|
|
|
|
2018-11-29 19:56:34 +00:00
|
|
|
function toggleUnread(id, cmode) {
|
2018-11-29 17:07:23 +00:00
|
|
|
const row = $("RROW-" + id);
|
2018-11-30 21:11:52 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (row) {
|
2018-11-29 17:07:23 +00:00
|
|
|
const tmpClassName = row.className;
|
2010-11-14 12:55:51 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (cmode == undefined || cmode == 2) {
|
|
|
|
if (row.hasClassName("Unread")) {
|
2010-11-14 12:55:51 +00:00
|
|
|
row.removeClassName("Unread");
|
2008-02-19 14:49:36 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
} else {
|
2010-11-14 12:55:51 +00:00
|
|
|
row.addClassName("Unread");
|
2006-05-16 13:41:57 +00:00
|
|
|
}
|
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
} else if (cmode == 0) {
|
|
|
|
row.removeClassName("Unread");
|
|
|
|
} else if (cmode == 1) {
|
|
|
|
row.addClassName("Unread");
|
2009-01-18 09:09:52 +00:00
|
|
|
}
|
|
|
|
|
2018-11-29 19:56:34 +00:00
|
|
|
if (tmpClassName != row.className) {
|
2018-11-30 12:07:44 +00:00
|
|
|
if (cmode == undefined) cmode = 2;
|
2009-01-18 09:09:52 +00:00
|
|
|
|
2018-11-30 12:07:44 +00:00
|
|
|
const query = {op: "rpc", method: "catchupSelected",
|
|
|
|
cmode: cmode, ids: id};
|
2009-01-18 09:09:52 +00:00
|
|
|
|
2018-11-30 12:07:44 +00:00
|
|
|
xhrPost("backend.php", query, (transport) => {
|
2018-11-30 21:11:52 +00:00
|
|
|
handle_rpc_json(transport);
|
2017-03-04 11:34:44 +00:00
|
|
|
});
|
|
|
|
}
|
2009-01-18 09:09:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
function selectionRemoveLabel(id, ids) {
|
|
|
|
if (!ids) ids = getSelectedArticleIds2();
|
2009-01-18 08:47:34 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (ids.length == 0) {
|
|
|
|
alert(__("No articles are selected."));
|
|
|
|
return;
|
|
|
|
}
|
2009-01-18 08:47:34 +00:00
|
|
|
|
2018-11-29 19:56:34 +00:00
|
|
|
const query = { op: "article", method: "removeFromLabel",
|
|
|
|
ids: ids.toString(), lid: id };
|
2009-01-18 08:47:34 +00:00
|
|
|
|
2018-11-29 19:56:34 +00:00
|
|
|
xhrPost("backend.php", query, (transport) => {
|
2018-11-30 12:07:44 +00:00
|
|
|
handle_rpc_json(transport);
|
|
|
|
show_labels_in_headlines(transport);
|
2018-11-29 19:56:34 +00:00
|
|
|
});
|
2017-03-04 11:34:44 +00:00
|
|
|
}
|
2009-01-18 08:47:34 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
function selectionAssignLabel(id, ids) {
|
|
|
|
if (!ids) ids = getSelectedArticleIds2();
|
2009-01-18 08:47:34 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (ids.length == 0) {
|
|
|
|
alert(__("No articles are selected."));
|
|
|
|
return;
|
2009-01-18 08:47:34 +00:00
|
|
|
}
|
2017-03-04 11:34:44 +00:00
|
|
|
|
2018-11-29 19:56:34 +00:00
|
|
|
const query = { op: "article", method: "assignToLabel",
|
|
|
|
ids: ids.toString(), lid: id };
|
2017-03-04 11:34:44 +00:00
|
|
|
|
2018-11-30 12:07:44 +00:00
|
|
|
xhrPost("backend.php", query, (transport) => {
|
|
|
|
handle_rpc_json(transport);
|
|
|
|
show_labels_in_headlines(transport);
|
|
|
|
});
|
2009-01-18 08:47:34 +00:00
|
|
|
}
|
|
|
|
|
2013-03-30 09:42:33 +00:00
|
|
|
function selectionToggleUnread(set_state, callback, no_error, ids) {
|
2018-11-29 17:07:23 +00:00
|
|
|
const rows = ids ? ids : getSelectedArticleIds2();
|
2007-03-26 05:31:42 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (rows.length == 0 && !no_error) {
|
|
|
|
alert(__("No articles are selected."));
|
|
|
|
return;
|
|
|
|
}
|
2007-08-19 05:13:45 +00:00
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
for (let i = 0; i < rows.length; i++) {
|
|
|
|
const row = $("RROW-" + rows[i]);
|
2017-03-04 11:34:44 +00:00
|
|
|
if (row) {
|
|
|
|
if (set_state == undefined) {
|
|
|
|
if (row.hasClassName("Unread")) {
|
2010-11-14 12:55:51 +00:00
|
|
|
row.removeClassName("Unread");
|
2017-03-04 11:34:44 +00:00
|
|
|
} else {
|
2010-11-14 12:55:51 +00:00
|
|
|
row.addClassName("Unread");
|
2005-12-01 12:52:18 +00:00
|
|
|
}
|
|
|
|
}
|
2005-11-27 14:56:10 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (set_state == false) {
|
|
|
|
row.removeClassName("Unread");
|
|
|
|
}
|
2006-08-02 08:47:34 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (set_state == true) {
|
|
|
|
row.addClassName("Unread");
|
2006-08-02 08:47:34 +00:00
|
|
|
}
|
2017-03-04 11:34:44 +00:00
|
|
|
}
|
|
|
|
}
|
2006-08-02 08:47:34 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
updateFloatingTitle(true);
|
2005-11-27 14:56:10 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (rows.length > 0) {
|
2007-03-04 09:54:07 +00:00
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
let cmode = "";
|
2005-11-27 14:56:10 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (set_state == undefined) {
|
|
|
|
cmode = "2";
|
|
|
|
} else if (set_state == true) {
|
|
|
|
cmode = "1";
|
|
|
|
} else if (set_state == false) {
|
|
|
|
cmode = "0";
|
2005-11-27 14:56:10 +00:00
|
|
|
}
|
|
|
|
|
2018-11-29 19:56:34 +00:00
|
|
|
const query = {op: "rpc", method: "catchupSelected",
|
|
|
|
cmode: cmode, ids: rows.toString() };
|
2017-03-04 11:34:44 +00:00
|
|
|
|
|
|
|
notify_progress("Loading, please wait...");
|
|
|
|
|
2018-11-30 12:07:44 +00:00
|
|
|
xhrPost("backend.php", query, (transport) => {
|
|
|
|
handle_rpc_json(transport);
|
|
|
|
if (callback) callback(transport);
|
|
|
|
});
|
2017-03-04 11:34:44 +00:00
|
|
|
|
2005-11-27 14:56:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-30 09:42:33 +00:00
|
|
|
// sel_state ignored
|
|
|
|
function selectionToggleMarked(sel_state, callback, no_error, ids) {
|
2018-11-29 17:07:23 +00:00
|
|
|
const rows = ids ? ids : getSelectedArticleIds2();
|
2011-03-18 09:46:22 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (rows.length == 0 && !no_error) {
|
|
|
|
alert(__("No articles are selected."));
|
|
|
|
return;
|
|
|
|
}
|
2005-11-27 14:56:10 +00:00
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
for (let i = 0; i < rows.length; i++) {
|
2017-03-04 11:34:44 +00:00
|
|
|
toggleMark(rows[i], true, true);
|
|
|
|
}
|
2005-11-27 14:56:10 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (rows.length > 0) {
|
2018-11-29 19:56:34 +00:00
|
|
|
const query = { op: "rpc", method: "markSelected",
|
|
|
|
ids: rows.toString(), cmode: 2 };
|
2005-11-27 14:56:10 +00:00
|
|
|
|
2018-11-30 12:07:44 +00:00
|
|
|
xhrPost("backend.php", query, (transport) => {
|
|
|
|
handle_rpc_json(transport);
|
|
|
|
if (callback) callback(transport);
|
|
|
|
});
|
2005-11-27 14:56:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-30 09:42:33 +00:00
|
|
|
// sel_state ignored
|
|
|
|
function selectionTogglePublished(sel_state, callback, no_error, ids) {
|
2018-11-29 17:07:23 +00:00
|
|
|
const rows = ids ? ids : getSelectedArticleIds2();
|
2007-08-09 12:45:30 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (rows.length == 0 && !no_error) {
|
|
|
|
alert(__("No articles are selected."));
|
|
|
|
return;
|
|
|
|
}
|
2007-08-09 12:45:30 +00:00
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
for (let i = 0; i < rows.length; i++) {
|
2017-03-04 11:34:44 +00:00
|
|
|
togglePub(rows[i], true, true);
|
|
|
|
}
|
2007-08-09 12:45:30 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (rows.length > 0) {
|
2018-11-30 12:07:44 +00:00
|
|
|
const query = { op: "rpc", method: "publishSelected",
|
|
|
|
ids: rows.toString(), cmode: 2 };
|
2007-08-09 12:45:30 +00:00
|
|
|
|
2018-11-30 12:07:44 +00:00
|
|
|
xhrPost("backend.php", query, (transport) => {
|
|
|
|
handle_rpc_json(transport);
|
|
|
|
if (callback) callback(transport);
|
|
|
|
});
|
2007-08-09 12:45:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-12 10:52:53 +00:00
|
|
|
function getSelectedArticleIds2() {
|
2005-12-13 05:52:32 +00:00
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
const rv = [];
|
2010-11-12 10:52:53 +00:00
|
|
|
|
2010-11-19 16:09:31 +00:00
|
|
|
$$("#headlines-frame > div[id*=RROW][class*=Selected]").each(
|
2010-11-14 12:55:51 +00:00
|
|
|
function(child) {
|
2016-03-22 20:43:32 +00:00
|
|
|
rv.push(child.getAttribute("data-article-id"));
|
2010-11-14 12:55:51 +00:00
|
|
|
});
|
2005-12-13 05:52:32 +00:00
|
|
|
|
2018-11-30 21:11:52 +00:00
|
|
|
// i wonder if this is a good idea: consider active article a honorary member
|
|
|
|
// of selected articles
|
|
|
|
if (getActiveArticleId())
|
|
|
|
rv.push(getActiveArticleId());
|
|
|
|
|
2018-11-30 22:21:33 +00:00
|
|
|
return rv.uniq();
|
2005-12-13 05:52:32 +00:00
|
|
|
}
|
|
|
|
|
2010-11-12 10:52:53 +00:00
|
|
|
function getLoadedArticleIds() {
|
2018-11-29 17:07:23 +00:00
|
|
|
const rv = [];
|
2007-08-22 04:45:01 +00:00
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
const children = $$("#headlines-frame > div[id*=RROW-]");
|
2008-05-19 10:24:46 +00:00
|
|
|
|
2010-11-14 12:55:51 +00:00
|
|
|
children.each(function(child) {
|
2016-03-22 20:22:28 +00:00
|
|
|
if (Element.visible(child)) {
|
2016-03-22 20:43:32 +00:00
|
|
|
rv.push(child.getAttribute("data-article-id"));
|
2016-03-22 20:22:28 +00:00
|
|
|
}
|
|
|
|
});
|
2007-08-22 04:45:01 +00:00
|
|
|
|
2010-11-14 12:55:51 +00:00
|
|
|
return rv;
|
2007-08-22 04:45:01 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-10-08 10:32:17 +00:00
|
|
|
// mode = all,none,unread,invert,marked,published
|
2018-11-30 21:11:52 +00:00
|
|
|
function selectArticles(mode) {
|
|
|
|
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("selectArticles: 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);
|
|
|
|
}
|
|
|
|
|
|
|
|
updateSelectedPrompt();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// mode = all,none,unread,invert,marked,published
|
|
|
|
/* function selectArticles(mode, query) {
|
2017-03-04 11:34:44 +00:00
|
|
|
if (!query) query = "#headlines-frame > div[id*=RROW]";
|
2013-10-17 09:38:48 +00:00
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
const children = $$(query);
|
2006-01-09 13:55:39 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
children.each(function(child) {
|
2018-11-29 19:56:34 +00:00
|
|
|
//const id = child.getAttribute("data-article-id");
|
2013-04-06 20:52:39 +00:00
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
const cb = dijit.getEnclosingWidget(
|
2017-03-04 11:34:44 +00:00
|
|
|
child.getElementsByClassName("rchk")[0]);
|
2006-01-09 13:55:39 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (mode == "all") {
|
|
|
|
child.addClassName("Selected");
|
|
|
|
if (cb) cb.attr("checked", true);
|
|
|
|
} else if (mode == "unread") {
|
|
|
|
if (child.hasClassName("Unread")) {
|
2010-11-14 12:55:51 +00:00
|
|
|
child.addClassName("Selected");
|
2013-02-28 11:48:09 +00:00
|
|
|
if (cb) cb.attr("checked", true);
|
2010-11-14 12:55:51 +00:00
|
|
|
} else {
|
|
|
|
child.removeClassName("Selected");
|
2013-02-28 11:48:09 +00:00
|
|
|
if (cb) cb.attr("checked", false);
|
2010-11-14 12:55:51 +00:00
|
|
|
}
|
2017-03-04 11:34:44 +00:00
|
|
|
} else if (mode == "marked") {
|
|
|
|
if (child.hasClassName("marked")) {
|
|
|
|
child.addClassName("Selected");
|
|
|
|
if (cb) cb.attr("checked", true);
|
|
|
|
} else {
|
|
|
|
child.removeClassName("Selected");
|
|
|
|
if (cb) cb.attr("checked", false);
|
|
|
|
}
|
|
|
|
} else if (mode == "published") {
|
|
|
|
if (child.hasClassName("published")) {
|
|
|
|
child.addClassName("Selected");
|
|
|
|
if (cb) cb.attr("checked", true);
|
|
|
|
} else {
|
|
|
|
child.removeClassName("Selected");
|
|
|
|
if (cb) cb.attr("checked", false);
|
|
|
|
}
|
|
|
|
|
|
|
|
} else if (mode == "invert") {
|
|
|
|
if (child.hasClassName("Selected")) {
|
|
|
|
child.removeClassName("Selected");
|
|
|
|
if (cb) cb.attr("checked", false);
|
|
|
|
} else {
|
|
|
|
child.addClassName("Selected");
|
|
|
|
if (cb) cb.attr("checked", true);
|
|
|
|
}
|
2010-11-12 10:52:53 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
} else {
|
|
|
|
child.removeClassName("Selected");
|
|
|
|
if (cb) cb.attr("checked", false);
|
|
|
|
}
|
|
|
|
});
|
2013-04-15 09:16:14 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
updateSelectedPrompt();
|
2018-11-30 21:11:52 +00:00
|
|
|
} */
|
2005-12-13 05:52:32 +00:00
|
|
|
|
2009-12-28 14:23:01 +00:00
|
|
|
function deleteSelection() {
|
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
const rows = getSelectedArticleIds2();
|
2011-03-18 09:46:22 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (rows.length == 0) {
|
|
|
|
alert(__("No articles are selected."));
|
|
|
|
return;
|
|
|
|
}
|
2011-03-18 09:46:22 +00:00
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
const fn = getFeedName(getActiveFeedId(), activeFeedIsCat());
|
|
|
|
let str;
|
2011-03-18 09:46:22 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (getActiveFeedId() != 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);
|
|
|
|
}
|
2011-03-18 09:46:22 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
str = str.replace("%d", rows.length);
|
|
|
|
str = str.replace("%s", fn);
|
2009-12-28 14:23:01 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (getInitParam("confirm_feed_catchup") == 1 && !confirm(str)) {
|
|
|
|
return;
|
|
|
|
}
|
2009-12-28 14:23:01 +00:00
|
|
|
|
2018-11-29 20:36:54 +00:00
|
|
|
const query = { op: "rpc", method: "delete", ids: rows.toString() };
|
2009-12-28 14:23:01 +00:00
|
|
|
|
2018-11-29 20:36:54 +00:00
|
|
|
xhrPost("backend.php", query, (transport) => {
|
2018-11-30 12:07:44 +00:00
|
|
|
handle_rpc_json(transport);
|
|
|
|
viewCurrentFeed();
|
2017-03-04 11:34:44 +00:00
|
|
|
});
|
2009-12-28 14:23:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function archiveSelection() {
|
|
|
|
|
2018-11-30 12:07:44 +00:00
|
|
|
const rows = getSelectedArticleIds2();
|
2011-03-18 09:46:22 +00:00
|
|
|
|
2018-11-30 12:07:44 +00:00
|
|
|
if (rows.length == 0) {
|
|
|
|
alert(__("No articles are selected."));
|
|
|
|
return;
|
|
|
|
}
|
2013-03-30 17:59:52 +00:00
|
|
|
|
2018-11-30 12:07:44 +00:00
|
|
|
const fn = getFeedName(getActiveFeedId(), activeFeedIsCat());
|
|
|
|
let str;
|
|
|
|
let op;
|
2013-03-30 17:59:52 +00:00
|
|
|
|
2018-11-30 12:07:44 +00:00
|
|
|
if (getActiveFeedId() != 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);
|
2011-03-18 09:46:22 +00:00
|
|
|
|
2018-11-30 12:07:44 +00:00
|
|
|
str += " " + __("Please note that unstarred articles might get purged on next feed update.");
|
2011-03-18 09:46:22 +00:00
|
|
|
|
2018-11-30 12:07:44 +00:00
|
|
|
op = "unarchive";
|
|
|
|
}
|
2009-12-28 14:23:01 +00:00
|
|
|
|
2018-11-30 12:07:44 +00:00
|
|
|
str = str.replace("%d", rows.length);
|
|
|
|
str = str.replace("%s", fn);
|
2009-12-28 14:23:01 +00:00
|
|
|
|
2018-11-30 12:07:44 +00:00
|
|
|
if (getInitParam("confirm_feed_catchup") == 1 && !confirm(str)) {
|
|
|
|
return;
|
|
|
|
}
|
2009-12-28 14:23:01 +00:00
|
|
|
|
2018-11-30 12:07:44 +00:00
|
|
|
for (let i = 0; i < rows.length; i++) {
|
|
|
|
cache_delete("article:" + rows[i]);
|
|
|
|
}
|
2009-12-28 21:09:04 +00:00
|
|
|
|
2018-11-30 12:07:44 +00:00
|
|
|
const query = {op: "rpc", method: op, ids: rows.toString()};
|
2009-12-28 14:23:01 +00:00
|
|
|
|
2018-11-30 12:07:44 +00:00
|
|
|
xhrPost("backend.php", query, (transport) => {
|
|
|
|
handle_rpc_json(transport);
|
|
|
|
viewCurrentFeed();
|
|
|
|
});
|
2009-12-28 14:23:01 +00:00
|
|
|
}
|
|
|
|
|
2007-08-19 05:13:45 +00:00
|
|
|
function catchupSelection() {
|
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
const rows = getSelectedArticleIds2();
|
2011-03-18 09:46:22 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (rows.length == 0) {
|
|
|
|
alert(__("No articles are selected."));
|
|
|
|
return;
|
|
|
|
}
|
2011-03-18 09:46:22 +00:00
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
const fn = getFeedName(getActiveFeedId(), activeFeedIsCat());
|
2011-03-18 09:46:22 +00:00
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
let str = ngettext("Mark %d selected article in %s as read?", "Mark %d selected articles in %s as read?", rows.length);
|
2011-03-18 09:46:22 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
str = str.replace("%d", rows.length);
|
|
|
|
str = str.replace("%s", fn);
|
2007-08-19 05:13:45 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (getInitParam("confirm_feed_catchup") == 1 && !confirm(str)) {
|
|
|
|
return;
|
2007-08-19 05:13:45 +00:00
|
|
|
}
|
2017-03-04 11:34:44 +00:00
|
|
|
|
|
|
|
selectionToggleUnread(false, 'viewCurrentFeed()', true);
|
2007-08-19 05:13:45 +00:00
|
|
|
}
|
|
|
|
|
2010-11-23 10:26:02 +00:00
|
|
|
function editArticleTags(id) {
|
2018-11-29 17:07:23 +00:00
|
|
|
const query = "backend.php?op=article&method=editArticleTags¶m=" + param_escape(id);
|
2006-08-01 07:54:46 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (dijit.byId("editTagsDlg"))
|
|
|
|
dijit.byId("editTagsDlg").destroyRecursive();
|
2006-12-07 07:48:00 +00:00
|
|
|
|
2018-11-29 18:13:41 +00:00
|
|
|
const dialog = new dijit.Dialog({
|
2017-03-04 11:34:44 +00:00
|
|
|
id: "editTagsDlg",
|
|
|
|
title: __("Edit article Tags"),
|
|
|
|
style: "width: 600px",
|
|
|
|
execute: function() {
|
|
|
|
if (this.validate()) {
|
2018-11-29 17:07:23 +00:00
|
|
|
const query = dojo.objectToQuery(this.attr('value'));
|
2006-12-07 07:48:00 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
notify_progress("Saving article tags...", true);
|
2007-05-19 13:47:51 +00:00
|
|
|
|
2018-11-29 20:36:54 +00:00
|
|
|
xhrPost("backend.php", this.attr('value'), (transport) => {
|
2018-11-30 12:07:44 +00:00
|
|
|
try {
|
|
|
|
notify('');
|
|
|
|
dialog.hide();
|
2011-03-18 09:46:22 +00:00
|
|
|
|
2018-11-30 12:07:44 +00:00
|
|
|
const data = JSON.parse(transport.responseText);
|
2010-11-29 11:21:28 +00:00
|
|
|
|
2018-11-30 12:07:44 +00:00
|
|
|
if (data) {
|
|
|
|
const id = data.id;
|
2010-11-29 11:21:28 +00:00
|
|
|
|
2018-11-30 12:07:44 +00:00
|
|
|
const tags = $("ATSTR-" + id);
|
|
|
|
const tooltip = dijit.byId("ATSTRTIP-" + id);
|
2010-11-29 11:21:28 +00:00
|
|
|
|
2018-11-30 12:07:44 +00:00
|
|
|
if (tags) tags.innerHTML = data.content;
|
|
|
|
if (tooltip) tooltip.attr('label', data.content_full);
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
exception_error(e);
|
|
|
|
}
|
2018-11-29 20:36:54 +00:00
|
|
|
});
|
2017-03-04 11:34:44 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
href: query
|
|
|
|
});
|
2006-12-07 09:27:34 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
var tmph = dojo.connect(dialog, 'onLoad', function() {
|
|
|
|
dojo.disconnect(tmph);
|
2006-12-07 09:27:34 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
new Ajax.Autocompleter('tags_str', 'tags_choices',
|
|
|
|
"backend.php?op=article&method=completeTags",
|
|
|
|
{ tokens: ',', paramName: "search" });
|
|
|
|
});
|
2006-12-07 09:27:34 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
dialog.show();
|
2006-12-07 09:27:34 +00:00
|
|
|
|
|
|
|
}
|
2007-01-25 09:12:33 +00:00
|
|
|
|
2013-02-28 09:18:58 +00:00
|
|
|
function cdmScrollToArticleId(id, force) {
|
2018-11-29 17:07:23 +00:00
|
|
|
const ctr = $("headlines-frame");
|
|
|
|
const e = $("RROW-" + id);
|
2008-02-19 14:49:36 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (!e || !ctr) return;
|
2013-03-29 15:31:10 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (force || e.offsetTop+e.offsetHeight > (ctr.scrollTop+ctr.offsetHeight) ||
|
|
|
|
e.offsetTop < ctr.scrollTop) {
|
2008-02-19 14:49:36 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
// expanded cdm has a 4px margin now
|
|
|
|
ctr.scrollTop = parseInt(e.offsetTop) - 4;
|
2018-11-30 17:00:27 +00:00
|
|
|
|
2018-11-30 21:11:52 +00:00
|
|
|
/*setActiveArticleId(id);
|
2018-11-30 17:24:10 +00:00
|
|
|
|
2018-11-30 17:00:27 +00:00
|
|
|
// article is selected manually, set it read
|
2018-11-30 21:11:52 +00:00
|
|
|
toggleUnread(id, 0); */
|
2008-02-19 14:49:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-30 21:11:52 +00:00
|
|
|
// for the time being active article does not affect buffer selection (we still re/set the checkbox
|
|
|
|
// because of getSelectedArticleIds2() hack
|
2013-02-28 09:18:58 +00:00
|
|
|
function setActiveArticleId(id) {
|
2018-11-30 21:11:52 +00:00
|
|
|
console.log("setActiveArticleId", 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);
|
|
|
|
}
|
|
|
|
})
|
2015-08-11 09:00:08 +00:00
|
|
|
|
2013-02-28 09:18:58 +00:00
|
|
|
_active_article_id = id;
|
2018-11-30 21:11:52 +00:00
|
|
|
|
|
|
|
const row = $("RROW-" + id);
|
|
|
|
|
|
|
|
if (row) {
|
|
|
|
if (row.hasClassName("Unread")) {
|
|
|
|
toggleUnread(id, 0);
|
|
|
|
|
|
|
|
decrementFeedCounter(getActiveFeedId(), activeFeedIsCat());
|
|
|
|
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, _active_article_id);
|
|
|
|
}
|
2018-11-30 22:21:33 +00:00
|
|
|
|
|
|
|
updateSelectedPrompt();
|
2013-02-28 09:18:58 +00:00
|
|
|
}
|
|
|
|
|
2007-07-20 06:01:18 +00:00
|
|
|
function getActiveArticleId() {
|
2013-02-28 09:18:58 +00:00
|
|
|
return _active_article_id;
|
2007-07-20 06:01:18 +00:00
|
|
|
}
|
2007-08-09 06:56:11 +00:00
|
|
|
|
2013-03-25 12:08:20 +00:00
|
|
|
function postMouseIn(e, id) {
|
2011-08-31 10:03:52 +00:00
|
|
|
post_under_pointer = id;
|
2008-05-17 15:58:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function postMouseOut(id) {
|
2011-08-31 10:03:52 +00:00
|
|
|
post_under_pointer = false;
|
2008-05-17 15:58:15 +00:00
|
|
|
}
|
|
|
|
|
2013-03-25 10:01:33 +00:00
|
|
|
function unpackVisibleHeadlines() {
|
2018-11-30 10:51:54 +00:00
|
|
|
if (!isCdmMode()) return;
|
2013-03-25 10:15:22 +00:00
|
|
|
|
2018-11-30 12:07:44 +00:00
|
|
|
const rows = $$("#headlines-frame div[id*=RROW][data-content]");
|
2018-11-30 11:26:28 +00:00
|
|
|
const threshold = $("headlines-frame").scrollTop + $("headlines-frame").offsetHeight + 300;
|
2017-01-22 17:57:16 +00:00
|
|
|
|
2018-11-30 12:07:44 +00:00
|
|
|
for (let i = 0; i < rows.length; i++) {
|
|
|
|
const row = rows[i];
|
2018-11-30 11:20:00 +00:00
|
|
|
|
2018-11-30 12:07:44 +00:00
|
|
|
if (row.offsetTop <= threshold) {
|
|
|
|
console.log("unpacking: " + row.id);
|
2013-03-21 06:34:36 +00:00
|
|
|
|
2018-11-30 21:11:52 +00:00
|
|
|
row.select(".content-inner")[0].innerHTML = row.getAttribute("data-content");
|
2018-11-30 12:07:44 +00:00
|
|
|
row.removeAttribute("data-content");
|
2015-07-31 10:42:05 +00:00
|
|
|
|
2018-11-30 12:07:44 +00:00
|
|
|
PluginHost.run(PluginHost.HOOK_ARTICLE_RENDERED_CDM, row);
|
2018-11-30 21:11:52 +00:00
|
|
|
|
|
|
|
// i wonder if this is a good idea?
|
2018-11-30 22:03:01 +00:00
|
|
|
//if (!getActiveArticleId() && !row.hasClassName("Unread"))
|
|
|
|
// setActiveArticleId(row.getAttribute("data-article-id"));
|
2018-11-30 21:11:52 +00:00
|
|
|
|
2018-11-30 12:07:44 +00:00
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2013-03-25 10:01:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function headlines_scroll_handler(e) {
|
|
|
|
try {
|
2016-03-22 09:43:18 +00:00
|
|
|
|
|
|
|
// rate-limit in case of smooth scrolling and similar abominations
|
2016-03-22 09:51:15 +00:00
|
|
|
if (Math.max(e.scrollTop, _headlines_scroll_offset) - Math.min(e.scrollTop, _headlines_scroll_offset) < 25) {
|
2016-03-22 09:43:18 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
_headlines_scroll_offset = e.scrollTop;
|
|
|
|
|
2013-03-25 10:01:33 +00:00
|
|
|
unpackVisibleHeadlines();
|
|
|
|
|
2013-05-16 05:53:34 +00:00
|
|
|
// set topmost child in the buffer as active
|
2018-11-30 22:03:01 +00:00
|
|
|
if (isCdmMode() && getInitParam("cdm_expanded") && getInitParam("cdm_auto_catchup") == 1) {
|
2016-03-22 09:43:18 +00:00
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
const rows = $$("#headlines-frame > div[id*=RROW]");
|
2013-05-16 05:53:34 +00:00
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
for (let i = 0; i < rows.length; i++) {
|
2018-11-30 11:20:00 +00:00
|
|
|
const row = rows[i];
|
2013-05-16 05:53:34 +00:00
|
|
|
|
2018-11-30 11:20:00 +00:00
|
|
|
if ($("headlines-frame").scrollTop <= row.offsetTop &&
|
|
|
|
row.offsetTop - $("headlines-frame").scrollTop < 100 &&
|
2018-11-30 21:11:52 +00:00
|
|
|
row.getAttribute("data-article-id") != getActiveArticleId()) {
|
2013-05-16 06:50:36 +00:00
|
|
|
|
2018-11-30 21:11:52 +00:00
|
|
|
/* if (_active_article_id) {
|
2018-11-29 17:07:23 +00:00
|
|
|
const row = $("RROW-" + _active_article_id);
|
2013-05-16 05:53:34 +00:00
|
|
|
if (row) row.removeClassName("active");
|
|
|
|
}
|
|
|
|
|
2018-11-30 11:20:00 +00:00
|
|
|
_active_article_id = row.getAttribute("data-article-id");
|
2013-05-16 05:53:34 +00:00
|
|
|
showArticleInHeadlines(_active_article_id, true);
|
2018-11-30 21:11:52 +00:00
|
|
|
updateSelectedPrompt(); */
|
|
|
|
|
|
|
|
setActiveArticleId(row.getAttribute("data-article-id"));
|
|
|
|
|
2013-05-16 05:53:34 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-08-03 14:36:08 +00:00
|
|
|
if (!_infscroll_disable) {
|
2018-11-30 12:07:44 +00:00
|
|
|
const hsp = $("headlines-spacer");
|
2018-11-30 11:20:00 +00:00
|
|
|
|
2015-08-11 09:00:08 +00:00
|
|
|
if (hsp && hsp.offsetTop - 250 <= e.scrollTop + e.offsetHeight) {
|
2007-08-09 07:36:04 +00:00
|
|
|
|
2015-07-29 13:57:24 +00:00
|
|
|
hsp.innerHTML = "<span class='loading'><img src='images/indicator_tiny.gif'> " +
|
|
|
|
__("Loading, please wait...") + "</span>";
|
2011-08-04 11:20:23 +00:00
|
|
|
|
|
|
|
loadMoreHeadlines();
|
2011-11-25 05:51:47 +00:00
|
|
|
return;
|
2011-08-04 11:20:23 +00:00
|
|
|
|
2007-08-24 05:31:57 +00:00
|
|
|
}
|
2007-08-09 07:36:04 +00:00
|
|
|
}
|
|
|
|
|
2013-07-11 08:28:24 +00:00
|
|
|
if (isCdmMode()) {
|
2013-06-05 18:19:33 +00:00
|
|
|
updateFloatingTitle();
|
|
|
|
}
|
|
|
|
|
2011-03-06 06:55:58 +00:00
|
|
|
if (getInitParam("cdm_auto_catchup") == 1) {
|
2011-03-06 06:42:21 +00:00
|
|
|
|
2018-11-30 11:20:00 +00:00
|
|
|
let rows = $$("#headlines-frame > div[id*=RROW][class*=Unread]");
|
2011-03-06 06:42:21 +00:00
|
|
|
|
2018-11-30 11:20:00 +00:00
|
|
|
for (let i = 0; i < rows.length; i++) {
|
2018-11-30 12:07:44 +00:00
|
|
|
const row = rows[i];
|
2018-11-30 11:20:00 +00:00
|
|
|
|
|
|
|
if ($("headlines-frame").scrollTop > (row.offsetTop + row.offsetHeight/2)) {
|
2011-08-04 06:16:27 +00:00
|
|
|
|
2018-11-30 12:07:44 +00:00
|
|
|
const id = row.getAttribute("data-article-id")
|
2011-11-25 05:51:47 +00:00
|
|
|
|
2018-11-30 12:07:44 +00:00
|
|
|
if (catchup_id_batch.indexOf(id) == -1)
|
|
|
|
catchup_id_batch.push(id);
|
2013-05-16 05:53:34 +00:00
|
|
|
|
2018-11-30 12:07:44 +00:00
|
|
|
//console.log("auto_catchup_batch: " + catchup_id_batch.toString());
|
|
|
|
} else {
|
2018-11-30 11:20:00 +00:00
|
|
|
break;
|
|
|
|
}
|
2018-11-30 12:07:44 +00:00
|
|
|
}
|
2011-03-06 06:42:21 +00:00
|
|
|
|
2014-07-25 08:29:30 +00:00
|
|
|
if (_infscroll_disable) {
|
2018-11-30 11:20:00 +00:00
|
|
|
const row = $$("#headlines-frame div[id*=RROW]").last();
|
2014-07-25 08:14:06 +00:00
|
|
|
|
2018-11-30 11:20:00 +00:00
|
|
|
if (row && $("headlines-frame").scrollTop >
|
|
|
|
(row.offsetTop + row.offsetHeight - 50)) {
|
2014-07-25 08:14:06 +00:00
|
|
|
|
|
|
|
console.log("we seem to be at an end");
|
|
|
|
|
|
|
|
if (getInitParam("on_catchup_show_next_feed") == "1") {
|
2014-07-25 09:54:10 +00:00
|
|
|
openNextUnreadFeed();
|
2014-07-25 08:14:06 +00:00
|
|
|
}
|
|
|
|
}
|
2011-08-04 06:16:27 +00:00
|
|
|
}
|
|
|
|
}
|
2011-03-06 06:42:21 +00:00
|
|
|
|
2011-08-04 06:16:27 +00:00
|
|
|
} catch (e) {
|
2011-08-31 11:25:42 +00:00
|
|
|
console.warn("headlines_scroll_handler: " + e);
|
2011-08-04 06:16:27 +00:00
|
|
|
}
|
|
|
|
}
|
2011-03-18 09:46:22 +00:00
|
|
|
|
2014-07-25 09:54:10 +00:00
|
|
|
function openNextUnreadFeed() {
|
2018-11-29 17:07:23 +00:00
|
|
|
const is_cat = activeFeedIsCat();
|
|
|
|
const nuf = getNextUnreadFeed(getActiveFeedId(), is_cat);
|
2017-03-04 11:34:44 +00:00
|
|
|
if (nuf) viewfeed({feed: nuf, is_cat: is_cat});
|
2014-07-25 09:54:10 +00:00
|
|
|
}
|
|
|
|
|
2011-08-04 06:16:27 +00:00
|
|
|
function catchupBatchedArticles() {
|
2017-03-04 11:34:44 +00:00
|
|
|
if (catchup_id_batch.length > 0 && !_infscroll_request_sent && !_catchup_request_sent) {
|
2011-03-18 09:46:22 +00:00
|
|
|
|
2018-11-30 11:20:00 +00:00
|
|
|
console.log("catchupBatchedArticles, size=", catchup_id_batch.length);
|
2012-08-23 05:17:30 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
// make a copy of the array
|
2018-11-29 17:07:23 +00:00
|
|
|
const batch = catchup_id_batch.slice();
|
2018-11-29 20:36:54 +00:00
|
|
|
const query = { op: "rpc", method: "catchupSelected",
|
|
|
|
cmode: 0, ids: batch.toString() };
|
2015-08-11 07:06:30 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
_catchup_request_sent = true;
|
2011-08-04 06:16:27 +00:00
|
|
|
|
2018-11-29 20:36:54 +00:00
|
|
|
xhrPost("backend.php", query, (transport) => {
|
2018-11-30 12:07:44 +00:00
|
|
|
const reply = handle_rpc_json(transport);
|
2015-08-11 07:06:30 +00:00
|
|
|
|
2018-11-30 12:07:44 +00:00
|
|
|
_catchup_request_sent = false;
|
2013-04-04 05:49:37 +00:00
|
|
|
|
2018-11-30 12:07:44 +00:00
|
|
|
if (reply) {
|
|
|
|
const batch = reply.ids;
|
2011-08-04 06:16:27 +00:00
|
|
|
|
2018-11-30 12:07:44 +00:00
|
|
|
batch.each(function (id) {
|
|
|
|
const elem = $("RROW-" + id);
|
|
|
|
if (elem) elem.removeClassName("Unread");
|
|
|
|
catchup_id_batch.remove(id);
|
|
|
|
});
|
|
|
|
}
|
2011-08-04 06:16:27 +00:00
|
|
|
|
2018-11-30 12:07:44 +00:00
|
|
|
updateFloatingTitle(true);
|
2017-03-04 11:34:44 +00:00
|
|
|
});
|
2007-08-09 07:36:04 +00:00
|
|
|
}
|
|
|
|
}
|
2007-08-22 04:45:01 +00:00
|
|
|
|
2011-12-10 14:36:38 +00:00
|
|
|
function catchupRelativeToArticle(below, id) {
|
2007-08-22 04:45:01 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (!id) id = getActiveArticleId();
|
2009-02-02 08:49:00 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (!id) {
|
|
|
|
alert(__("No article is selected."));
|
|
|
|
return;
|
|
|
|
}
|
2007-08-22 04:45:01 +00:00
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
const visible_ids = getLoadedArticleIds();
|
2007-08-22 04:45:01 +00:00
|
|
|
|
2018-11-29 18:03:55 +00:00
|
|
|
const ids_to_mark = [];
|
2007-08-22 04:45:01 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (!below) {
|
2018-11-30 21:11:52 +00:00
|
|
|
for (let i = 0; i < visible_ids.length; i++) {
|
2017-03-04 11:34:44 +00:00
|
|
|
if (visible_ids[i] != id) {
|
2018-11-30 21:11:52 +00:00
|
|
|
const e = $("RROW-" + visible_ids[i]);
|
2007-08-22 04:45:01 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (e && e.hasClassName("Unread")) {
|
|
|
|
ids_to_mark.push(visible_ids[i]);
|
2007-08-22 04:45:01 +00:00
|
|
|
}
|
2017-03-04 11:34:44 +00:00
|
|
|
} else {
|
|
|
|
break;
|
2007-08-22 04:45:01 +00:00
|
|
|
}
|
2017-03-04 11:34:44 +00:00
|
|
|
}
|
|
|
|
} else {
|
2018-11-30 21:11:52 +00:00
|
|
|
for (let i = visible_ids.length - 1; i >= 0; i--) {
|
2017-03-04 11:34:44 +00:00
|
|
|
if (visible_ids[i] != id) {
|
2018-11-30 21:11:52 +00:00
|
|
|
const e = $("RROW-" + visible_ids[i]);
|
2007-08-22 04:45:01 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (e && e.hasClassName("Unread")) {
|
|
|
|
ids_to_mark.push(visible_ids[i]);
|
2007-08-22 04:45:01 +00:00
|
|
|
}
|
2017-03-04 11:34:44 +00:00
|
|
|
} else {
|
|
|
|
break;
|
2007-08-22 04:45:01 +00:00
|
|
|
}
|
|
|
|
}
|
2017-03-04 11:34:44 +00:00
|
|
|
}
|
2007-08-22 04:45:01 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (ids_to_mark.length == 0) {
|
|
|
|
alert(__("No articles found to mark"));
|
|
|
|
} else {
|
2018-11-29 17:07:23 +00:00
|
|
|
const msg = ngettext("Mark %d article as read?", "Mark %d articles as read?", ids_to_mark.length).replace("%d", ids_to_mark.length);
|
2007-08-22 04:45:01 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (getInitParam("confirm_feed_catchup") != 1 || confirm(msg)) {
|
2007-08-22 04:45:01 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
for (var i = 0; i < ids_to_mark.length; i++) {
|
|
|
|
var e = $("RROW-" + ids_to_mark[i]);
|
|
|
|
e.removeClassName("Unread");
|
|
|
|
}
|
2007-08-22 04:45:01 +00:00
|
|
|
|
2018-11-29 20:36:54 +00:00
|
|
|
const query = { op: "rpc", method: "catchupSelected",
|
|
|
|
cmode: 0, ids: ids_to_mark.toString() };
|
2007-08-22 04:45:01 +00:00
|
|
|
|
2018-11-29 20:36:54 +00:00
|
|
|
xhrPost("backend.php", query, (transport) => {
|
2018-11-30 12:07:44 +00:00
|
|
|
handle_rpc_json(transport);
|
2017-03-04 11:34:44 +00:00
|
|
|
});
|
2007-08-22 04:45:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-10-18 02:55:44 +00:00
|
|
|
|
2008-05-17 15:58:15 +00:00
|
|
|
function getArticleUnderPointer() {
|
|
|
|
return post_under_pointer;
|
2008-05-04 06:46:32 +00:00
|
|
|
}
|
2008-09-05 07:36:57 +00:00
|
|
|
|
2008-09-09 07:08:47 +00:00
|
|
|
function scrollArticle(offset) {
|
2017-03-04 11:34:44 +00:00
|
|
|
if (!isCdmMode()) {
|
2018-11-29 17:07:23 +00:00
|
|
|
const ci = $("content-insert");
|
2017-03-04 11:34:44 +00:00
|
|
|
if (ci) {
|
|
|
|
ci.scrollTop += offset;
|
2008-09-09 07:08:47 +00:00
|
|
|
}
|
2017-03-04 11:34:44 +00:00
|
|
|
} else {
|
2018-11-29 17:07:23 +00:00
|
|
|
const hi = $("headlines-frame");
|
2017-03-04 11:34:44 +00:00
|
|
|
if (hi) {
|
|
|
|
hi.scrollTop += offset;
|
|
|
|
}
|
|
|
|
|
2008-09-09 07:08:47 +00:00
|
|
|
}
|
|
|
|
}
|
2009-01-18 15:07:31 +00:00
|
|
|
|
|
|
|
function show_labels_in_headlines(transport) {
|
2018-11-29 17:07:23 +00:00
|
|
|
const data = JSON.parse(transport.responseText);
|
2009-01-18 15:07:31 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (data) {
|
|
|
|
data['info-for-headlines'].each(function (elem) {
|
|
|
|
$$(".HLLCTR-" + elem.id).each(function (ctr) {
|
|
|
|
ctr.innerHTML = elem.labels;
|
2010-11-29 11:11:54 +00:00
|
|
|
});
|
2017-03-04 11:34:44 +00:00
|
|
|
});
|
2009-01-18 15:07:31 +00:00
|
|
|
}
|
|
|
|
}
|
2009-01-20 17:46:21 +00:00
|
|
|
|
2017-03-06 09:19:13 +00:00
|
|
|
function cdmClicked(event, id, in_body) {
|
2018-11-30 22:03:01 +00:00
|
|
|
|
|
|
|
if (!in_body && (event.ctrlKey || id == getActiveArticleId() || getInitParam("cdm_expanded"))) {
|
2018-11-30 21:11:52 +00:00
|
|
|
openArticleInNewWindow(id);
|
|
|
|
}
|
|
|
|
|
|
|
|
setActiveArticleId(id);
|
|
|
|
|
2018-11-30 22:03:01 +00:00
|
|
|
if (!getInitParam("cdm_expanded"))
|
|
|
|
cdmScrollToArticleId(id);
|
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
//var shift_key = event.shiftKey;
|
2010-11-11 10:37:03 +00:00
|
|
|
|
2018-11-30 21:11:52 +00:00
|
|
|
/* if (!event.ctrlKey && !event.metaKey) {
|
2010-11-12 22:41:18 +00:00
|
|
|
|
2018-11-30 10:51:54 +00:00
|
|
|
let elem = $("RROW-" + getActiveArticleId());
|
2011-03-18 09:46:22 +00:00
|
|
|
|
2018-11-30 10:51:54 +00:00
|
|
|
if (elem) elem.removeClassName("active");
|
2011-03-18 09:46:22 +00:00
|
|
|
|
2018-11-30 10:51:54 +00:00
|
|
|
selectArticles("none");
|
|
|
|
toggleSelected(id);
|
2011-03-18 09:46:22 +00:00
|
|
|
|
2018-11-30 10:51:54 +00:00
|
|
|
elem = $("RROW-" + id);
|
|
|
|
const article_is_unread = elem.hasClassName("Unread");
|
2011-03-18 09:46:22 +00:00
|
|
|
|
2018-11-30 10:51:54 +00:00
|
|
|
elem.removeClassName("Unread");
|
|
|
|
elem.addClassName("active");
|
2010-12-21 17:11:38 +00:00
|
|
|
|
2018-11-30 10:51:54 +00:00
|
|
|
setActiveArticleId(id);
|
2010-11-12 22:41:18 +00:00
|
|
|
|
2018-11-30 10:51:54 +00:00
|
|
|
if (article_is_unread) {
|
|
|
|
decrementFeedCounter(getActiveFeedId(), activeFeedIsCat());
|
|
|
|
updateFloatingTitle(true);
|
2014-05-08 06:41:21 +00:00
|
|
|
|
2018-11-30 10:51:54 +00:00
|
|
|
const query = {
|
|
|
|
op: "rpc", method: "catchupSelected",
|
|
|
|
cmode: 0, ids: id
|
|
|
|
};
|
2012-04-05 07:58:50 +00:00
|
|
|
|
2018-11-30 10:51:54 +00:00
|
|
|
xhrPost("backend.php", query, (transport) => {
|
|
|
|
handle_rpc_json(transport);
|
|
|
|
});
|
2017-03-04 11:34:44 +00:00
|
|
|
}
|
2012-04-05 07:58:50 +00:00
|
|
|
|
2018-11-30 10:51:54 +00:00
|
|
|
return !event.shiftKey;
|
|
|
|
|
2017-03-06 09:19:13 +00:00
|
|
|
} else if (!in_body) {
|
2012-04-05 07:58:50 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
toggleSelected(id, true);
|
2013-02-06 07:09:45 +00:00
|
|
|
|
2018-11-29 18:03:55 +00:00
|
|
|
let elem = $("RROW-" + id);
|
|
|
|
const article_is_unread = elem.hasClassName("Unread");
|
2017-03-04 11:34:44 +00:00
|
|
|
|
|
|
|
if (article_is_unread) {
|
|
|
|
decrementFeedCounter(getActiveFeedId(), activeFeedIsCat());
|
2010-11-11 10:37:03 +00:00
|
|
|
}
|
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
toggleUnread(id, 0, false);
|
2013-02-01 09:09:43 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
openArticleInNewWindow(id);
|
2017-03-06 09:19:13 +00:00
|
|
|
} else {
|
|
|
|
return true;
|
2010-11-11 10:37:03 +00:00
|
|
|
}
|
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
const unread_in_buffer = $$("#headlines-frame > div[id*=RROW][class*=Unread]").length
|
2018-11-30 21:11:52 +00:00
|
|
|
request_counters(unread_in_buffer == 0); */
|
2017-03-04 11:34:44 +00:00
|
|
|
|
2010-11-11 10:37:03 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
function hlClicked(event, id) {
|
2018-11-30 21:11:52 +00:00
|
|
|
if (event.ctrlKey) {
|
|
|
|
openArticleInNewWindow(id);
|
|
|
|
setActiveArticleId(id);
|
|
|
|
} else {
|
|
|
|
view(id);
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
/* if (event.which == 2) {
|
2017-03-04 11:34:44 +00:00
|
|
|
view(id);
|
|
|
|
return true;
|
|
|
|
} else if (event.ctrlKey || event.metaKey) {
|
|
|
|
openArticleInNewWindow(id);
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
view(id);
|
|
|
|
return false;
|
2018-11-30 21:11:52 +00:00
|
|
|
} */
|
2010-11-11 10:37:03 +00:00
|
|
|
}
|
2010-11-12 10:52:53 +00:00
|
|
|
|
|
|
|
function openArticleInNewWindow(id) {
|
2018-11-29 17:07:23 +00:00
|
|
|
const w = window.open("");
|
2017-02-08 12:07:05 +00:00
|
|
|
w.opener = null;
|
|
|
|
w.location = "backend.php?op=article&method=redirect&id=" + id;
|
2010-11-12 10:52:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function isCdmMode() {
|
2010-11-13 11:04:37 +00:00
|
|
|
return getInitParam("combined_display_mode");
|
2010-11-12 10:52:53 +00:00
|
|
|
}
|
|
|
|
|
2018-11-30 21:11:52 +00:00
|
|
|
/* function markHeadline(id, marked) {
|
2013-03-20 06:21:14 +00:00
|
|
|
if (marked == undefined) marked = true;
|
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
const row = $("RROW-" + id);
|
2010-11-12 10:52:53 +00:00
|
|
|
if (row) {
|
2018-11-29 17:07:23 +00:00
|
|
|
const check = dijit.getEnclosingWidget(
|
2013-04-06 20:52:39 +00:00
|
|
|
row.getElementsByClassName("rchk")[0]);
|
2010-11-12 10:52:53 +00:00
|
|
|
|
|
|
|
if (check) {
|
2013-03-20 06:21:14 +00:00
|
|
|
check.attr("checked", marked);
|
2010-11-12 10:52:53 +00:00
|
|
|
}
|
|
|
|
|
2013-03-20 06:59:12 +00:00
|
|
|
if (marked)
|
|
|
|
row.addClassName("Selected");
|
|
|
|
else
|
|
|
|
row.removeClassName("Selected");
|
2010-11-12 10:52:53 +00:00
|
|
|
}
|
2018-11-30 21:11:52 +00:00
|
|
|
} */
|
2010-11-12 10:52:53 +00:00
|
|
|
|
2010-11-13 11:04:37 +00:00
|
|
|
function getRelativePostIds(id, limit) {
|
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
const tmp = [];
|
2010-11-13 11:04:37 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (!limit) limit = 6; //3
|
2011-03-18 09:46:22 +00:00
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
const ids = getLoadedArticleIds();
|
2011-03-18 09:46:22 +00:00
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
for (let i = 0; i < ids.length; i++) {
|
2017-03-04 11:34:44 +00:00
|
|
|
if (ids[i] == id) {
|
2018-11-29 17:07:23 +00:00
|
|
|
for (let k = 1; k <= limit; k++) {
|
2017-03-04 11:34:44 +00:00
|
|
|
//if (i > k-1) tmp.push(ids[i-k]);
|
|
|
|
if (i < ids.length - k) tmp.push(ids[i + k]);
|
2010-11-13 11:04:37 +00:00
|
|
|
}
|
2017-03-04 11:34:44 +00:00
|
|
|
break;
|
2010-11-13 11:04:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return tmp;
|
|
|
|
}
|
|
|
|
|
|
|
|
function correctHeadlinesOffset(id) {
|
2018-11-29 17:07:23 +00:00
|
|
|
const container = $("headlines-frame");
|
|
|
|
const row = $("RROW-" + id);
|
2012-09-04 08:10:42 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (!container || !row) return;
|
2011-03-18 09:46:22 +00:00
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
const viewport = container.offsetHeight;
|
2011-03-18 09:46:22 +00:00
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
const rel_offset_top = row.offsetTop - container.scrollTop;
|
|
|
|
const rel_offset_bottom = row.offsetTop + row.offsetHeight - container.scrollTop;
|
2010-11-13 11:04:37 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
//console.log("Rtop: " + rel_offset_top + " Rbtm: " + rel_offset_bottom);
|
|
|
|
//console.log("Vport: " + viewport);
|
2010-11-13 11:04:37 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
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;
|
2010-11-13 11:04:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-15 18:49:00 +00:00
|
|
|
function headlineActionsChange(elem) {
|
2017-03-04 11:34:44 +00:00
|
|
|
eval(elem.value);
|
|
|
|
elem.attr('value', 'false');
|
2010-11-15 18:49:00 +00:00
|
|
|
}
|
2010-11-16 11:43:43 +00:00
|
|
|
|
2018-11-30 22:03:01 +00:00
|
|
|
function cdmCollapseActive(event) {
|
|
|
|
const row = $("RROW-" + getActiveArticleId());
|
|
|
|
|
|
|
|
if (row) {
|
|
|
|
row.removeClassName("active");
|
|
|
|
const cb = dijit.getEnclosingWidget(row.select(".rchk")[0]);
|
|
|
|
|
|
|
|
if (cb && !row.hasClassName("Selected"))
|
|
|
|
cb.attr("checked", false);
|
|
|
|
|
|
|
|
setActiveArticleId(0);
|
|
|
|
|
|
|
|
if (event)
|
|
|
|
event.stopPropagation();
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-16 15:55:39 +00:00
|
|
|
function closeArticlePanel() {
|
2013-02-06 07:09:45 +00:00
|
|
|
if (dijit.byId("content-insert"))
|
|
|
|
dijit.byId("headlines-wrap-inner").removeChild(
|
|
|
|
dijit.byId("content-insert"));
|
2010-11-16 11:43:43 +00:00
|
|
|
}
|
2010-11-19 18:05:28 +00:00
|
|
|
|
2013-07-11 12:49:25 +00:00
|
|
|
function initFloatingMenu() {
|
2017-03-04 11:34:44 +00:00
|
|
|
if (!dijit.byId("floatingMenu")) {
|
2010-11-19 18:05:28 +00:00
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
const menu = new dijit.Menu({
|
2017-03-04 11:34:44 +00:00
|
|
|
id: "floatingMenu",
|
|
|
|
targetNodeIds: ["floatingTitle"]
|
|
|
|
});
|
2010-11-19 18:05:28 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
headlinesMenuCommon(menu);
|
2016-03-22 10:38:20 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
menu.startup();
|
2013-07-11 12:49:25 +00:00
|
|
|
}
|
|
|
|
}
|
2010-11-19 18:05:28 +00:00
|
|
|
|
2016-03-22 10:38:20 +00:00
|
|
|
function headlinesMenuCommon(menu) {
|
2013-03-21 19:29:06 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
menu.addChild(new dijit.MenuItem({
|
|
|
|
label: __("Open original article"),
|
|
|
|
onClick: function (event) {
|
|
|
|
openArticleInNewWindow(this.getParent().currentTarget.getAttribute("data-article-id"));
|
|
|
|
}
|
|
|
|
}));
|
2011-12-10 14:36:38 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
menu.addChild(new dijit.MenuItem({
|
|
|
|
label: __("Display article URL"),
|
|
|
|
onClick: function (event) {
|
|
|
|
displayArticleUrl(this.getParent().currentTarget.getAttribute("data-article-id"));
|
|
|
|
}
|
|
|
|
}));
|
2017-02-17 06:01:45 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
menu.addChild(new dijit.MenuSeparator());
|
2013-03-30 09:42:33 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
menu.addChild(new dijit.MenuItem({
|
|
|
|
label: __("Toggle unread"),
|
2018-11-29 18:03:55 +00:00
|
|
|
onClick: function () {
|
2013-03-30 09:42:33 +00:00
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
let ids = getSelectedArticleIds2();
|
2017-03-04 11:34:44 +00:00
|
|
|
// cast to string
|
2018-11-29 17:07:23 +00:00
|
|
|
const id = (this.getParent().currentTarget.getAttribute("data-article-id")) + "";
|
2018-11-29 18:03:55 +00:00
|
|
|
ids = ids.length != 0 && ids.indexOf(id) != -1 ? ids : [id];
|
2013-03-30 09:42:33 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
selectionToggleUnread(undefined, false, true, ids);
|
|
|
|
}
|
|
|
|
}));
|
2013-03-30 09:42:33 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
menu.addChild(new dijit.MenuItem({
|
|
|
|
label: __("Toggle starred"),
|
2018-11-29 18:03:55 +00:00
|
|
|
onClick: function () {
|
2018-11-29 17:07:23 +00:00
|
|
|
let ids = getSelectedArticleIds2();
|
2017-03-04 11:34:44 +00:00
|
|
|
// cast to string
|
2018-11-29 17:07:23 +00:00
|
|
|
const id = (this.getParent().currentTarget.getAttribute("data-article-id")) + "";
|
2018-11-29 18:03:55 +00:00
|
|
|
ids = ids.length != 0 && ids.indexOf(id) != -1 ? ids : [id];
|
2013-03-30 09:42:33 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
selectionToggleMarked(undefined, false, true, ids);
|
|
|
|
}
|
|
|
|
}));
|
2013-03-30 09:42:33 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
menu.addChild(new dijit.MenuItem({
|
|
|
|
label: __("Toggle published"),
|
2018-11-29 18:03:55 +00:00
|
|
|
onClick: function () {
|
2018-11-29 17:07:23 +00:00
|
|
|
let ids = getSelectedArticleIds2();
|
2017-03-04 11:34:44 +00:00
|
|
|
// cast to string
|
2018-11-29 17:07:23 +00:00
|
|
|
const id = (this.getParent().currentTarget.getAttribute("data-article-id")) + "";
|
2018-11-29 18:03:55 +00:00
|
|
|
ids = ids.length != 0 && ids.indexOf(id) != -1 ? ids : [id];
|
2013-03-30 09:42:33 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
selectionTogglePublished(undefined, false, true, ids);
|
|
|
|
}
|
|
|
|
}));
|
2011-12-10 14:36:38 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
menu.addChild(new dijit.MenuSeparator());
|
2011-12-10 14:36:38 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
menu.addChild(new dijit.MenuItem({
|
|
|
|
label: __("Mark above as read"),
|
2018-11-29 18:03:55 +00:00
|
|
|
onClick: function () {
|
2017-03-04 11:34:44 +00:00
|
|
|
catchupRelativeToArticle(0, this.getParent().currentTarget.getAttribute("data-article-id"));
|
|
|
|
}
|
|
|
|
}));
|
2011-03-07 12:24:49 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
menu.addChild(new dijit.MenuItem({
|
|
|
|
label: __("Mark below as read"),
|
2018-11-29 18:03:55 +00:00
|
|
|
onClick: function () {
|
2017-03-04 11:34:44 +00:00
|
|
|
catchupRelativeToArticle(1, this.getParent().currentTarget.getAttribute("data-article-id"));
|
|
|
|
}
|
|
|
|
}));
|
2010-11-19 19:18:26 +00:00
|
|
|
|
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
const labels = getInitParam("labels");
|
2010-11-19 19:18:26 +00:00
|
|
|
|
2017-08-01 23:15:16 +00:00
|
|
|
if (labels && labels.length) {
|
2010-11-19 19:18:26 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
menu.addChild(new dijit.MenuSeparator());
|
2010-11-19 19:18:26 +00:00
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
const labelAddMenu = new dijit.Menu({ownerMenu: menu});
|
|
|
|
const labelDelMenu = new dijit.Menu({ownerMenu: menu});
|
2010-11-19 19:18:26 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
labels.each(function (label) {
|
2018-11-29 17:07:23 +00:00
|
|
|
const bare_id = label.id;
|
|
|
|
const name = label.caption;
|
2012-08-23 19:59:46 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
labelAddMenu.addChild(new dijit.MenuItem({
|
|
|
|
label: name,
|
|
|
|
labelId: bare_id,
|
2018-11-29 18:03:55 +00:00
|
|
|
onClick: function () {
|
2012-08-23 19:59:46 +00:00
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
let ids = getSelectedArticleIds2();
|
2017-03-04 11:34:44 +00:00
|
|
|
// cast to string
|
2018-11-29 17:07:23 +00:00
|
|
|
const id = (this.getParent().ownerMenu.currentTarget.getAttribute("data-article-id")) + "";
|
2011-03-07 12:24:49 +00:00
|
|
|
|
2018-11-29 18:03:55 +00:00
|
|
|
ids = ids.length != 0 && ids.indexOf(id) != -1 ? ids : [id];
|
2012-08-23 19:59:46 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
selectionAssignLabel(this.labelId, ids);
|
|
|
|
}
|
|
|
|
}));
|
2012-08-23 19:59:46 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
labelDelMenu.addChild(new dijit.MenuItem({
|
|
|
|
label: name,
|
|
|
|
labelId: bare_id,
|
2018-11-29 18:03:55 +00:00
|
|
|
onClick: function () {
|
2018-11-29 17:07:23 +00:00
|
|
|
let ids = getSelectedArticleIds2();
|
2017-03-04 11:34:44 +00:00
|
|
|
// cast to string
|
2018-11-29 17:07:23 +00:00
|
|
|
const id = (this.getParent().ownerMenu.currentTarget.getAttribute("data-article-id")) + "";
|
2011-03-07 12:24:49 +00:00
|
|
|
|
2018-11-29 18:03:55 +00:00
|
|
|
ids = ids.length != 0 && ids.indexOf(id) != -1 ? ids : [id];
|
2010-11-19 19:18:26 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
selectionRemoveLabel(this.labelId, ids);
|
|
|
|
}
|
2011-03-07 12:24:49 +00:00
|
|
|
}));
|
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
});
|
2011-03-07 12:24:49 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
menu.addChild(new dijit.PopupMenuItem({
|
|
|
|
label: __("Assign label"),
|
|
|
|
popup: labelAddMenu
|
|
|
|
}));
|
2010-11-19 19:18:26 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
menu.addChild(new dijit.PopupMenuItem({
|
|
|
|
label: __("Remove label"),
|
|
|
|
popup: labelDelMenu
|
|
|
|
}));
|
2013-07-11 12:49:25 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-13 20:36:58 +00:00
|
|
|
function initHeadlinesMenu() {
|
2017-03-04 11:34:44 +00:00
|
|
|
if (!dijit.byId("headlinesMenu")) {
|
2013-10-17 09:38:48 +00:00
|
|
|
|
2018-11-29 18:03:55 +00:00
|
|
|
const menu = new dijit.Menu({
|
2017-03-04 11:34:44 +00:00
|
|
|
id: "headlinesMenu",
|
|
|
|
targetNodeIds: ["headlines-frame"],
|
|
|
|
selector: ".hlMenuAttach"
|
|
|
|
});
|
2013-10-17 09:38:48 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
headlinesMenuCommon(menu);
|
2013-10-17 09:38:48 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
menu.startup();
|
|
|
|
}
|
2013-10-17 09:38:48 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
/* vgroup feed title menu */
|
2013-10-17 09:38:48 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (!dijit.byId("headlinesFeedTitleMenu")) {
|
2017-01-22 16:20:23 +00:00
|
|
|
|
2018-11-29 18:03:55 +00:00
|
|
|
const menu = new dijit.Menu({
|
2017-03-04 11:34:44 +00:00
|
|
|
id: "headlinesFeedTitleMenu",
|
|
|
|
targetNodeIds: ["headlines-frame"],
|
|
|
|
selector: "div.cdmFeedTitle"
|
|
|
|
});
|
2017-01-22 16:20:23 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
menu.addChild(new dijit.MenuItem({
|
|
|
|
label: __("Select articles in group"),
|
|
|
|
onClick: function (event) {
|
|
|
|
selectArticles("all",
|
|
|
|
"#headlines-frame > div[id*=RROW]" +
|
|
|
|
"[data-orig-feed-id='" + this.getParent().currentTarget.getAttribute("data-feed-id") + "']");
|
2017-01-22 16:20:23 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
}
|
|
|
|
}));
|
2017-01-22 16:20:23 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
menu.addChild(new dijit.MenuItem({
|
|
|
|
label: __("Mark group as read"),
|
2018-11-29 18:03:55 +00:00
|
|
|
onClick: function () {
|
2017-03-04 11:34:44 +00:00
|
|
|
selectArticles("none");
|
|
|
|
selectArticles("all",
|
|
|
|
"#headlines-frame > div[id*=RROW]" +
|
|
|
|
"[data-orig-feed-id='" + this.getParent().currentTarget.getAttribute("data-feed-id") + "']");
|
2017-01-22 16:20:23 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
catchupSelection();
|
|
|
|
}
|
|
|
|
}));
|
2017-01-22 16:20:23 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
menu.addChild(new dijit.MenuItem({
|
|
|
|
label: __("Mark feed as read"),
|
2018-11-29 18:03:55 +00:00
|
|
|
onClick: function () {
|
2017-03-04 11:34:44 +00:00
|
|
|
catchupFeedInGroup(this.getParent().currentTarget.getAttribute("data-feed-id"));
|
|
|
|
}
|
|
|
|
}));
|
2017-02-13 20:36:58 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
menu.addChild(new dijit.MenuItem({
|
|
|
|
label: __("Edit feed"),
|
2018-11-29 18:03:55 +00:00
|
|
|
onClick: function () {
|
2017-03-04 11:34:44 +00:00
|
|
|
editFeed(this.getParent().currentTarget.getAttribute("data-feed-id"));
|
|
|
|
}
|
|
|
|
}));
|
2013-10-17 09:38:48 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
menu.startup();
|
2010-11-19 18:05:28 +00:00
|
|
|
}
|
|
|
|
}
|
2010-11-25 09:05:48 +00:00
|
|
|
|
2011-08-31 10:03:52 +00:00
|
|
|
function cache_set(id, obj) {
|
2011-08-31 11:25:42 +00:00
|
|
|
//console.log("cache_set: " + id);
|
2011-08-31 10:03:52 +00:00
|
|
|
if (has_storage)
|
|
|
|
try {
|
|
|
|
sessionStorage[id] = obj;
|
|
|
|
} catch (e) {
|
2011-09-13 01:39:32 +00:00
|
|
|
sessionStorage.clear();
|
2011-08-31 10:03:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function cache_get(id) {
|
|
|
|
if (has_storage)
|
|
|
|
return sessionStorage[id];
|
|
|
|
}
|
|
|
|
|
|
|
|
function cache_clear() {
|
|
|
|
if (has_storage)
|
|
|
|
sessionStorage.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
function cache_delete(id) {
|
|
|
|
if (has_storage)
|
|
|
|
sessionStorage.removeItem(id);
|
|
|
|
}
|
|
|
|
|
2012-10-30 06:24:30 +00:00
|
|
|
function cancelSearch() {
|
2017-03-04 11:34:44 +00:00
|
|
|
_search_query = "";
|
|
|
|
viewCurrentFeed();
|
2012-10-30 06:24:30 +00:00
|
|
|
}
|
2012-10-31 10:39:26 +00:00
|
|
|
|
2012-10-31 11:17:49 +00:00
|
|
|
function setSelectionScore() {
|
2018-11-29 17:07:23 +00:00
|
|
|
const ids = getSelectedArticleIds2();
|
2012-10-31 11:17:49 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (ids.length > 0) {
|
|
|
|
console.log(ids);
|
2012-10-31 11:17:49 +00:00
|
|
|
|
2018-11-29 18:03:55 +00:00
|
|
|
const score = prompt(__("Please enter new score for selected articles:"));
|
2012-10-31 11:17:49 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (score != undefined) {
|
2018-11-29 20:36:54 +00:00
|
|
|
const query = { op: "article", method: "setScore", id: ids.toString(),
|
|
|
|
score: score };
|
|
|
|
|
|
|
|
xhrJson("backend.php", query, (reply) => {
|
|
|
|
if (reply) {
|
2018-11-30 12:07:44 +00:00
|
|
|
reply.id.each((id) => {
|
|
|
|
const row = $("RROW-" + id);
|
|
|
|
|
|
|
|
if (row) {
|
2018-11-30 12:48:17 +00:00
|
|
|
const pic = row.getElementsByClassName("score-pic")[0];
|
2018-11-30 12:07:44 +00:00
|
|
|
|
|
|
|
if (pic) {
|
|
|
|
pic.src = pic.src.replace(/score_.*?\.png/,
|
|
|
|
reply["score_pic"]);
|
|
|
|
pic.setAttribute("score", reply["score"]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2017-03-04 11:34:44 +00:00
|
|
|
});
|
2012-10-31 11:17:49 +00:00
|
|
|
}
|
2017-03-04 11:34:44 +00:00
|
|
|
|
|
|
|
} else {
|
|
|
|
alert(__("No articles are selected."));
|
2012-10-31 11:17:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-31 10:39:26 +00:00
|
|
|
function changeScore(id, pic) {
|
2018-11-29 17:07:23 +00:00
|
|
|
const score = pic.getAttribute("score");
|
2012-10-31 10:39:26 +00:00
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
const new_score = prompt(__("Please enter new score for this article:"), score);
|
2012-10-31 10:39:26 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (new_score != undefined) {
|
2018-11-29 20:36:54 +00:00
|
|
|
const query = { op: "article", method: "setScore", id: id, score: new_score };
|
|
|
|
|
|
|
|
xhrJson("backend.php", query, (reply) => {
|
2018-11-30 12:07:44 +00:00
|
|
|
if (reply) {
|
|
|
|
pic.src = pic.src.replace(/score_.*?\.png/, reply["score_pic"]);
|
|
|
|
pic.setAttribute("score", new_score);
|
|
|
|
pic.setAttribute("title", new_score);
|
|
|
|
}
|
2017-03-04 11:34:44 +00:00
|
|
|
});
|
2012-10-31 10:39:26 +00:00
|
|
|
}
|
|
|
|
}
|
2013-03-21 19:29:06 +00:00
|
|
|
|
|
|
|
function displayArticleUrl(id) {
|
2018-11-29 20:36:54 +00:00
|
|
|
const query = { op: "rpc", method: "getlinktitlebyid", id: id };
|
2013-03-21 19:29:06 +00:00
|
|
|
|
2018-11-29 20:36:54 +00:00
|
|
|
xhrJson("backend.php", query, (reply) => {
|
2018-11-30 12:07:44 +00:00
|
|
|
if (reply && reply.link) {
|
|
|
|
prompt(__("Article URL:"), reply.link);
|
|
|
|
}
|
2017-03-04 11:34:44 +00:00
|
|
|
});
|
2018-11-29 20:36:54 +00:00
|
|
|
|
2013-03-21 19:29:06 +00:00
|
|
|
}
|
2013-03-27 05:40:07 +00:00
|
|
|
|
2018-11-30 21:11:52 +00:00
|
|
|
// floatingTitle goto button uses this
|
2013-07-10 18:11:24 +00:00
|
|
|
function scrollToRowId(id) {
|
2018-11-29 17:07:23 +00:00
|
|
|
const row = $(id);
|
2013-07-10 18:11:24 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (row)
|
|
|
|
$("headlines-frame").scrollTop = row.offsetTop - 4;
|
2013-07-10 18:11:24 +00:00
|
|
|
}
|
|
|
|
|
2013-07-16 05:59:14 +00:00
|
|
|
function updateFloatingTitle(unread_only) {
|
2018-11-30 22:03:01 +00:00
|
|
|
if (!isCdmMode() || !getInitParam("cdm_expanded")) return;
|
2013-06-05 18:19:33 +00:00
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
const hf = $("headlines-frame");
|
|
|
|
const elems = $$("#headlines-frame > div[id*=RROW]");
|
2013-06-28 04:30:35 +00:00
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
for (let i = 0; i < elems.length; i++) {
|
2013-06-24 21:35:07 +00:00
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
const child = elems[i];
|
2013-07-10 18:11:24 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (child && child.offsetTop + child.offsetHeight > hf.scrollTop) {
|
2013-07-10 18:11:24 +00:00
|
|
|
|
2018-11-30 21:11:52 +00:00
|
|
|
const header = child.select(".header")[0];
|
2016-03-22 20:43:32 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (unread_only || child.getAttribute("data-article-id") != $("floatingTitle").getAttribute("data-article-id")) {
|
|
|
|
if (child.getAttribute("data-article-id") != $("floatingTitle").getAttribute("data-article-id")) {
|
2013-07-10 18:11:24 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
$("floatingTitle").setAttribute("data-article-id", child.getAttribute("data-article-id"));
|
|
|
|
$("floatingTitle").innerHTML = header.innerHTML;
|
|
|
|
$("floatingTitle").firstChild.innerHTML = "<img class='anchor markedPic' src='images/page_white_go.png' onclick=\"scrollToRowId('" + child.id + "')\">" + $("floatingTitle").firstChild.innerHTML;
|
2013-07-11 12:49:25 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
initFloatingMenu();
|
2013-07-16 05:59:14 +00:00
|
|
|
|
2018-11-29 17:07:23 +00:00
|
|
|
const cb = $$("#floatingTitle .dijitCheckBox")[0];
|
2013-07-15 05:15:07 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (cb)
|
|
|
|
cb.parentNode.removeChild(cb);
|
2013-07-10 18:11:24 +00:00
|
|
|
}
|
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
if (child.hasClassName("Unread"))
|
|
|
|
$("floatingTitle").addClassName("Unread");
|
2013-07-10 18:11:24 +00:00
|
|
|
else
|
2017-03-04 11:34:44 +00:00
|
|
|
$("floatingTitle").removeClassName("Unread");
|
2013-07-10 18:11:24 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
PluginHost.run(PluginHost.HOOK_FLOATING_TITLE, child);
|
2013-07-10 18:11:24 +00:00
|
|
|
}
|
2013-06-24 21:35:07 +00:00
|
|
|
|
2017-03-04 11:34:44 +00:00
|
|
|
$("floatingTitle").style.marginRight = hf.offsetWidth - child.offsetWidth + "px";
|
|
|
|
if (header.offsetTop + header.offsetHeight < hf.scrollTop + $("floatingTitle").offsetHeight - 5 &&
|
|
|
|
child.offsetTop + child.offsetHeight >= hf.scrollTop + $("floatingTitle").offsetHeight - 5)
|
|
|
|
$("floatingTitle").style.visibility = "visible";
|
|
|
|
else
|
|
|
|
$("floatingTitle").style.visibility = "hidden";
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
}
|
2013-06-05 18:19:33 +00:00
|
|
|
}
|
|
|
|
}
|