1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-22 11:36:38 +02:00
ttrss/viewfeed.js

427 lines
9.6 KiB
JavaScript
Raw Normal View History

2005-09-05 14:41:59 +02:00
var active_post_id = false;
2006-09-29 06:55:07 +02:00
var _catchup_callback_func = false;
2006-11-23 06:26:49 +01:00
var last_article_view = false;
2006-09-29 06:55:07 +02:00
function catchup_callback() {
if (xmlhttp_rpc.readyState == 4) {
2006-09-29 06:57:07 +02:00
try {
debug("catchup_callback");
if (_catchup_callback_func) {
setTimeout(_catchup_callback_func, 100);
}
all_counters_callback();
} catch (e) {
exception_error("catchup_callback", e);
}
2006-09-29 06:55:07 +02:00
}
}
2006-09-28 14:00:03 +02:00
function headlines_callback() {
if (xmlhttp.readyState == 4) {
debug("headlines_callback");
var f = document.getElementById("headlines-frame");
try {
f.scrollTop = 0;
} catch (e) { };
2006-09-28 14:00:03 +02:00
f.innerHTML = xmlhttp.responseText;
update_all_counters();
2006-09-29 06:45:26 +02:00
if (typeof correctPNG != 'undefined') {
correctPNG();
}
notify("");
2006-09-28 14:00:03 +02:00
}
}
function article_callback() {
if (xmlhttp.readyState == 4) {
debug("article_callback");
var f = document.getElementById("content-frame");
try {
f.scrollTop = 0;
} catch (e) { };
2006-09-28 14:00:03 +02:00
f.innerHTML = xmlhttp.responseText;
2006-11-23 06:26:49 +01:00
var date = new Date();
last_article_view = date.getTime() / 1000;
2006-09-29 06:45:26 +02:00
if (typeof correctPNG != 'undefined') {
correctPNG();
}
2006-09-28 14:00:03 +02:00
update_all_counters();
}
}
function view(id, feed_id, skip_history) {
2006-05-23 08:55:26 +02:00
try {
debug("loading article: " + id + "/" + feed_id);
if (!skip_history) {
history_push("ARTICLE:" + id + ":" + feed_id);
}
2006-05-23 08:55:26 +02:00
enableHotkeys();
active_post_id = id;
2006-09-29 18:29:46 +02:00
//setActiveFeedId(feed_id);
2006-09-28 14:00:03 +02:00
var query = "backend.php?op=view&id=" + param_escape(id) +
"&feed=" + param_escape(feed_id);
2006-11-23 06:26:49 +01:00
var date = new Date();
if (!xmlhttp_ready(xmlhttp) && last_article_view < date.getTime() / 1000 - 15) {
debug("<b>xmlhttp seems to be stuck at view, aborting</b>");
xmlhttp.abort();
}
2006-09-28 14:00:03 +02:00
if (xmlhttp_ready(xmlhttp)) {
2006-11-23 06:26:49 +01:00
cleanSelected("headlinesList");
var crow = document.getElementById("RROW-" + active_post_id);
crow.className = crow.className.replace("Unread", "");
var upd_img_pic = document.getElementById("FUPDPIC-" + active_post_id);
if (upd_img_pic) {
upd_img_pic.src = "images/blank_icon.gif";
}
selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', false);
markHeadline(active_post_id);
2006-09-28 14:00:03 +02:00
xmlhttp.open("GET", query, true);
xmlhttp.onreadystatechange=article_callback;
xmlhttp.send(null);
} else {
debug("xmlhttp busy (@view)");
2006-11-19 10:51:40 +01:00
printLockingError();
2006-09-28 14:00:03 +02:00
}
2006-05-23 08:55:26 +02:00
} catch (e) {
exception_error("view", e);
}
}
function toggleMark(id) {
if (!xmlhttp_ready(xmlhttp_rpc)) {
printLockingError();
return;
}
var query = "backend.php?op=rpc&id=" + id + "&subop=mark";
2005-09-09 13:29:04 +02:00
var mark_img = document.getElementById("FMARKPIC-" + id);
2006-09-29 07:09:18 +02:00
var vfeedu = document.getElementById("FEEDU--1");
2005-09-09 13:29:04 +02:00
var crow = document.getElementById("RROW-" + id);
2005-09-08 08:31:16 +02:00
if (mark_img.alt != "Reset mark") {
mark_img.src = "images/mark_set.png";
mark_img.alt = "Reset mark";
query = query + "&mark=1";
2005-09-08 08:31:16 +02:00
2005-09-09 13:29:04 +02:00
if (vfeedu && crow.className.match("Unread")) {
vfeedu.innerHTML = (+vfeedu.innerHTML) + 1;
}
} else {
mark_img.src = "images/mark_unset.png";
mark_img.alt = "Set mark";
query = query + "&mark=0";
2005-09-08 08:31:16 +02:00
2005-09-09 13:29:04 +02:00
if (vfeedu && crow.className.match("Unread")) {
vfeedu.innerHTML = (+vfeedu.innerHTML) - 1;
}
2005-09-08 08:31:16 +02:00
}
2006-09-29 07:09:18 +02:00
var vfeedctr = document.getElementById("FEEDCTR--1");
var vfeedr = document.getElementById("FEEDR--1");
2005-09-08 08:31:16 +02:00
if (vfeedu && vfeedctr) {
if ((+vfeedu.innerHTML) > 0) {
2005-09-09 13:29:04 +02:00
if (crow.className.match("Unread") && !vfeedr.className.match("Unread")) {
vfeedr.className = vfeedr.className + "Unread";
2005-09-09 13:29:04 +02:00
vfeedctr.className = "odd";
}
2005-09-08 08:31:16 +02:00
} else {
vfeedctr.className = "invisible";
vfeedr.className = vfeedr.className.replace("Unread", "");
2005-09-08 08:31:16 +02:00
}
}
2006-05-23 08:35:27 +02:00
debug("toggle starred for aid " + id);
new Ajax.Request(query);
}
2005-09-05 14:41:59 +02:00
function moveToPost(mode) {
// check for combined mode
if (!document.getElementById("headlinesList"))
return;
2005-09-05 14:41:59 +02:00
var rows = getVisibleHeadlineIds();
var prev_id;
var next_id;
if (active_post_id == false) {
next_id = getFirstVisibleHeadlineId();
prev_id = getLastVisibleHeadlineId();
} else {
for (var i = 0; i < rows.length; i++) {
if (rows[i] == active_post_id) {
prev_id = rows[i-1];
next_id = rows[i+1];
}
}
}
if (mode == "next") {
if (next_id != undefined) {
view(next_id, getActiveFeedId());
2005-09-05 14:41:59 +02:00
}
}
if (mode == "prev") {
if ( prev_id != undefined) {
view(prev_id, getActiveFeedId());
2005-09-05 14:41:59 +02:00
}
}
}
function toggleUnread(id, cmode) {
try {
if (!xmlhttp_ready(xmlhttp_rpc)) {
printLockingError();
return;
}
var row = document.getElementById("RROW-" + id);
if (row) {
var nc = row.className;
nc = nc.replace("Unread", "");
nc = nc.replace("Selected", "");
if (row.className.match("Unread")) {
row.className = nc;
} else {
row.className = nc + "Unread";
}
if (!cmode) cmode = 2;
var query = "backend.php?op=rpc&subop=catchupSelected&ids=" +
param_escape(id) + "&cmode=" + param_escape(cmode);
xmlhttp_rpc.open("GET", query, true);
xmlhttp_rpc.onreadystatechange=all_counters_callback;
xmlhttp_rpc.send(null);
}
} catch (e) {
exception_error("toggleUnread", e);
}
}
2006-09-29 06:55:07 +02:00
function selectionToggleUnread(cdm_mode, set_state, callback_func) {
2005-11-27 15:56:10 +01:00
try {
if (!xmlhttp_ready(xmlhttp_rpc)) {
printLockingError();
return;
}
var rows;
if (cdm_mode) {
rows = cdmGetSelectedArticles();
} else {
rows = getSelectedTableRowIds("headlinesList", "RROW", "RCHK");
}
2005-11-27 15:56:10 +01:00
for (i = 0; i < rows.length; i++) {
var row = document.getElementById("RROW-" + rows[i]);
if (row) {
var nc = row.className;
nc = nc.replace("Unread", "");
nc = nc.replace("Selected", "");
if (row.className.match("Unread")) {
row.className = nc + "Selected";
} else {
row.className = nc + "UnreadSelected";
}
}
2005-11-27 15:56:10 +01:00
}
if (rows.length > 0) {
var cmode = "";
if (set_state == undefined) {
cmode = "2";
} else if (set_state == true) {
cmode = "1";
} else if (set_state == false) {
cmode = "0";
}
2005-11-27 15:56:10 +01:00
var query = "backend.php?op=rpc&subop=catchupSelected&ids=" +
param_escape(rows.toString()) + "&cmode=" + cmode;
2005-11-27 15:56:10 +01:00
2006-09-29 06:55:07 +02:00
_catchup_callback_func = callback_func;
2005-11-27 15:56:10 +01:00
xmlhttp_rpc.open("GET", query, true);
2006-09-29 06:55:07 +02:00
xmlhttp_rpc.onreadystatechange=catchup_callback;
2005-11-27 15:56:10 +01:00
xmlhttp_rpc.send(null);
}
} catch (e) {
2005-12-14 08:29:38 +01:00
exception_error("selectionToggleUnread", e);
2005-11-27 15:56:10 +01:00
}
}
function selectionToggleMarked(cdm_mode) {
2005-11-27 15:56:10 +01:00
try {
if (!xmlhttp_ready(xmlhttp_rpc)) {
printLockingError();
return;
}
var rows;
if (cdm_mode) {
rows = cdmGetSelectedArticles();
} else {
rows = getSelectedTableRowIds("headlinesList", "RROW", "RCHK");
}
2005-11-27 15:56:10 +01:00
for (i = 0; i < rows.length; i++) {
var row = document.getElementById("RROW-" + rows[i]);
var mark_img = document.getElementById("FMARKPIC-" + rows[i]);
if (row && mark_img) {
if (mark_img.alt == "Set mark") {
mark_img.src = "images/mark_set.png";
mark_img.alt = "Reset mark";
mark_img.setAttribute('onclick',
'javascript:toggleMark('+rows[i]+', false)');
} else {
mark_img.src = "images/mark_unset.png";
mark_img.alt = "Set mark";
mark_img.setAttribute('onclick',
'javascript:toggleMark('+rows[i]+', true)');
}
}
}
if (rows.length > 0) {
var query = "backend.php?op=rpc&subop=markSelected&ids=" +
param_escape(rows.toString()) + "&cmode=2";
xmlhttp_rpc.open("GET", query, true);
xmlhttp_rpc.onreadystatechange=all_counters_callback;
xmlhttp_rpc.send(null);
}
} catch (e) {
2005-12-14 08:29:38 +01:00
exception_error("selectionToggleMarked", e);
2005-11-27 15:56:10 +01:00
}
}
function cdmGetSelectedArticles() {
var sel_articles = new Array();
var container = document.getElementById("headlinesInnerContainer");
for (i = 0; i < container.childNodes.length; i++) {
var child = container.childNodes[i];
if (child.id.match("RROW-") && child.className.match("Selected")) {
var c_id = child.id.replace("RROW-", "");
sel_articles.push(c_id);
}
}
return sel_articles;
}
// mode = all,none,unread
function cdmSelectArticles(mode) {
var container = document.getElementById("headlinesInnerContainer");
for (i = 0; i < container.childNodes.length; i++) {
var child = container.childNodes[i];
if (child.id.match("RROW-")) {
2006-01-09 14:55:39 +01:00
var aid = child.id.replace("RROW-", "");
var cb = document.getElementById("RCHK-" + aid);
if (mode == "all") {
if (!child.className.match("Selected")) {
child.className = child.className + "Selected";
2006-01-09 14:55:39 +01:00
cb.checked = true;
}
} else if (mode == "unread") {
if (child.className.match("Unread") && !child.className.match("Selected")) {
child.className = child.className + "Selected";
2006-01-09 14:55:39 +01:00
cb.checked = true;
}
} else {
child.className = child.className.replace("Selected", "");
2006-01-09 14:55:39 +01:00
cb.checked = false;
}
}
}
}
function catchupPage() {
if (document.getElementById("headlinesList")) {
selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', true, 'Unread', true);
2006-09-29 06:55:07 +02:00
selectionToggleUnread(false, false, 'viewCurrentFeed()');
selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', false);
} else {
cdmSelectArticles('all');
2006-09-29 06:55:07 +02:00
selectionToggleUnread(true, false, 'viewCurrentFeed()')
cdmSelectArticles('none');
}
}
function labelFromSearch(search, search_mode, match_on, feed_id, is_cat) {
if (!xmlhttp_ready(xmlhttp_rpc)) {
printLockingError();
}
var title = prompt("Please enter label title:", "");
if (title) {
var query = "backend.php?op=labelFromSearch&search=" + param_escape(search) +
"&smode=" + param_escape(search_mode) + "&match=" + param_escape(match_on) +
"&feed=" + param_escape(feed_id) + "&is_cat=" + param_escape(is_cat) +
"&title=" + param_escape(title);
debug("LFS: " + query);
xmlhttp_rpc.open("GET", query, true);
2006-09-29 07:09:18 +02:00
xmlhttp_rpc.onreadystatechange=dlg_frefresh_callback;
xmlhttp_rpc.send(null);
}
}