account for as-yet-uncalculated locations in stexaminer
[scpubgit/stemmaweb.git] / root / js / stexaminer.js
CommitLineData
b8a92065 1var colors = ['#ffeeaa','#afc6e9','#d5fff6','#ffccaa','#ffaaaa','#e5ff80','#e5d5ff','#ffd5e5'];
2var row_triggered = false;
be8bf746 3var original_svg;
4
5function handle_row_click( row ) {
6 var ridx = row.parent().parent().index()
7 var rs = readingstats[ridx];
8 var imghtml = '<img src="../images/ajax-loader.gif" alt="Loading SVG..."/>'
9 $('#stemma_graph').empty();
10 $('#stemma_graph').append( imghtml );
11 if( rs.layerwits ) {
12 var stemma_form = { 'dot': graphdot, 'layerwits': rs.layerwits };
13 $('#stemma_graph').load( 'graphsvg', stemma_form, function() {
14 color_row( row );
15 show_stats( rs );
16 });
17 } else {
18 $('#stemma_graph').empty();
19 $('#stemma_graph').append( original_svg );
20 color_row( row );
21 show_stats( rs );
22 }
23}
d5514865 24
25function color_row( row ) {
b8a92065 26 row_triggered = true;
f007ac1e 27 $('ellipse').attr( {stroke:'white', fill:'#fff'} );
b8a92065 28 $('.node').children('polygon').attr( {stroke:'#fff', fill:'#fff'} );
29 $('.node').children('text').attr( {stroke:'none', fill:'#000'} );
30 $('tr.active_variant_row').children('td').removeClass('cellb0 cellb1 cellb2 cellb3 cellb4 cellb5 cellb6 cellb7');
d5514865 31 row.parent().nextAll('.clickable').children('span').click();
b8a92065 32 $('td.active_variant_cell').removeClass('active_variant_cell');
33 row_triggered = false;
d5514865 34}
35
b8a92065 36function color_nodes( column_index, arr_node_ids, arr_greynode_ids ) {
37 if( !row_triggered ) {
38 $('tr.active_variant_row').children('td').removeClass('cellb0 cellb1 cellb2 cellb3 cellb4 cellb5 cellb6 cellb7');
39 $('td.active_variant_cell').removeClass('active_variant_cell');
f007ac1e 40 $('ellipse').attr( {stroke:'white', fill:'#fff'} );
b8a92065 41 $('.node').children('polygon').attr( {stroke:'#fff', fill:'#fff'} );
42 $('.node').children('text').attr( {stroke:'none', fill:'#000'} );
43 };
44 $('tr.active_variant_row').removeClass('active_variant_row')
45 jQuery.each( arr_greynode_ids, function(index,value) {
46 nodes = $('.node').children('title').filter( function(index) {
47 return $(this).text() == value;
48 })
49 nodes.siblings('ellipse, polygon, text').each( function( index ) {
50 $(this).attr( {stroke:'#ddd', fill:'#f8f8f8'} );
51 });
52 });
53 jQuery.each( arr_node_ids, function(index,value) {
54 $('.node').children('title').filter( function(index) {
55 return $(this).text() == value;
56 }).siblings('ellipse').each( function( index ) {
57 $(this).attr( {stroke:'black', fill:colors[column_index-1]} );
58 });
59 });
60}
ef3db56f 61
be8bf746 62function show_stats( rs ) {
ef3db56f 63 var rshtml = $('#stats_template').clone();
64 rshtml.find('#statrank').append( rs.id );
d35db27a 65 if( "unsolved" in rs ) {
66 rshtml.find('.solutionstatus').append(
67 "(Not yet calculated for this location - please try later)");
68 } else {
69 $.each( rs.readings, function( idx, rdghash ) {
70 var rdgstats = $('#reading_template').clone();
71 rdgstats.find('.readinglabel').append( rdghash.text );
72 rdgstats.find('.reading_copied').append( rdghash.followed );
73 rdgstats.find('.reading_changed').append( rdghash.not_followed );
74 rdgstats.find('.reading_unclear').append( rdghash.follow_unknown );
75 rdgstats.find('.readingroots').append( rdghash.independent_occurrence );
76 if( rdghash.is_reverted ) {
77 rdgstats.find('.reversionroots').append( rdghash.reversions );
78 } else {
79 rdgstats.find('.readingreversions').empty();
80 }
81 var rdgsourcehtml = fill_parent_template( rdghash, 'source' );
82 var rdgreverthtml = fill_parent_template( rdghash, 'reversion' );
83 rdgstats.find('.reading_statistics').append( rdgsourcehtml );
84 rdgstats.find('.reading_statistics').append( rdgreverthtml );
85 // If neither, append a small spacer
86 if( !rdgsourcehtml && !rdgreverthtml ) {
87 rdgstats.find('.reading_statistics').append( '<br/>' );
88 }
89 rshtml.append( rdgstats.contents() );
90 });
91 }
ef3db56f 92 $('#row_statistics').empty();
93 $('#row_statistics').append( rshtml.contents() );
f7371955 94
ef3db56f 95};
be8bf746 96
f7371955 97function fill_parent_template( rdghash, type ) {
98 var objname = type + '_parents';
99 var template_id = '#reading_' + type + '_template';
100 var list_class = '.reading_' + type + '_list';
101 if( ! $.isEmptyObject( rdghash[objname] ) ) {
102 var parentstats = $( template_id ).clone();
103 $.each( rdghash[objname], function( parentid, pdata ) {
104 var parentdesc = pdata.label;
105 if( pdata.relation ) {
106 parentdesc += ' - variant type ' + pdata.relation.type;
107 if( pdata.relation.annotation ) {
108 parentdesc += ' [ ' + pdata.relation.annotation + ' ]';
109 }
110 } else {
111 parentdesc += ' - no syntactic relation';
112 }
113 var parentitem = $('<li>').append( parentdesc );
114 parentstats.find( list_class ).append( parentitem );
115 });
116 return( parentstats.contents() );
117 }
118}
119
be8bf746 120// Save the original unextended SVG for when we need it.
121$(document).ready(function () {
122 original_svg = $('#stemma_graph > svg').clone();
2fd8f80c 123
124 $('#aboutlink').popupWindow({
125 height:500,
126 width:800,
127 top:50,
128 left:50,
129 scrollbars:1
130 });
131 $('#options').dialog({
132 autoOpen: false,
133 height: 200,
134 width: 300,
135 modal: true,
136 buttons: {
137 Cancel: function() {
138 $(this).dialog( "close" );
139 },
140 Reanalyze: function() {
141 $('#use_variants_form').submit();
142 },
143 }
144 });
145
be8bf746 146});