]> git.wh0rd.org - tt-rss.git/blobdiff - prefs.js
add sanity check & debug mode to prefs; misc code cleanups
[tt-rss.git] / prefs.js
index d7a616f37ff3d360891923d1a6eb51582408f2e5..eed755d5afd830d48a2fe8645bb8c22569738311 100644 (file)
--- a/prefs.js
+++ b/prefs.js
@@ -10,6 +10,8 @@ var piggie_fwd = true;
 
 var xmlhttp = Ajax.getTransport();
 
+var init_params = new Array();
+
 function expand_feed_callback() {
        if (xmlhttp.readyState == 4) {
                try {   
@@ -338,6 +340,8 @@ function editFilter(id) {
                return
        }
 
+       document.getElementById("create_filter_btn").disabled = true;
+
        selectTableRowsByIdPrefix('prefFilterList', 'FILRR-', 'FICHK-', false);
        selectTableRowById('FILRR-'+id, 'FICHK-'+id, true);
 
@@ -682,6 +686,8 @@ function labelEditCancel() {
 
 //     notify("Operation cancelled.");
 
+       closeInfoBox();
+
        xmlhttp.open("GET", "backend.php?op=pref-labels", true);
        xmlhttp.onreadystatechange=labellist_callback;
        xmlhttp.send(null);
@@ -705,6 +711,8 @@ function filterEditCancel() {
                printLockingError();
                return
        }
+
+       document.getElementById("create_filter_btn").disabled = false;
        
        selectPrefRows('filter', false); // cleanup feed selection
        closeInfoBox();
@@ -732,14 +740,15 @@ function labelEditSave() {
                return;
        }
 
+       closeInfoBox();
+
        notify("Saving label...");
 
        active_label = false;
 
        query = Form.serialize("label_edit_form");
 
-       xmlhttp.open("GET", "backend.php?" + query, true);
-               
+       xmlhttp.open("GET", "backend.php?" + query, true);              
        xmlhttp.onreadystatechange=labellist_callback;
        xmlhttp.send(null);
 
@@ -760,7 +769,9 @@ function userEditSave() {
        }
        
        notify("Saving user...");
-       
+
+       closeInfoBox();
+
        var query = Form.serialize("user_edit_form");
        
        xmlhttp.open("GET", "backend.php?" + query, true);                      
@@ -789,6 +800,8 @@ function filterEditSave() {
 
        closeInfoBox();
 
+       document.getElementById("create_filter_btn").disabled = false;
+
        xmlhttp.open("GET", "backend.php?" + query, true);
        xmlhttp.onreadystatechange=filterlist_callback;
        xmlhttp.send(null);
@@ -1146,9 +1159,69 @@ function selectTab(id, noupdate) {
                }
        }
 
+       if (active_tab != id) {
+               storeInitParam("prefs_active_tab", id);
+       }
+
        active_tab = id;
+}
+
+function backend_sanity_check_callback() {
+
+       if (xmlhttp.readyState == 4) {
+
+               try {
+               
+                       if (!xmlhttp.responseXML) {
+                               fatalError(3, "[D001, Received reply is not XML]: " + xmlhttp.responseText);
+                               return;
+                       }
+       
+                       var reply = xmlhttp.responseXML.firstChild.firstChild;
+       
+                       if (!reply) {
+                               fatalError(3, "[D002, Invalid RPC reply]: " + xmlhttp.responseText);
+                               return;
+                       }
+       
+                       var error_code = reply.getAttribute("error-code");
+               
+                       if (error_code && error_code != 0) {
+                               return fatalError(error_code, reply.getAttribute("error-msg"));
+                       }
+       
+                       debug("sanity check ok");
+
+                       var params = reply.nextSibling;
 
-       setCookie('ttrss_pref_acttab', active_tab);
+                       if (params) {
+                               debug('reading init-params...');
+                               var param = params.firstChild;
+
+                               while (param) {
+                                       var k = param.getAttribute("key");
+                                       var v = param.getAttribute("value");
+                                       debug(k + " => " + v);
+                                       init_params[k] = v;                                     
+                                       param = param.nextSibling;
+                               }
+                       }
+
+                       init_second_stage();
+
+               } catch (e) {
+                       exception_error("backend_sanity_check_callback", e);
+               }
+       } 
+}
+
+function init_second_stage() {
+
+       active_tab = getInitParam("prefs_active_tab");
+       if (!active_tab) active_tab = "genConfig";
+       selectTab(active_tab);
+       
+       notify("");
 
 }
 
@@ -1159,6 +1232,11 @@ function init() {
                if (arguments.callee.done) return;
                arguments.callee.done = true;           
 
+               if (getURLParam('debug')) {
+                       document.getElementById('debug_output').style.display = 'block';
+                       debug('debug mode activated');
+               }
+
                // IE kludge
                if (!xmlhttp) {
                        document.getElementById("prefContent").innerHTML = 
@@ -1167,12 +1245,10 @@ function init() {
                        return;
                }
 
-               active_tab = getCookie("ttrss_pref_acttab");
-               if (!active_tab) active_tab = "genConfig";
-               selectTab(active_tab);
-       
-               document.onkeydown = hotkey_handler;
-               notify("");
+               xmlhttp.open("GET", "backend.php?op=rpc&subop=sanityCheck", true);
+               xmlhttp.onreadystatechange=backend_sanity_check_callback;
+               xmlhttp.send(null);
+
        } catch (e) {
                exception_error("init", e);
        }