when trying to load a feed from collapsed category, show loading indicator in category title

This commit is contained in:
Andrew Dolgov 2010-11-11 15:29:46 +03:00
parent 3974aad874
commit 2ab31493c9
2 changed files with 34 additions and 11 deletions

View file

@ -287,10 +287,27 @@ function viewfeed(feed, subop, is_cat, subop_param, skip_history, offset) {
if (!is_cat && img) {
var cat_list = feedr.parentNode;
if (!cat_list || Element.visible(cat_list)) {
if (!img.src.match("indicator_white")) {
img.alt = img.src;
img.src = getInitParam("sign_progress");
}
} else if (cat_list) {
feed_cat_id = cat_list.id.replace("FCATLIST-", "");
if (!$('FLL-' + feed_cat_id)) {
var ll = document.createElement('img');
ll.src = getInitParam("sign_progress_tiny");
ll.className = 'hlLoading';
ll.id = 'FLL-' + feed;
$("FCAP-" + feed_cat_id).appendChild(ll);
}
}
} else {
@ -362,6 +379,14 @@ function toggleCollapseCat(cat) {
}
}
function isCatCollapsed(cat) {
try {
return Element.visible("FCATLIST-" + cat);
} catch (e) {
exception_error("isCatCollapsed", e);
}
}
function feedlist_dragsorted(ctr) {
try {
var elem = $("feedList");

View file

@ -77,21 +77,19 @@ function headlines_callback2(transport, feed_cur_page) {
var ll = $('FLL-' + feed_id);
if (ll && ll.parentNode)
ll.parentNode.removeChild(ll);
if (!is_cat) {
var feedr = $("FEEDR-" + feed_id);
if (feedr && !feedr.className.match("Selected")) {
feedr.className = feedr.className + "Selected";
}
if (feedr && ll) feedr.removeChild(ll);
} else {
var feedr = $("FCAT-" + feed_id);
if (feedr && !feedr.className.match("Selected")) {
feedr.className = feedr.className + "Selected";
}
var fcap = $("FCAP-" + feed_id);
if (fcap && ll) fcap.removeChild(ll);
}
var img = $('FIMG-' + feed_id);