]> git.wh0rd.org - tt-rss.git/blobdiff - tt-rss.js
big interface overhaul, new logo
[tt-rss.git] / tt-rss.js
index 422d14d0d47a5482e2c31e8b26ee581a7c961b7f..d8e9dc6a8b9ca1eec214d9d248b56fd4facb7ee9 100644 (file)
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -10,14 +10,7 @@ var xmlhttp_view = false;
 var total_unread = 0;
 var first_run = true;
 
-var active_post_id = false;
 var active_feed_id = false;
-var active_offset = false;
-
-var total_feed_entries = false;
-
-var _viewfeed_autoselect_first = false;
-var _viewfeed_autoselect_last = false;
 
 var search_query = "";
 
@@ -46,6 +39,7 @@ if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
        xmlhttp_view = new XMLHttpRequest();
 }
 
+/*
 function feedlist_callback() {
        var container = document.getElementById('feeds');
        if (xmlhttp.readyState == 4) {
@@ -53,81 +47,45 @@ function feedlist_callback() {
 
                if (first_run) {
                        scheduleFeedUpdate(false);
+                       if (getCookie("ttrss_vf_actfeed")) {
+                               viewfeed(getCookie("ttrss_vf_actfeed"), 0, "");
+                       }
                        first_run = false;
                } else {
                        notify("");
                } 
        } 
 }
+*/
 
-function viewfeed_callback() {
-       var container = document.getElementById('headlines');
-       if (xmlhttp.readyState == 4) {
-               container.innerHTML = xmlhttp.responseText;
-
-               var factive = document.getElementById("FACTIVE");
-               var funread = document.getElementById("FUNREAD");
-               var ftotal = document.getElementById("FTOTAL");
-
-               if (_viewfeed_autoselect_first == true) {
-                       _viewfeed_autoselect_first = false;
-                       view(getFirstVisibleHeadlineId(), active_feed_id);
-               }
-
-               if (_viewfeed_autoselect_last == true) {
-                       _viewfeed_autoselect_last = false;
-                       view(getLastVisibleHeadlineId(), active_feed_id);
-               }
-
-               if (ftotal && factive && funread) {
-                       var feed_id = factive.innerHTML;
-
-                       var feedr = document.getElementById("FEEDR-" + feed_id);
-                       var feedt = document.getElementById("FEEDT-" + feed_id);
-                       var feedu = document.getElementById("FEEDU-" + feed_id);
-
-                       feedt.innerHTML = ftotal.innerHTML;
-                       feedu.innerHTML = funread.innerHTML;
-
-                       total_feed_entries = ftotal.innerHTML;  
-
-                       if (feedu.innerHTML > 0 && !feedr.className.match("Unread")) {
-                                       feedr.className = feedr.className + "Unread";
-                       } else if (feedu.innerHTML <= 0) {      
-                                       feedr.className = feedr.className.replace("Unread", "");
-                       }
-
-                       cleanSelected("feedsList");
 
-                       feedr.className = feedr.className + "Selected";
-               }
+function refetch_callback() {
 
-               var searchbox = document.getElementById("searchbox");
-               searchbox.value = search_query;
+       if (xmlhttp_rpc.readyState == 4) {
+               notify("All feeds updated.");
 
-               markHeadline(active_post_id);
+               active_feed_id = frames["feeds-frame"].document.getElementById("ACTFEEDID").innerHTML;
+               
+               document.title = "Tiny Tiny RSS";
+               
+               updateFeedList();
+               
+       } 
+}
 
-               notify("");
 
-       }       
-}
+function updateFeed(feed_id) {
 
-function view_callback() {
-       var container = document.getElementById('content');
-       if (xmlhttp_view.readyState == 4) {
-               container.innerHTML=xmlhttp_view.responseText;          
-               markHeadline(active_post_id);
-       }
-}
+       var query_str = "backend.php?op=rpc&subop=updateFeed&feed=" + feed_id;
 
-function refetch_callback() {
+       if (xmlhttp_ready(xmlhttp_rpc)) {
+               xmlhttp_rpc.open("GET", query_str, true);
+               xmlhttp_rpc.onreadystatechange=feed_update_callback;
+               xmlhttp_rpc.send(null);
+       } else {
+               printLockingError();
+       }   
 
-       if (xmlhttp_rpc.readyState == 4) {
-               notify("All feeds updated");
-               var container = document.getElementById('feeds');
-               container.innerHTML = xmlhttp_rpc.responseText;
-               document.title = "Tiny Tiny RSS";
-       } 
 }
 
 function scheduleFeedUpdate(force) {
@@ -155,90 +113,48 @@ function scheduleFeedUpdate(force) {
 
 function updateFeedList(silent, fetch) {
 
-       if (silent != true) {
-               notify("Loading feed list...");
-       }
+//     if (silent != true) {
+//             notify("Loading feed list...");
+//     }
 
        var query_str = "backend.php?op=feeds";
 
-       if (fetch) query_str = query_str + "&fetch=yes";
-
-       if (xmlhttp_ready(xmlhttp)) {
-               xmlhttp.open("GET", query_str, true);
-               xmlhttp.onreadystatechange=feedlist_callback;
-               xmlhttp.send(null);
-       } else {
-               printLockingError();
+       if (active_feed_id) {
+               query_str = query_str + "&actid=" + active_feed_id;
        }
-}
-
-function catchupPage(feed) {
 
-       if (!xmlhttp_ready(xmlhttp)) {
-               printLockingError();
-               return
-       }
+       if (fetch) query_str = query_str + "&fetch=yes";
 
-       var content = document.getElementById("headlinesList");
+       var feeds_frame = document.getElementById("feeds-frame");
 
-       var rows = new Array();
+       feeds_frame.src = query_str;
+}
 
-       for (i = 0; i < content.rows.length; i++) {
-               var row_id = content.rows[i].id.replace("RROW-", "");
-               if (row_id.length > 0) {
-                       if (content.rows[i].className.match("Unread")) {
-                               rows.push(row_id);      
-                               content.rows[i].className = content.rows[i].className.replace("Unread", "");
-                       }
-               }
-       }
+function catchupAllFeeds() {
 
-       if (rows.length > 0) {
+       var query_str = "backend.php?op=feeds&subop=catchupAll";
 
-               var feedr = document.getElementById("FEEDR-" + feed);
-               var feedu = document.getElementById("FEEDU-" + feed);
-       
-               feedu.innerHTML = feedu.innerHTML - rows.length;
-       
-               if (feedu.innerHTML > 0 && !feedr.className.match("Unread")) {
-                               feedr.className = feedr.className + "Unread";
-               } else if (feedu.innerHTML <= 0) {      
-                               feedr.className = feedr.className.replace("Unread", "");
-               } 
+       notify("Marking all feeds as read...");
 
-               var query_str = "backend.php?op=rpc&subop=catchupPage&ids=" + 
-                       param_escape(rows.toString());
-       
-               notify("Marking this page as read...");
-       
-               xmlhttp.open("GET", query_str, true);
-               xmlhttp.onreadystatechange=notify_callback;
-               xmlhttp.send(null);
+       var feeds_frame = document.getElementById("feeds-frame");
 
-       } else {
-               notify("No unread items on this page.");
+       feeds_frame.src = query_str;
 
-       }
 }
 
-function catchupAllFeeds() {
+function viewCurrentFeed(skip, subop) {
 
-       if (!xmlhttp_ready(xmlhttp)) {
-               printLockingError();
-               return
-       }
-       var query_str = "backend.php?op=feeds&subop=catchupAll";
-
-       notify("Marking all feeds as read...");
-
-       xmlhttp.open("GET", query_str, true);
-       xmlhttp.onreadystatechange=feedlist_callback;
-       xmlhttp.send(null);
+       active_feed_id = frames["feeds-frame"].document.getElementById("ACTFEEDID").innerHTML;
 
+       if (active_feed_id) {
+               viewfeed(active_feed_id, skip, subop);
+       }
 }
 
 function viewfeed(feed, skip, subop) {
 
+       notify("Loading headlines...");
+
        enableHotkeys();
 
        var searchbox = document.getElementById("searchbox");
@@ -249,116 +165,95 @@ function viewfeed(feed, skip, subop) {
                search_query = "";
        } 
 
-/*     if (active_feed_id == feed && subop != "ForceUpdate") {
-               notify("This feed is currently selected.");
-               return;
-       } */
-
-       if (skip < 0 || skip > total_feed_entries) {
-               return;
-       }
-
-       if (!xmlhttp_ready(xmlhttp)) {
-               printLockingError();
-               return
-       }
-
-       if (active_feed_id != feed || skip != active_offset) {
-               active_post_id = false;
-       }
+       var viewbox = document.getElementById("viewbox");
 
-       active_feed_id = feed;
-       active_offset = skip;
+       var view_mode;
 
-       var query = "backend.php?op=viewfeed&feed=" + param_escape(feed) +
-               "&skip=" + param_escape(skip) + "&subop=" + param_escape(subop);
-
-       if (search_query != "") {
-               query = query + "&search=" + param_escape(search_query);
+       if (viewbox) {
+               view_mode = viewbox.value;
+       } else {
+               view_mode = "All Posts";
        }
-       
-       xmlhttp.open("GET", query, true);
-       xmlhttp.onreadystatechange=viewfeed_callback;
-       xmlhttp.send(null);
 
-       notify("Loading headlines...");
-
-}
-
-function markHeadline(id) {
-       var row = document.getElementById("RROW-" + id);
-       if (row) {
-               row.className = row.className + "Selected";
-       }
-}
+       setCookie("ttrss_vf_vmode", view_mode);
 
-function cleanSelected(element) {
-       var content = document.getElementById(element);
+       var limitbox = document.getElementById("limitbox");
 
-       var rows = new Array();
+       var limit;
 
-       for (i = 0; i < content.rows.length; i++) {
-               content.rows[i].className = content.rows[i].className.replace("Selected", "");
+       if (limitbox) {
+               limit = limitbox.value;
+               setCookie("ttrss_vf_limit", limit);
+       } else {
+               limit = "All";
        }
 
-}
+       active_feed_id = feed;
 
-function view(id,feed_id) {
+       var f_doc = frames["feeds-frame"].document;
 
-       enableHotkeys();
+       f_doc.getElementById("ACTFEEDID").innerHTML = feed;
 
-       if (!xmlhttp_ready(xmlhttp_view)) {
-               printLockingError();
-               return
-       }
+       setCookie("ttrss_vf_actfeed", feed);
 
-       var crow = document.getElementById("RROW-" + id);
+       if (subop == "MarkAllRead") {
 
-       if (crow.className.match("Unread")) {
-               var umark = document.getElementById("FEEDU-" + feed_id);
-               umark.innerHTML = umark.innerHTML - 1;
-               crow.className = crow.className.replace("Unread", "");
+               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 (umark.innerHTML == "0") {
-                       var feedr = document.getElementById("FEEDR-" + feed_id);
+               if (feedr.className.match("Unread")) {
                        feedr.className = feedr.className.replace("Unread", "");
                }
+       }
 
-               total_unread--;
-       }       
-
-       cleanSelected("headlinesList");
-//     crow.className = crow.className + "Selected";
-
-       var upd_img_pic = document.getElementById("FUPDPIC-" + id);
-
-       if (upd_img_pic) {
-               upd_img_pic.innerHTML = "";
-       } 
+       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;
 
-//     document.getElementById('content').innerHTML='Loading, please wait...';         
+       if (search_query != "") {
+               query = query + "&search=" + param_escape(search_query);
+       }
+       
+       var headlines_frame = parent.frames["headlines-frame"];
 
-       active_post_id = id;
+       headlines_frame.location.href = query + "&addheader=true";
 
-       xmlhttp_view.open("GET", "backend.php?op=view&id=" + param_escape(id), true);
-       xmlhttp_view.onreadystatechange=view_callback;
-       xmlhttp_view.send(null);
+       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);
 }
 
 function resetSearch() {
-       document.getElementById("searchbox").value = "";
-       viewfeed(active_feed_id, 0, "");
+       var searchbox = document.getElementById("searchbox")
+
+       if (searchbox.value != "" && active_feed_id) {  
+               searchbox.value = "";
+               viewfeed(active_feed_id, 0, "");
+       }
 }
 
-function search(feed) {
-       viewfeed(feed, 0, "");
+function search() {
+       if (active_feed_id) {
+               viewfeed(active_feed_id, 0, "");
+       } else {
+               notify("Please select some feed first.");
+       }
 }
 
 function localPiggieFunction(enable) {
@@ -374,89 +269,15 @@ function localPiggieFunction(enable) {
        }
 }
 
-function relativeid_callback() {
-
-       if (xmlhttp_rpc.readyState == 4) {
-               notify(xmlhttp_rpc.responseText);
-       }
-
-}
-
-function getVisibleHeadlineIds() {
-
-       var content = document.getElementById("headlinesList");
-
-       var rows = new Array();
-
-       for (i = 0; i < content.rows.length; i++) {
-               var row_id = content.rows[i].id.replace("RROW-", "");
-               if (row_id.length > 0) {
-                               rows.push(row_id);      
-               }
-       }
-       return rows;
-}
-
-function getFirstVisibleHeadlineId() {
-       var rows = getVisibleHeadlineIds();
-       return rows[0];
-}
-
-function getLastVisibleHeadlineId() {
-       var rows = getVisibleHeadlineIds();
-       return rows[rows.length-1];
-}
-
-function moveToPost(mode) {
-
-       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];                    
-                       }
-               }
-       }
-
-       var content = document.getElementById("headlinesList");
-
-       if (mode == "next") {
-               if (next_id != undefined) {
-                       view(next_id, active_feed_id);
-               } else {
-                       _viewfeed_autoselect_first = true;
-                       viewfeed(active_feed_id, active_offset+15);
-               }
-       }
-
-       if (mode == "prev") {
-               if ( prev_id != undefined) {
-                       view(prev_id, active_feed_id);
-               } else {
-                       _viewfeed_autoselect_last = true;
-                       viewfeed(active_feed_id, active_offset-15);
-               }
-       }
-
-}
-
 function localHotkeyHandler(keycode) {
 
-       if (keycode == 78) {
+/*     if (keycode == 78) {
                return moveToPost('next');
        }
 
        if (keycode == 80) {
                return moveToPost('prev');
-       }
+       } */
 
        if (keycode == 82) {
                return scheduleFeedUpdate(true);
@@ -470,9 +291,10 @@ function localHotkeyHandler(keycode) {
 
 }
 
-
 function init() {
 
+       disableContainerChildren("headlinesToolbar", true);
+
        // IE kludge
 
        if (xmlhttp && !xmlhttp_rpc) {
@@ -490,4 +312,20 @@ function init() {
        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");
+       }
 }
+
+