]> git.wh0rd.org - tt-rss.git/blobdiff - feedlist.js
use console.log for debugging; improve exception information
[tt-rss.git] / feedlist.js
index cd1d8b20ad942172b6f82a983d3899ddff901cbb..8860424b1947a863ceeca12a149a8a56f2abe30c 100644 (file)
@@ -30,44 +30,10 @@ function viewCategory(cat) {
        return false;
 }
 
-function printFeedEntry(id, title, row_class, unread, icon) {
-
-       var tmp = "";
-       var fctr_class = "";
-       var feed_icon = "";
-
-       if (unread > 0) {
-               row_class += "Unread";
-               fctr_class = "feedCtrHasUnread";
-       } else {
-               fctr_class = "feedCtrNoUnread";
-       }
-
-       if (icon) {
-               feed_icon = "<img id='FIMG-"+id+"' src='" + icon + "'>";
-       } else {
-               feed_icon = "<img id='FIMG-"+id+"' src='images/blank_icon.gif'>";
-       }
-
-       var link = "<a title=\"FIXME\" id=\"FEEDL-"+id+"\""+
-               "href=\"javascript:viewfeed('"+id+"', '', false, '', false, 0);\">"+
-               title + "</a>";
-
-       tmp += "<li id='FEEDR-"+id+"' class="+row_class+">" + feed_icon + 
-               "<span id=\"FEEDN-"+id+"\">" + link + "</span>";
-
-       tmp += " <span class='"+fctr_class+"' id=\"FEEDCTR-"+id+"\">" +
-           "(<span id=\"FEEDU-"+id+"\">"+unread+"</span>)</span>";
-                       
-       tmp += "</li>";
-
-       return tmp;
-}
-
 function render_feedlist(data) {
        try {
 
-               var f = document.getElementById("feeds-frame");
+               var f = $("feeds-frame");
                f.innerHTML = data;
 //             cache_invalidate("FEEDLIST");
 //             cache_inject("FEEDLIST", data, getInitParam("num_feeds"));
@@ -80,7 +46,7 @@ function render_feedlist(data) {
 
 function feedlist_callback2(transport) {
        try {
-               debug("feedlist_callback2");
+               console.log("feedlist_callback2");
                if (!transport_error_check(transport)) return;
                render_feedlist(transport.responseText);
        } catch (e) {
@@ -92,7 +58,7 @@ function viewNextFeedPage() {
        try {
                //if (!getActiveFeedId()) return;
 
-               debug("viewNextFeedPage: calling viewfeed(), p: " + parseInt(_feed_cur_page+1));
+               console.log("viewNextFeedPage: calling viewfeed(), p: " + parseInt(_feed_cur_page+1));
 
                viewfeed(getActiveFeedId(), undefined, activeFeedIsCat(), undefined,
                        undefined, parseInt(_feed_cur_page+1));
@@ -146,10 +112,10 @@ function viewfeed(feed, subop, is_cat, subop_param, skip_history, offset) {
                        var date = new Date();
                        var timestamp = Math.round(date.getTime() / 1000);
 
-                       debug("<b>" + _infscroll_request_sent + " : " + timestamp + "</b>");
+                       console.log("<b>" + _infscroll_request_sent + " : " + timestamp + "</b>");
 
                        if (_infscroll_request_sent && _infscroll_request_sent + 30 > timestamp) {
-                               debug("infscroll request in progress, aborting");
+                               console.log("infscroll request in progress, aborting");
                                return;
                        }
 
@@ -157,7 +123,7 @@ function viewfeed(feed, subop, is_cat, subop_param, skip_history, offset) {
                }
 
                enableHotkeys();
-
+               hideAuxDlg();
                closeInfoBox();
 
                Form.enable("main_toolbar_form");
@@ -172,27 +138,30 @@ function viewfeed(feed, subop, is_cat, subop_param, skip_history, offset) {
                        toolbar_form.query.value = "";
                }
 
-               var query = "backend.php?op=viewfeed&feed=" + feed + "&" +
+               var query = "?op=viewfeed&feed=" + feed + "&" +
                        toolbar_query + "&subop=" + param_escape(subop);
 
-               if (document.getElementById("search_form")) {
+               if ($("search_form")) {
                        var search_query = Form.serialize("search_form");
                        query = query + "&" + search_query;
+                       $("search_form").query.value = "";
                        closeInfoBox(true);
                        force_nocache = true;
                }
 
-//             debug("IS_CAT_STORED: " + activeFeedIsCat() + ", IS_CAT: " + is_cat);
+//             console.log("IS_CAT_STORED: " + activeFeedIsCat() + ", IS_CAT: " + is_cat);
 
                if (subop == "MarkAllRead") {
 
+                       catchup_local_feed(feed, is_cat);
+
                        var show_next_feed = getInitParam("on_catchup_show_next_feed") == "1";
 
                        if (show_next_feed) {
 
                                if (!activeFeedIsCat()) {
        
-                                       var feedlist = document.getElementById('feedList');
+                                       var feedlist = $('feedList');
                                
                                        var next_unread_feed = getRelativeFeedId(feedlist,
                                                        feed, "next", true);
@@ -237,11 +206,6 @@ function viewfeed(feed, subop, is_cat, subop_param, skip_history, offset) {
                        }
                }
 
-               var date = new Date();
-               var timestamp = Math.round(date.getTime() / 1000);
-               query = query + "&ts=" + timestamp
-               
-               disableContainerChildren("headlinesToolbar", false);
                Form.enable("main_toolbar_form");
 
                // for piggybacked counters
@@ -256,9 +220,9 @@ function viewfeed(feed, subop, is_cat, subop_param, skip_history, offset) {
                        query = query + "&csync=true";
                }
 
-               debug(query);
+               console.log(query);
 
-               var container = document.getElementById("headlinesInnerContainer");
+               var container = $("headlinesInnerContainer");
 
 /*             if (container && page_offset == 0 && !isCdmMode()) {
                        new Effect.Fade(container, {duration: 1, to: 0.01,
@@ -282,23 +246,23 @@ function viewfeed(feed, subop, is_cat, subop_param, skip_history, offset) {
                        }
 
                        cache_check = cache_check_param(cache_prefix + feed, unread_ctr);
-                       debug("headline cache check: " + cache_check);
+                       console.log("headline cache check: " + cache_check);
                }
 
                if (cache_check) {
-                       var f = document.getElementById("headlines-frame");
+                       var f = $("headlines-frame");
 
                        clean_feed_selections();
 
                        setActiveFeedId(feed, is_cat);
                
                        if (!is_cat) {
-                               var feedr = document.getElementById("FEEDR-" + feed);
+                               var feedr = $("FEEDR-" + feed);
                                if (feedr && !feedr.className.match("Selected")) {      
                                        feedr.className = feedr.className + "Selected";
                                } 
                        } else {
-                               var feedr = document.getElementById("FCAT-" + feed_id);
+                               var feedr = $("FCAT-" + feed_id);
                                if (feedr && !feedr.className.match("Selected")) {      
                                        feedr.className = feedr.className + "Selected";
                                } 
@@ -312,10 +276,42 @@ function viewfeed(feed, subop, is_cat, subop_param, skip_history, offset) {
                } else {
 
                        if (!page_offset) {
-                               notify_progress("Loading, please wait...", true);
+                               var feedr;
+
+                               if (is_cat) {
+                                       feedr = $('FCAP-' + feed);
+                               } else {
+                                       feedr = $('FEEDR-' + feed);
+                               }
+
+                               if (feedr && !$('FLL-' + feed)) {
+
+                                       var img = $('FIMG-' + feed);
+
+                                       if (!is_cat && img) {
+
+                                               if (!img.src.match("indicator_white")) {
+                                                       img.alt = img.src;
+                                                       img.src = getInitParam("sign_progress");
+                                               }
+
+                                       } else {
+
+                                               if (!$('FLL-' + feed)) {
+                                                       var ll = document.createElement('img');
+
+                                                       ll.src = getInitParam("sign_progress_tiny");
+                                                       ll.className = 'hlLoading';
+                                                       ll.id = 'FLL-' + feed;
+       
+                                                       feedr.appendChild(ll);
+                                               }
+                                       }
+                               }
                        }
 
-                       new Ajax.Request(query, {
+                       new Ajax.Request("backend.php", {
+                               parameters: query,
                                onComplete: function(transport) { 
                                        headlines_callback2(transport, page_offset); 
                                } });
@@ -333,7 +329,7 @@ function toggleCollapseCat_af(effect) {
 
                var elem = effect.element;
                var cat = elem.id.replace("FCATLIST-", "");
-               var cap = document.getElementById("FCAP-" + cat);
+               var cap = $("FCAP-" + cat);
 
                if (Element.visible(elem)) {
                        cap.innerHTML = cap.innerHTML.replace("…", "");
@@ -351,54 +347,18 @@ function toggleCollapseCat_af(effect) {
 function toggleCollapseCat(cat) {
        try {
        
-               var cat_elem = document.getElementById("FCAT-" + cat);
-               var cat_list = document.getElementById("FCATLIST-" + cat).parentNode;
-               var caption = document.getElementById("FCAP-" + cat);
+               var cat_elem = $("FCAT-" + cat);
+               var cat_list = $("FCATLIST-" + cat).parentNode;
+               var caption = $("FCAP-" + cat);
                
-/*             if (cat_list.className.match("invisible")) {
-                       cat_list.className = "";
-                       caption.innerHTML = caption.innerHTML.replace("...", "");
-                       if (cat == 0) {
-                               setCookie("ttrss_vf_uclps", "0");
-                       }
-               } else {
-                       cat_list.className = "invisible";
-                       caption.innerHTML = caption.innerHTML + "...";
-                       if (cat == 0) {
-                               setCookie("ttrss_vf_uclps", "1");
-                       } 
-
-               } */
-
-               if (cat == 0) {
-                       if (Element.visible("FCATLIST-" + cat)) {
-                               setCookie("ttrss_vf_uclps", "1");
-                       } else {
-                               setCookie("ttrss_vf_uclps", "0");
-                       }
-               } 
-
-               if (cat == -2) {
-                       if (Element.visible("FCATLIST-" + cat)) {
-                               setCookie("ttrss_vf_lclps", "1");
-                       } else {
-                               setCookie("ttrss_vf_lclps", "0");
-                       }
-               } 
-
-               if (cat == -1) {
-                       if (Element.visible("FCATLIST-" + cat)) {
-                               setCookie("ttrss_vf_vclps", "1");
-                       } else {
-                               setCookie("ttrss_vf_vclps", "0");
-                       }
-               } 
-
                Effect.toggle('FCATLIST-' + cat, 'blind', { duration: 0.5,
                        afterFinish: toggleCollapseCat_af });
 
-               new Ajax.Request("backend.php?op=feeds&subop=collapse&cid=" + 
-                       param_escape(cat));
+               new Ajax.Request("backend.php", 
+                       { parameters: "backend.php?op=feeds&subop=collapse&cid=" + 
+                               param_escape(cat) } );
+
+               local_collapse_cat(cat);
 
        } catch (e) {
                exception_error("toggleCollapseCat", e);
@@ -407,7 +367,7 @@ function toggleCollapseCat(cat) {
 
 function feedlist_dragsorted(ctr) {
        try {
-               var elem = document.getElementById("feedList");
+               var elem = $("feedList");
 
                var cats = elem.getElementsByTagName("LI");
                var ordered_cats = new Array();
@@ -420,12 +380,12 @@ function feedlist_dragsorted(ctr) {
 
                if (ordered_cats.length > 0) {
 
-                       var query = "backend.php?op=feeds&subop=catsort&corder=" + 
+                       var query = "?op=feeds&subop=catsort&corder=" + 
                                param_escape(ordered_cats.toString());
 
-                       debug(query);
+                       console.log(query);
 
-                       new Ajax.Request(query);
+                       new Ajax.Request("backend.php", { parameters: query });
                }
 
        } catch (e) {
@@ -435,12 +395,9 @@ function feedlist_dragsorted(ctr) {
 
 function feedlist_init() {
        try {
-//             if (arguments.callee.done) return;
-//             arguments.callee.done = true;           
-               
                loading_set_progress(90);
 
-               debug("in feedlist init");
+               console.log("in feedlist init");
                
                hideOrShowFeeds(getInitParam("hide_read_feeds") == 1);
                document.onkeydown = hotkey_handler;
@@ -450,12 +407,14 @@ function feedlist_init() {
 
                if (!offline_mode) setTimeout("timeout()", 1);
 
+               setTimeout("hotkey_prefix_timeout()", 5*1000);
+
                if (typeof correctPNG != 'undefined') {
                        correctPNG();
                }
 
                if (getActiveFeedId()) {
-                       //debug("some feed is open on feedlist refresh, reloading");
+                       //console.log("some feed is open on feedlist refresh, reloading");
                        //setTimeout("viewCurrentFeed()", 100);
                } else {
                        if (getInitParam("cdm_auto_catchup") != 1 && get_feed_unread(-3) > 0) {
@@ -466,7 +425,8 @@ function feedlist_init() {
                        }
                }
 
-               if (getInitParam("theme") == "") {
+               if (getInitParam("theme") == "" || 
+                               getInitParam("theme_options").match("hide_footer")) {
                        setTimeout("hide_footer()", 5000);
                }
 
@@ -481,19 +441,19 @@ function feedlist_init() {
 
 function hide_footer_af(effect) {
        try {
-               var c = document.getElementById("content-frame");
+               var c = $("content-frame");
 
                if (c) {
                        c.style.bottom = "0px";
 
-                       var ioa = document.getElementById("inline_orig_article");
+                       var ioa = $("inline_orig_article");
 
                        if (ioa) {
                                ioa.height = c.offsetHeight;
                        }
 
                } else {
-                       var h = document.getElementById("headlines-frame");
+                       var h = $("headlines-frame");
 
                        if (h) {
                                h.style.bottom = "0px";
@@ -515,56 +475,20 @@ function hide_footer() {
        }
 }
 
-/*
-function init_hidden_feedlist(theme) {
+function init_collapsable_feedlist() {
        try {
-               debug("init_hidden_feedlist");
+               console.log("init_collapsable_feedlist");
 
-               if (theme != "" && theme != "compact") return;
+               var theme = getInitParam("theme");
+               var options = getInitParam("theme_options");
 
-               var fl = document.getElementById("feeds-holder");
-               var fh = document.getElementById("headlines-frame");
-               var fc = document.getElementById("content-frame");
-               var ft = document.getElementById("toolbar");
-               var ff = document.getElementById("footer");
-               var fhdr = document.getElementById("header");
+               if (theme != "" && !options.match("collapse_feedlist")) return;
 
-               var fbtn = document.getElementById("toggle_feeds_btn");
+               var fbtn = $("collapse_feeds_btn");
 
                if (fbtn) Element.show(fbtn);
 
-               fl.style.top = fh.offsetTop + "px";
-               fl.style.backgroundColor = "white"; //FIXME
-
-               Element.hide(fl);
-               
-               fh.style.left = "0px";
-               ft.style.left = "0px";
-               if (fc) fc.style.left = "0px";
-               if (ff) ff.style.left = "0px";
-
-               if (theme == "compact") {
-                       fhdr.style.left = "10px";
-                       fl.style.top = (fh.offsetTop + 1) + "px";
-               }
-
-       } catch (e) {
-               exception_error("init_hidden_feedlist", e);
-       }
-} */
-
-function init_collapsable_feedlist(theme) {
-       try {
-               debug("init_collapsable_feedlist");
-
-               if (theme != "" && theme != "compact" && theme != "graycube" &&
-                               theme != "compat") return;
-
-               var fbtn = document.getElementById("collapse_feeds_btn");
-
-               if (fbtn) Element.show(fbtn);
-
-               if (getCookie("ttrss_vf_fclps") == 1) {
+               if (getInitParam("collapsed_feedlist") == 1) {
                        collapse_feedlist();
                }
 
@@ -617,7 +541,7 @@ function mouse_down_handler(e) {
        try {
 
                /* do not prevent right click */
-               if (e.button && e.button == 2) return;
+               if (e && e.button && e.button == 2) return;
 
                if (resize_enabled) { 
                        mouse_is_down = true;
@@ -633,7 +557,7 @@ function mouse_down_handler(e) {
                }
 
        } catch (e) {
-               exception_error("mouse_move_handler", e);
+               exception_error("mouse_down_handler", e);
        }
 }
 
@@ -643,12 +567,16 @@ function mouse_up_handler(e) {
 
                if (!selection_disabled) {
                        document.onselectstart = null;
-                       var e = document.getElementById("headlineActionsBody");
+                       var e = $("headlineActionsBody");
                        if (e) Element.hide(e);
+                       
+                       var e = $("offlineModeDrop");
+                       if (e) Element.hide(e);
+
                }
 
        } catch (e) {
-               exception_error("mouse_move_handler", e);
+               exception_error("mouse_up_handler", e);
        }
 }
 
@@ -658,9 +586,9 @@ function request_counters_real() {
 
                if (offline_mode) return;
 
-               debug("requesting counters...");
+               console.log("requesting counters...");
 
-               var query = "backend.php?op=rpc&subop=getAllCounters";
+               var query = "?op=rpc&subop=getAllCounters";
 
                if (tagsAreDisplayed()) {
                        query = query + "&omode=tl";
@@ -668,7 +596,8 @@ function request_counters_real() {
                        query = query + "&omode=flc";
                }
 
-               new Ajax.Request(query, {
+               new Ajax.Request("backend.php", {
+                       parameters: query,
                        onComplete: function(transport) { 
                                try {
                                        all_counters_callback2(transport, true);
@@ -696,11 +625,11 @@ function request_counters() {
 //                             timestamp - counters_last_request > 10) {
 
                if (timestamp - counters_last_request > 15) {
-                       debug("scheduling request of counters...");
+                       console.log("scheduling request of counters...");
                        window.setTimeout("request_counters_real()", 1000);
                        counters_last_request = timestamp;
                } else {
-                       debug("request_counters: rate limit reached: " + (timestamp - counters_last_request));
+                       console.log("request_counters: rate limit reached: " + (timestamp - counters_last_request));
                }
 
        } catch (e) {