]> git.wh0rd.org - tt-rss.git/blobdiff - tt-rss.js
big interface overhaul, new logo
[tt-rss.git] / tt-rss.js
index aeaac22cce562ab5a1bf27279359f8178ac7ac8c..d8e9dc6a8b9ca1eec214d9d248b56fd4facb7ee9 100644 (file)
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -4,6 +4,15 @@
 */
 
 var xmlhttp = false;
+var xmlhttp_rpc = false;
+var xmlhttp_view = false;
+
+var total_unread = 0;
+var first_run = true;
+
+var active_feed_id = false;
+
+var search_query = "";
 
 /*@cc_on @*/
 /*@if (@_jscript_version >= 5)
@@ -14,160 +23,309 @@ try {
 } catch (e) {
        try {
                xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
+               xmlhttp_rpc = new ActiveXObject("Microsoft.XMLHTTP");
+               xmlhttp_view = new ActiveXObject("Microsoft.XMLHTTP");
        } catch (E) {
                xmlhttp = false;
+               xmlhttp_rpc = false;
+               xmlhttp_view = false;
        }
 }
 @end @*/
 
 if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
        xmlhttp = new XMLHttpRequest();
+       xmlhttp_rpc = new XMLHttpRequest();
+       xmlhttp_view = new XMLHttpRequest();
 }
 
-function param_escape(arg) {
-       if (typeof encodeURIComponent != 'undefined')
-               return encodeURIComponent(arg); 
-       else
-               return escape(arg);
+/*
+function feedlist_callback() {
+       var container = document.getElementById('feeds');
+       if (xmlhttp.readyState == 4) {
+               container.innerHTML=xmlhttp.responseText;
+
+               if (first_run) {
+                       scheduleFeedUpdate(false);
+                       if (getCookie("ttrss_vf_actfeed")) {
+                               viewfeed(getCookie("ttrss_vf_actfeed"), 0, "");
+                       }
+                       first_run = false;
+               } else {
+                       notify("");
+               } 
+       } 
 }
+*/
 
-function param_unescape(arg) {
-       if (typeof decodeURIComponent != 'undefined')
-               return decodeURIComponent(arg); 
-       else
-               return unescape(arg);
+
+function refetch_callback() {
+
+       if (xmlhttp_rpc.readyState == 4) {
+               notify("All feeds updated.");
+
+               active_feed_id = frames["feeds-frame"].document.getElementById("ACTFEEDID").innerHTML;
+               
+               document.title = "Tiny Tiny RSS";
+               
+               updateFeedList();
+               
+       } 
 }
 
-function notify(msg) {
 
-       var n = document.getElementById("notify");
+function updateFeed(feed_id) {
 
-       n.innerHTML = msg;
+       var query_str = "backend.php?op=rpc&subop=updateFeed&feed=" + feed_id;
+
+       if (xmlhttp_ready(xmlhttp_rpc)) {
+               xmlhttp_rpc.open("GET", query_str, true);
+               xmlhttp_rpc.onreadystatechange=feed_update_callback;
+               xmlhttp_rpc.send(null);
+       } else {
+               printLockingError();
+       }   
 
 }
 
-function feedlist_callback() {
-       var container = document.getElementById('feeds');
-       if (xmlhttp.readyState == 4) {
-               container.innerHTML=xmlhttp.responseText;
+function scheduleFeedUpdate(force) {
+
+       notify("Updating feeds in background...");
+
+       document.title = "Tiny Tiny RSS - Updating...";
+
+       var query_str = "backend.php?op=rpc&subop=";
+
+       if (force) {
+               query_str = query_str + "forceUpdateAllFeeds";
+       } else {
+               query_str = query_str + "updateAllFeeds";
        }
+
+       if (xmlhttp_ready(xmlhttp_rpc)) {
+               xmlhttp_rpc.open("GET", query_str, true);
+               xmlhttp_rpc.onreadystatechange=refetch_callback;
+               xmlhttp_rpc.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 (active_feed_id) {
+               query_str = query_str + "&actid=" + active_feed_id;
+       }
 
-                       feedt.innerHTML = ftotal.innerHTML;
-                       feedu.innerHTML = funread.innerHTML;
+       if (fetch) query_str = query_str + "&fetch=yes";
 
-                       if (feedu.innerHTML > 0 && !feedr.className.match("Unread")) {
-                                       feedr.className = feedr.className + "Unread";
-                       } else if (feedu.innerHTML <= 0) {      
-                                       feedr.className = feedr.className.replace("Unread", "");
-                       }
+       var feeds_frame = document.getElementById("feeds-frame");
 
-               }
-       }
+       feeds_frame.src = query_str;
 }
 
-function view_callback() {
-       var container = document.getElementById('content');
-       if (xmlhttp.readyState == 4) {
-               container.innerHTML=xmlhttp.responseText;               
-       }
+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;
+
 }
 
+function viewCurrentFeed(skip, subop) {
 
-function update_feed_list(called_from_timer) {
+       active_feed_id = frames["feeds-frame"].document.getElementById("ACTFEEDID").innerHTML;
 
-       if (called_from_timer != true) {
-               document.getElementById("feeds").innerHTML = "Updating feeds, please wait...";
+       if (active_feed_id) {
+               viewfeed(active_feed_id, skip, subop);
        }
+}
 
-       xmlhttp.open("GET", "backend.php?op=feeds", true);
-       xmlhttp.onreadystatechange=feedlist_callback;
-       xmlhttp.send(null);
+function viewfeed(feed, skip, subop) {
 
+       notify("Loading headlines...");
 
-}
+       enableHotkeys();
 
-function viewfeed(feed, skip, ext) {
+       var searchbox = document.getElementById("searchbox");
 
-       notify("view-feed: " + feed);
+       if (searchbox) {
+               search_query = searchbox.value;
+       } else {
+               search_query = "";
+       } 
 
-       document.getElementById('headlines').innerHTML='Loading headlines, please wait...';             
-       document.getElementById('content').innerHTML='&nbsp;';          
+       var viewbox = document.getElementById("viewbox");
 
-       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);
+       var view_mode;
 
-}
+       if (viewbox) {
+               view_mode = viewbox.value;
+       } else {
+               view_mode = "All Posts";
+       }
+
+       setCookie("ttrss_vf_vmode", view_mode);
 
-function view(id,feed_id) {
+       var limitbox = document.getElementById("limitbox");
 
-       var crow = document.getElementById("RROW-" + id);
+       var limit;
 
-       if (crow.className.match("Unread")) {
-               var umark = document.getElementById("FEEDU-" + feed_id);
-               umark.innerHTML = umark.innerHTML - 1;
-               crow.className = crow.className.replace("Unread", "");
+       if (limitbox) {
+               limit = limitbox.value;
+               setCookie("ttrss_vf_limit", limit);
+       } else {
+               limit = "All";
+       }
+
+       active_feed_id = feed;
+
+       var f_doc = frames["feeds-frame"].document;
+
+       f_doc.getElementById("ACTFEEDID").innerHTML = feed;
+
+       setCookie("ttrss_vf_actfeed", feed);
+
+       if (subop == "MarkAllRead") {
 
-               if (umark.innerHTML == "0") {
-                       var feedr = document.getElementById("FEEDR-" + feed_id);
+               var feedr = f_doc.getElementById("FEEDR-" + feed);
+               var feedt = f_doc.getElementById("FEEDT-" + feed);
+               var feedu = f_doc.getElementById("FEEDU-" + feed);
+               
+               feedu.innerHTML = "0";
+
+               if (feedr.className.match("Unread")) {
                        feedr.className = feedr.className.replace("Unread", "");
                }
        }
 
-       document.getElementById('content').innerHTML='Loading, please wait...';         
+       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;
+
+       if (search_query != "") {
+               query = query + "&search=" + param_escape(search_query);
+       }
+       
+       var headlines_frame = parent.frames["headlines-frame"];
 
-       xmlhttp.open("GET", "backend.php?op=view&id=" + param_escape(id), true);
-       xmlhttp.onreadystatechange=view_callback;
-       xmlhttp.send(null);
+       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);
+
+//     notify("");
 
 }
 
+
 function timeout() {
+       scheduleFeedUpdate(true);
+       setTimeout("timeout()", 1800*1000);
+}
 
-       update_feed_list(true);
+function resetSearch() {
+       var searchbox = document.getElementById("searchbox")
 
-       setTimeout("timeout()", 1800*1000);
+       if (searchbox.value != "" && active_feed_id) {  
+               searchbox.value = "";
+               viewfeed(active_feed_id, 0, "");
+       }
+}
 
+function search() {
+       if (active_feed_id) {
+               viewfeed(active_feed_id, 0, "");
+       } else {
+               notify("Please select some feed first.");
+       }
 }
 
-function search(feed, sender) {
+function localPiggieFunction(enable) {
+       if (enable) {
+               var query_str = "backend.php?op=feeds&subop=piggie";
 
-       notify("Search: " + feed + ", " + sender.value)
+               if (xmlhttp_ready(xmlhttp)) {
 
-       document.getElementById('headlines').innerHTML='Loading headlines, please wait...';             
-       document.getElementById('content').innerHTML='&nbsp;';          
+                       xmlhttp.open("GET", query_str, true);
+                       xmlhttp.onreadystatechange=feedlist_callback;
+                       xmlhttp.send(null);
+               }
+       }
+}
+
+function localHotkeyHandler(keycode) {
+
+/*     if (keycode == 78) {
+               return moveToPost('next');
+       }
+
+       if (keycode == 80) {
+               return moveToPost('prev');
+       } */
 
-       xmlhttp.open("GET", "backend.php?op=viewfeed&feed=" + param_escape(feed) +
-               "&search=" + param_escape(sender.value) + "&ext=SEARCH", true);
-       xmlhttp.onreadystatechange=viewfeed_callback;
-       xmlhttp.send(null);
+       if (keycode == 82) {
+               return scheduleFeedUpdate(true);
+       }
+
+       if (keycode == 85) {
+               return viewfeed(active_feed_id, active_offset, "ForceUpdate");
+       }
+
+//     notify("KC: " + keycode);
 
 }
 
 function init() {
 
-       notify("init");
+       disableContainerChildren("headlinesToolbar", true);
+
+       // IE kludge
 
-       update_feed_list();
+       if (xmlhttp && !xmlhttp_rpc) {
+               xmlhttp_rpc = xmlhttp;
+               xmlhttp_view = xmlhttp;
+       }
+
+       if (!xmlhttp || !xmlhttp_rpc || !xmlhttp_view) {
+               document.getElementById("headlines").innerHTML = 
+                       "<b>Fatal error:</b> This program needs XmlHttpRequest " + 
+                       "to function properly. Your browser doesn't seem to support it.";
+               return;
+       }
 
+       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");
+       }
 }
+
+