]> git.wh0rd.org - tt-rss.git/blobdiff - tt-rss.js
toggle hide/display only unread feeds, All feeds: button ops changed into selector
[tt-rss.git] / tt-rss.js
index 2cedbc0ebaa63714daf413990d8e39bfada4d12e..0fb61a117526bee3b22094a74f47dd70c8724d54 100644 (file)
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -5,6 +5,17 @@
 
 var xmlhttp = false;
 
+var total_unread = 0;
+var first_run = true;
+
+var search_query = "";
+var search_mode = "";
+
+var display_tags = false;
+//var display_read_feeds = true;
+
+var global_unread = 0;
+
 /*@cc_on @*/
 /*@if (@_jscript_version >= 5)
 // JScript gives us Conditional compilation, we can cope with old IE versions.
@@ -24,121 +35,532 @@ if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
        xmlhttp = new XMLHttpRequest();
 }
 
-function param_escape(arg) {
-       if (typeof encodeURIComponent != 'undefined')
-               return encodeURIComponent(arg); 
-       else
-               return escape(arg);
+function toggleTags() {
+       display_tags = !display_tags;
+
+       var p = document.getElementById("dispSwitchPrompt");
+
+       if (display_tags) {
+               p.innerHTML = "display feeds";
+       } else {
+               p.innerHTML = "display tags";
+       }
+       
+       updateFeedList();
+}
+
+function dlg_frefresh_callback() {
+       if (xmlhttp.readyState == 4) {
+               updateFeedList(false, false);
+               closeDlg();
+       } 
 }
 
-function param_unescape(arg) {
-       if (typeof decodeURIComponent != 'undefined')
-               return decodeURIComponent(arg); 
-       else
-               return unescape(arg);
+function dialog_refresh_callback() {
+       if (xmlhttp.readyState == 4) {
+               var dlg = document.getElementById("userDlg");
+
+               dlg.innerHTML = xmlhttp.responseText;
+               dlg.style.display = "block";
+       } 
 }
 
-function notify(msg) {
+function refetch_callback() {
+       if (xmlhttp.readyState == 4) {
+
+//             document.title = "Tiny Tiny RSS";
+
+               if (!xmlhttp.responseXML) {
+                       notify("refetch_callback: backend did not return valid XML");
+                       return;
+               }
+
+               var reply = xmlhttp.responseXML.firstChild;
+
+               if (!reply) {
+                       notify("refetch_callback: backend did not return expected XML object");
+                       return;
+               } 
 
-       var n = document.getElementById("notify");
+               var f_document = window.frames["feeds-frame"].document;
 
-       n.innerHTML = msg;
+               for (var l = 0; l < reply.childNodes.length; l++) {
+                       var id = reply.childNodes[l].getAttribute("id");
+                       var ctr = reply.childNodes[l].getAttribute("counter");
 
+                       var feedctr = f_document.getElementById("FEEDCTR-" + id);
+                       var feedu = f_document.getElementById("FEEDU-" + id);
+                       var feedr = f_document.getElementById("FEEDR-" + id);
+
+/*                     TODO figure out how to update this from viewfeed.js->view()
+                       disabled for now...
+
+                       if (id == "global-unread") {
+                               global_unread = ctr;
+                       } */
+
+                       if (feedctr && feedu && feedr) {
+
+                               feedu.innerHTML = ctr;
+       
+                               if (ctr > 0) {
+                                       feedctr.className = "odd";
+                                       if (!feedr.className.match("Unread")) {
+                                               feedr.className = feedr.className + "Unread";
+                                       }
+                               } else {
+                                       feedctr.className = "invisible";
+                                       feedr.className = feedr.className.replace("Unread", "");
+                               }
+                       }
+               }  
+
+               updateTitle("");
+               notify("All feeds updated.");
+
+       }
 }
 
-function feedlist_callback() {
-       var container = document.getElementById('feeds');
-       if (xmlhttp.readyState == 4) {
-               container.innerHTML=xmlhttp.responseText;
+function updateFeed(feed_id) {
+
+       var query_str = "backend.php?op=rpc&subop=updateFeed&feed=" + feed_id;
+
+       if (xmlhttp_ready(xmlhttp)) {
+               xmlhttp.open("GET", query_str, true);
+               xmlhttp.onreadystatechange=feed_update_callback;
+               xmlhttp.send(null);
+       } else {
+               printLockingError();
+       }   
+
+}
+
+function scheduleFeedUpdate(force) {
+
+       notify("Updating feeds in background...");
+
+//     document.title = "Tiny Tiny RSS - Updating...";
+
+       updateTitle("Updating...");
+
+       var query_str = "backend.php?op=rpc&subop=";
+
+       if (force) {
+               query_str = query_str + "forceUpdateAllFeeds";
+       } else {
+               query_str = query_str + "updateAllFeeds";
+       }
+
+       var omode;
+
+       if (display_tags) {
+               omode = "t";
+       } else {
+               omode = "fl";
        }
+
+       query_str = query_str + "&omode=" + omode;
+
+       if (xmlhttp_ready(xmlhttp)) {
+               xmlhttp.open("GET", query_str, true);
+               xmlhttp.onreadystatechange=refetch_callback;
+               xmlhttp.send(null);
+       } else {
+               printLockingError();
+       }   
 }
 
-function viewfeed_callback() {
-       var container = document.getElementById('headlines');
-       if (xmlhttp.readyState == 4) {
-               container.innerHTML = xmlhttp.responseText;
+function updateFeedList(silent, fetch) {
 
-               var factive = document.getElementById("FACTIVE");
-               var funread = document.getElementById("FUNREAD");
-               var ftotal = document.getElementById("FTOTAL");
+//     if (silent != true) {
+//             notify("Loading feed list...");
+//     }
 
-               if (ftotal && factive && funread) {
-                       var feed_id = factive.innerHTML;
+       var query_str = "backend.php?op=feeds";
 
-                       var feedr = document.getElementById("FEEDR-" + feed_id);
-                       var feedt = document.getElementById("FEEDT-" + feed_id);
-                       var feedu = document.getElementById("FEEDU-" + feed_id);
+       if (display_tags) {
+               query_str = query_str + "&tags=1";
+       }
 
-                       feedt.innerHTML = ftotal.innerHTML;
-                       feedu.innerHTML = funread.innerHTML;
+       if (getActiveFeedId()) {
+               query_str = query_str + "&actid=" + getActiveFeedId();
+       }
 
-                       if (feedu.innerHTML > 0 && !feedr.className.match("Unread")) {
-                                       feedr.className = feedr.className + "Unread";
-                       } else if (feedu.innerHTML <= 0) {      
-                                       feedr.className = feedr.className.replace("Unread", "");
-                       }
+       if (fetch) query_str = query_str + "&fetch=yes";
+
+       var feeds_frame = document.getElementById("feeds-frame");
+
+       feeds_frame.src = query_str;
+}
+
+function catchupAllFeeds() {
+
+       var query_str = "backend.php?op=feeds&subop=catchupAll";
+
+       notify("Marking all feeds as read...");
+
+       var feeds_frame = document.getElementById("feeds-frame");
+
+       feeds_frame.src = query_str;
+
+       global_unread = 0;
+       updateTitle();
+
+}
+
+function viewCurrentFeed(skip, subop) {
+
+       if (getActiveFeedId()) {
+               viewfeed(getActiveFeedId(), skip, subop);
+       } else {
+               disableContainerChildren("headlinesToolbar", false, document);
+               viewfeed(-1, skip, subop); // FIXME
+       }
+}
+
+function viewfeed(feed, skip, subop) {
+
+//     notify("Loading headlines...");
+
+       enableHotkeys();
+
+       var searchbox = document.getElementById("searchbox");
+
+       if (searchbox) {
+               search_query = searchbox.value;
+       } else {
+               search_query = "";
+       } 
+
+       var searchmodebox = document.getElementById("searchmodebox");
+
+       if (searchmodebox) {
+               search_mode = searchmodebox.value;
+       } else {
+               search_mode = "";
+       }
+
+       setCookie("ttrss_vf_smode", search_mode);
+
+       var viewbox = document.getElementById("viewbox");
+
+       var view_mode;
+
+       if (viewbox) {
+               view_mode = viewbox[viewbox.selectedIndex].text;
+       } else {
+               view_mode = "All Posts";
+       }
+
+       setCookie("ttrss_vf_vmode", view_mode);
+
+       var limitbox = document.getElementById("limitbox");
+
+       var limit;
+
+       if (limitbox) {
+               limit = limitbox[limitbox.selectedIndex].text;
+               setCookie("ttrss_vf_limit", limit);
+       } else {
+               limit = "All";
+       }
+
+       setActiveFeedId(feed);
 
+       var f_doc = frames["feeds-frame"].document;
+
+//     f_doc.getElementById("ACTFEEDID").innerHTML = feed;
+
+       if (subop == "MarkAllRead") {
+
+               var feedr = f_doc.getElementById("FEEDR-" + feed);
+               var feedctr = f_doc.getElementById("FEEDCTR-" + feed);
+               
+               feedctr.className = "invisible";
+
+               if (feedr.className.match("Unread")) {
+                       feedr.className = feedr.className.replace("Unread", "");
                }
        }
+
+       var query = "backend.php?op=viewfeed&feed=" + param_escape(feed) +
+               "&skip=" + param_escape(skip) + "&subop=" + param_escape(subop) +
+               "&view=" + param_escape(view_mode) + "&limit=" + limit + 
+               "&smode=" + param_escape(search_mode);
+
+       if (search_query != "") {
+               query = query + "&search=" + param_escape(search_query);
+       }
+       
+       var headlines_frame = parent.frames["headlines-frame"];
+
+       headlines_frame.location.href = query + "&addheader=true";
+
+       cleanSelected("feedsList");
+       var feedr = document.getElementById("FEEDR-" + feed);
+       if (feedr) {
+               feedr.className = feedr.className + "Selected";
+       }
+       
+       disableContainerChildren("headlinesToolbar", false, doc);
+
+       var btnMarkAsRead = document.getElementById("btnMarkFeedAsRead");
+
+       if (btnMarkAsRead && !isNumeric(feed)) {
+               btnMarkAsRead.disabled = true;
+               btnMarkAsRead.className = "disabledButton";
+       }
+
+//     notify("");
+
 }
 
-function view_callback() {
-       var container = document.getElementById('content');
-       if (xmlhttp.readyState == 4) {
-               container.innerHTML=xmlhttp.responseText;               
+
+function timeout() {
+       scheduleFeedUpdate(true);
+       setTimeout("timeout()", 1800*1000);
+}
+
+function resetSearch() {
+       var searchbox = document.getElementById("searchbox")
+
+       if (searchbox.value != "" && getActiveFeedId()) {       
+               searchbox.value = "";
+               viewfeed(getActiveFeedId(), 0, "");
        }
 }
 
+function search() {
+       viewCurrentFeed(0, "");
+}
 
-function update_feed_list() {
+function localPiggieFunction(enable) {
+       if (enable) {
+               var query_str = "backend.php?op=feeds&subop=piggie";
 
-       xmlhttp.open("GET", "backend.php?op=feeds", true);
-       xmlhttp.onreadystatechange=feedlist_callback;
-       xmlhttp.send(null);
+               if (xmlhttp_ready(xmlhttp)) {
 
+                       xmlhttp.open("GET", query_str, true);
+                       xmlhttp.onreadystatechange=feedlist_callback;
+                       xmlhttp.send(null);
+               }
+       }
 }
 
-function viewfeed(feed, skip, ext) {
+function localHotkeyHandler(keycode) {
+
+/*     if (keycode == 78) {
+               return moveToPost('next');
+       }
 
-       notify("view-feed: " + feed);
+       if (keycode == 80) {
+               return moveToPost('prev');
+       } */
 
-       document.getElementById('headlines').innerHTML='Loading headlines, please wait...';             
-       document.getElementById('content').innerHTML='&nbsp;';          
+       if (keycode == 82) {
+               return scheduleFeedUpdate(true);
+       }
 
-       xmlhttp.open("GET", "backend.php?op=viewfeed&feed=" + param_escape(feed) +
-               "&skip=" + param_escape(skip) + "&ext=" + param_escape(ext) , true);
-       xmlhttp.onreadystatechange=viewfeed_callback;
-       xmlhttp.send(null);
+       if (keycode == 85) {
+               return viewfeed(getActiveFeedId(), 0, "ForceUpdate");
+       }
+
+//     notify("KC: " + keycode);
+
+}
+
+function updateTitle(s) {
+       var tmp = "Tiny Tiny RSS";
+       
+       if (global_unread > 0) {
+               tmp = tmp + " (" + global_unread + ")";
+       }
 
+       if (s) {
+               tmp = tmp + " - " + s;
+       }
+       document.title = tmp;
 }
 
-function view(id,feed_id) {
+function genericSanityCheck() {
+
+       if (!xmlhttp) {
+               document.getElementById("headlines").innerHTML = 
+                       "<b>Fatal error:</b> This program requires XmlHttpRequest " + 
+                       "to function properly. Your browser doesn't seem to support it.";
+               return false;
+       }
 
-       var crow = document.getElementById("RROW-" + id);
+       setCookie("ttrss_vf_test", "TEST");
+       if (getCookie("ttrss_vf_test") != "TEST") {
 
-       if (crow.className.match("Unread")) {
-               var umark = document.getElementById("FEEDU-" + feed_id);
-               umark.innerHTML = umark.innerHTML - 1;
-               crow.className = crow.className.replace("Unread", "");
+               document.getElementById("headlines").innerHTML = 
+                       "<b>Fatal error:</b> This program requires cookies " + 
+                       "to function properly. Your browser doesn't seem to support them.";
 
-               if (umark.innerHTML == "0") {
-                       var feedr = document.getElementById("FEEDR-" + feed_id);
-                       feedr.className = feedr.className.replace("Unread", "");
+               return false;
+       }
+
+       return true;
+}
+
+function init() {
+
+       disableContainerChildren("headlinesToolbar", true);
+
+       if (!genericSanityCheck()) 
+               return;
+
+       setCookie("ttrss_vf_actfeed", "");
+
+       updateFeedList(false, false);
+       document.onkeydown = hotkey_handler;
+
+       setTimeout("timeout()", 1800*1000);
+       scheduleFeedUpdate(true);
+
+       var content = document.getElementById("content");
+
+       if (getCookie("ttrss_vf_vmode")) {
+               var viewbox = document.getElementById("viewbox");
+               viewbox.value = getCookie("ttrss_vf_vmode");
+       }
+
+       if (getCookie("ttrss_vf_limit")) {
+               var limitbox = document.getElementById("limitbox");
+               limitbox.value = getCookie("ttrss_vf_limit");
+       }
+
+//     if (getCookie("ttrss_vf_actfeed")) {
+//             viewfeed(getCookie("ttrss_vf_actfeed"), 0, '');
+//     }
+
+}
+
+function quickMenuGo() {
+       var chooser = document.getElementById("quickMenuChooser");
+
+       var opname = chooser[chooser.selectedIndex].text;
+
+       if (opname == "Preferences") {
+               gotoPreferences();
+       }
+
+       if (opname == "Extended search") {
+               displayDlg("search");
+               return;
+       }
+
+       if (opname.match("Add new feed")) {
+               displayDlg("quickAddFeed");
+               return;
+       }
+
+       if (opname.match("Remove this feed")) {
+               var actid = getActiveFeedId();
+
+               if (!actid) {
+                       notify("Please select some feed first.");
+                       return;
                }
+       
+               displayDlg("quickDelFeed", actid);
+               return;
        }
+}
+
+function qafAdd() {
+
+       if (!xmlhttp_ready(xmlhttp)) {
+               printLockingError();
+               return
+       }
+
+       var link = document.getElementById("qafInput");
+
+       if (link.value.length == 0) {
+               notify("Missing feed URL.");
+       } else {
+               notify("Adding feed...");
+               
+               var feeds_doc = window.frames["feeds-frame"].document;
+
+               feeds_doc.location.href = "backend.php?op=error&msg=Loading,%20please wait...";
+
+               xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=add&link=" +
+                       param_escape(link.value), true);
+               xmlhttp.onreadystatechange=dlg_frefresh_callback;
+               xmlhttp.send(null);
+
+               link.value = "";
+
+       }
+}
+
+function displayDlg(id, param) {
 
-       document.getElementById('content').innerHTML='Loading, please wait...';         
+       notify("");
 
-       xmlhttp.open("GET", "backend.php?op=view&id=" + param_escape(id), true);
-       xmlhttp.onreadystatechange=view_callback;
+       xmlhttp.open("GET", "backend.php?op=dlg&id=" +
+               param_escape(id) + "&param=" + param_escape(param), true);
+       xmlhttp.onreadystatechange=dialog_refresh_callback;
        xmlhttp.send(null);
 
 }
 
-function init() {
+function closeDlg() {
+       var dlg = document.getElementById("userDlg");
+       dlg.style.display = "none";
+}
+
+function qfdDelete(feed_id) {
+
+       notify("Removing feed...");
+
+       var feeds_doc = window.frames["feeds-frame"].document;
+       feeds_doc.location.href = "backend.php?op=error&msg=Loading,%20please wait...";
+
+       xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=remove&ids=" + feed_id);
+       xmlhttp.onreadystatechange=dlg_frefresh_callback;
+       xmlhttp.send(null);
+}
+
 
-       notify("init");
+function allFeedsMenuGo() {
+       var chooser = document.getElementById("allFeedsChooser");
+
+       var opname = chooser[chooser.selectedIndex].text;
+
+       if (opname == "Update") {
+               scheduleFeedUpdate(true);
+               return;
+       }
 
-       update_feed_list();
+       if (opname == "Mark as read") {
+               catchupAllFeeds();
+               return;
+       }
+
+       if (opname == "Toggle display read") {
+               toggleDispRead();
+               return;
+       }
+
+}
+
+function toggleDispRead() {
+       var hide_read_feeds = (getCookie("ttrss_vf_hreadf") == 1);
+
+       hide_read_feeds = !hide_read_feeds;
+
+       var feeds_doc = window.frames["feeds-frame"].document;
+
+       hideOrShowFeeds(feeds_doc, hide_read_feeds);
+
+       if (hide_read_feeds) {
+               setCookie("ttrss_vf_hreadf", 1);
+       } else {
+               setCookie("ttrss_vf_hreadf", 0);
+       }
 
 }