Isolate Stemweb calls into own controller; guard against server being down. #29
[scpubgit/stemmaweb.git] / root / js / componentload.js
index 65f40b5..06a8706 100644 (file)
@@ -221,10 +221,40 @@ function loadSVG(svgData) {
                        }
                        var topoffset = theSVG.position().top - svgElement.position().top - browseroffset;
                        theSVG.offset({ top: svgoffset.top - topoffset, left: svgoffset.left });
+                       set_stemma_interactive( theSVG );
                }
        });
 }
 
+function set_stemma_interactive( svg_element ) {
+    $( "#root_tree_dialog_button_ok" ).click( function() {
+        // AJAX call goes here
+        } );
+    $.each( $( 'ellipse', svg_element ), function(index) {
+        var ellipse = $(this);
+        var g = ellipse.parent( 'g' );
+        g.click( function(evt) {
+            if( typeof root_tree_dialog_timeout !== 'undefined' ) { clearTimeout( root_tree_dialog_timeout ) };
+            g.unbind( 'mouseleave' );
+            var dialog = $( '#root_tree_dialog' );
+            dialog.hide();
+            dialog.css( 'top', evt.pageY + 3 );
+            dialog.css( 'left', evt.pageX + 3 );
+            dialog.show();
+            root_tree_dialog_timeout = setTimeout( function() {
+                $( '#root_tree_dialog' ).hide();
+                ellipse.removeClass( 'stemma_node_highlight' );
+                g.mouseleave( function() { ellipse.removeClass( 'stemma_node_highlight' ) } );
+            }, 3000 );
+        } );
+        g.mouseenter( function() { 
+            $( 'ellipse.stemma_node_highlight' ).removeClass( 'stemma_node_highlight' );
+            ellipse.addClass( 'stemma_node_highlight' ) 
+        } );
+        g.mouseleave( function() { ellipse.removeClass( 'stemma_node_highlight' ) } );
+    } );
+}
+
 // General-purpose error-handling function.
 // TODO make sure this gets used throughout, where appropriate.
 function display_error( jqXHR, el ) {
@@ -364,6 +394,9 @@ $(document).ready( function() {
        if( !!window.FileReader && !!window.File ) {
                $('#compatibility_check').empty();
        }
+
+    // hide dialog not yet in use
+    $('#root_tree_dialog').hide();
        
     // call out to load the directory div
     $('#textinfo_container').hide();
@@ -518,52 +551,58 @@ $(document).ready( function() {
                        // populate the form.
                        var algorithmTypes = {};
                        var algorithmArgs = {};
-                       $.each( stemwebAlgorithms, function( i, o ) {
-                               if( o.model === 'algorithms.algorithm' ) {
-                                       // it's an algorithm.
-                                       algorithmTypes[ o.pk ] = o.fields;
-                               } else if( o.model == 'algorithms.algorithmarg' && o.fields.external ) {
-                                       // it's an option for an algorithm that we should display.
-                                       algorithmArgs[ o.pk ] = o.fields;
-                               }
-                       });
-                       $.each( algorithmTypes, function( pk, fields ) {
-                               var algopt = $('<option>').attr( 'value', pk ).append( fields.name );
-                               $('#stemweb_algorithm').append( algopt );
-                       });
-                       // Set up the relevant options for whichever algorithm is chosen.
-                       // "key" -> form name, option ID "stemweb_$key_opt"
-                       // "name" -> form label
-                       $('#stemweb_algorithm').change( function() {
-                               var pk = $(this).val();
-                               $('#stemweb_runtime_options').empty();
-                               $.each( algorithmTypes[pk].args, function( i, apk ) {
-                                       var argInfo = algorithmArgs[apk];
-                                       if( argInfo ) {
-                                               // Make the element ID
-                                               var optId = 'stemweb_' + argInfo.key + '_opt';
-                                               // Make the label
-                                               var optLabel = $('<label>').attr( 'for', optId )
-                                                       .append( argInfo.name + ": " );
-                                               var optCtrl;
-                                               var argType = argInfo.value;
-                                               if( argType === 'positive_integer' ) {
-                                                       // Make it an input field of smallish size.
-                                                       optCtrl = $('<input>').attr( 'size', 4 );
-                                               } else if ( argType === 'boolean' ) {
-                                                       // Make it a checkbox.
-                                                       optCtrl = $('<checkbox>');
-                                               }
-                                               // Add the name and element ID
-                                               optCtrl.attr( 'name', argInfo.key ).attr( 'id', optId );
-                                               // Append the label and the option itself to the form.
-                                               $('#stemweb_runtime_options').append( optLabel )
-                                                       .append( optCtrl ).append( $('<br>') );
+                       var requrl = _get_url([ "stemweb", "available" ]);
+                       $.getJSON( requrl, function( data ) {
+                               $.each( data, function( i, o ) {
+                                       if( o.model === 'algorithms.algorithm' ) {
+                                               // it's an algorithm.
+                                               algorithmTypes[ o.pk ] = o.fields;
+                                       } else if( o.model == 'algorithms.algorithmarg' && o.fields.external ) {
+                                               // it's an option for an algorithm that we should display.
+                                               algorithmArgs[ o.pk ] = o.fields;
                                        }
                                });
+                               // TODO if it is an empty object, disable Stemweb entirely.
+                               if( !jQuery.isEmptyObject( algorithmTypes ) ) {
+                                       $.each( algorithmTypes, function( pk, fields ) {
+                                               var algopt = $('<option>').attr( 'value', pk ).append( fields.name );
+                                               $('#stemweb_algorithm').append( algopt );
+                                       });
+                                       // Set up the relevant options for whichever algorithm is chosen.
+                                       // "key" -> form name, option ID "stemweb_$key_opt"
+                                       // "name" -> form label
+                                       $('#stemweb_algorithm').change( function() {
+                                               var pk = $(this).val();
+                                               $('#stemweb_runtime_options').empty();
+                                               $.each( algorithmTypes[pk].args, function( i, apk ) {
+                                                       var argInfo = algorithmArgs[apk];
+                                                       if( argInfo ) {
+                                                               // Make the element ID
+                                                               var optId = 'stemweb_' + argInfo.key + '_opt';
+                                                               // Make the label
+                                                               var optLabel = $('<label>').attr( 'for', optId )
+                                                                       .append( argInfo.name + ": " );
+                                                               var optCtrl;
+                                                               var argType = argInfo.value;
+                                                               if( argType === 'positive_integer' ) {
+                                                                       // Make it an input field of smallish size.
+                                                                       optCtrl = $('<input>').attr( 'size', 4 );
+                                                               } else if ( argType === 'boolean' ) {
+                                                                       // Make it a checkbox.
+                                                                       optCtrl = $('<checkbox>');
+                                                               }
+                                                               // Add the name and element ID
+                                                               optCtrl.attr( 'name', argInfo.key ).attr( 'id', optId );
+                                                               // Append the label and the option itself to the form.
+                                                               $('#stemweb_runtime_options').append( optLabel )
+                                                                       .append( optCtrl ).append( $('<br>') );
+                                                       }
+                                               });
+                                       });
+                                       $('#stemweb_algorithm').change();
+                               }
                        });
                        // Prime the initial options
-                       $('#stemweb_algorithm').change();
                },
                open: function(evt) {
                        $('#stemweb_run_status').empty();