X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=manifold%2Fjs%2Fmanifold.js;h=bae00c7c012a9e005bd5320b313a60eeef8e2083;hb=e256853ef256809864927b91deb42e713baea769;hp=c5779c1cacd3a5a88ccd67ae64bc86355e5500af;hpb=401546ae932e7f2d120ec210c13e2db1ce754cc7;p=myslice.git diff --git a/manifold/js/manifold.js b/manifold/js/manifold.js index c5779c1c..bae00c7c 100644 --- a/manifold/js/manifold.js +++ b/manifold/js/manifold.js @@ -25,6 +25,19 @@ function debug_query (msg, query) { */ var manifold = { + spin_presets: {}, + + spin: function(locator, active /*= true */) { + active = typeof active !== 'undefined' ? active : true; + try { + if (active) { + $(locator).spin(manifold.spin_presets); + } else { + $locator.spin(false); + } + } catch (err) { messages.debug("Cannot turn spins on/off " + err); } + }, + /*! * Associative array storing the set of queries active on the page * \memberof Manifold @@ -60,6 +73,17 @@ var manifold = { asynchroneous_debug : true, + /** + * \brief We use js function closure to be able to pass the query (array) + * to the callback function used when data is received + */ + success_closure: function(query, publish_uuid, callback /*domid*/) + { + return function(data, textStatus) { + manifold.asynchroneous_success(data, query, publish_uuid, callback /*domid*/); + } + }, + // Executes all async. queries // input queries are specified as a list of {'query_uuid': , 'id': } asynchroneous_exec : function (query_publish_dom_tuples) { @@ -69,13 +93,8 @@ var manifold = { try { if (manifold.asynchroneous_debug) messages.debug("Turning on spin with " + jQuery(".need-spin").length + " matches for .need-spin"); - jQuery('.need-spin').spin(spin_presets); + jQuery('.need-spin').spin(manifold.spin_presets); } catch (err) { messages.debug("Cannot turn on spins " + err); } - - // We use js function closure to be able to pass the query (array) to the - // callback function used when data is received - var success_closure = function(query, publish_uuid, domid) { - return function(data, textStatus) {manifold.asynchroneous_success(data, query, publish_uuid, domid);}}; // Loop through input array, and use publish_uuid to publish back results jQuery.each(query_publish_dom_tuples, function(index, tuple) { @@ -90,10 +109,21 @@ var manifold = { } // not quite sure what happens if we send a string directly, as POST data is named.. // this gets reconstructed on the proxy side with ManifoldQuery.fill_from_POST - jQuery.post(manifold.proxy_url, {'json':query_json} , success_closure(query, publish_uuid, tuple.domid)); + jQuery.post(manifold.proxy_url, {'json':query_json} , manifold.success_closure(query, publish_uuid, tuple.callback /*domid*/)); }) }, + /** + * \brief Forward a query to the manifold backend + * \param query (dict) the query to be executed asynchronously + * \param callback (function) the function to be called when the query terminates + * Deprecated: + * \param domid (string) the domid to be notified about the results (null for using the pub/sub system + */ + forward: function(query, callback /*domid*/) { + var query_json = JSON.stringify(query); + $.post(manifold.proxy_url, {'json': query_json} , manifold.success_closure(query, query.query_uuid, callback/*domid*/)); + }, /*! * Returns whether a query expects a unique results. @@ -119,7 +149,10 @@ var manifold = { publish_result: function(query, result) { /* Publish an update announce */ var channel="/results/" + query.query_uuid + "/changed"; - if (manifold.asynchroneous_debug) messages.debug("publishing result on " + channel); + if (manifold.asynchroneous_debug) + messages.debug("publishing result on " + channel); + if (typeof result === 'undefined') + result = []; jQuery.publish(channel, [result, query]); }, @@ -149,8 +182,12 @@ var manifold = { // most of the time publish_uuid will be query.query_uuid // however in some cases we wish to publish the result under a different uuid // e.g. an updater wants to publish its result as if from the original (get) query - asynchroneous_success : function (data, query, publish_uuid, domid) { + asynchroneous_success : function (data, query, publish_uuid, callback /*domid*/) { // xxx should have a nicer declaration of that enum in sync with the python code somehow + + /* If a callback has been specified, we redirect results to it */ + if (!!callback) { callback(data); return; } + if (data.code == 2) { // ERROR alert("Your session has expired, please log in again"); window.location="/logout/"; @@ -164,18 +201,20 @@ var manifold = { // once everything is checked we can use the 'value' part of the manifoldresult var result=data.value; if (result) { - if (!!domid) { - /* Directly inform the requestor */ - if (manifold.asynchroneous_debug) messages.debug("directing result to " + domid); - jQuery('#' + domid).trigger('results', [result]); - } else { + //if (!!callback /* domid */) { + // /* Directly inform the requestor */ + // if (manifold.asynchroneous_debug) messages.debug("directing result to callback"); + // callback(result); + // //if (manifold.asynchroneous_debug) messages.debug("directing result to " + domid); + // //jQuery('#' + domid).trigger('results', [result]); + //} else { /* XXX Jordan XXX I don't need publish_uuid here... What is it used for ? */ /* query is the query we sent to the backend; we need to find the * corresponding analyezd_query in manifold.all_queries */ tmp_query = manifold.find_query(query.query_uuid); manifold.publish_result_rec(tmp_query.analyzed_query, result); - } + //} } },