Jump to content

User:Jts1882/taxonomybrowser.js

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Jts1882 (talk | contribs) at 15:32, 18 February 2019 (move rank and same as from debug option). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
//importScript('User:Jts1882/taxonomybrowser.js');

var nLevels = 3;  // this determines how many levels are show in each iteration
var nListLevels = 3;
var nInteractiveLevels = 1;
var debug = false;
var nRun = 1;

/**
 * This script adds a tool and dialog using code modified from the following tutorial script
 * 
 * Tutorial script: QuickRC ("Quick Recent Changes")
 *
 * A tutorial user script which adds a "Quick changelog" link to the page skin's
 * toolbox, and when clicked it pops up a dialog with up to 25 recent edits.
 *
 * Demonstrates:
 * - Use of the API
 * - Use of jQuery
 * - Use of ResourceLoader and some of the default modules that come with it
 * - Use of localization
 *
 * (Be bold and improve it!)
 *
 * Authors:
 * Erik Moeller, 2011, public domain
 * Brion Vibber, 2012, public domain
 */

messages = {
    'en': {
        'taxonomy-title': 'Taxonomy template browser',
        'taxonomy-greeting': 'Welcome, $1!',
        'taxonomy-intro': 'The following templates are children of this taxon taxonomy template:',
        'taxonomy-link': 'Taxonomy list',
        'taxonomy-link2': 'Taxonomy browser',
        'taxonomy-tooltip': 'Get children for particular taxonomy template'
    }
};

mw.messages.set(messages.en);
var lang = mw.config.get('wgUserLanguage');
if (lang && lang != 'en' && lang in messages) {
    mw.messages.set(messages[lang]);
}

// Import the jQuery dialog plugin before starting the rest of this script
mw.loader.using(['jquery.ui.dialog'], function() {

    function renderTaxonomyDialog( output ) {
		var $dialog = $( '<div></div>' )
			.html(
				'<strong>' +
				mw.message('taxonomy-greeting', mw.user.getName()).escaped() +
				'</strong> ' +
				mw.message('taxonomy-intro').escaped() +
				output
			)
			.dialog({
				autoOpen: true,
				title: mw.message('taxonomy-title').plain(),
				width: '50%',
				modal: true
			});
	}

	//------------------------------------ the list function ---------------------------
    function getTreeList(taxon) {
 
        cleanUpAfterPreviousRuns();
		var level = nListLevels;
		
        //taxon = prompt("Enter the parent taxon:", getDefaultTaxonName(taxon));
		taxon = getTaxonName(taxon);   // prompt for taxon name
		level =nLevels;         // can be changed in getTaxonName

        // top level taxon with empty ul tags
		var output= '<ul class="taxon_identifier" ><li>' + taxon + '<ul id="' + encodeID(taxon) + '-ul"></ul></li></ul>';
		
		
		addChildrenList(taxon, level );  // get data jQuery's AJAX functions
		renderTaxonomyDialog( output );  // open dialog
        nRun += 1;
    }
    
     // get data jQuery's AJAX functions and create hierarchy tree
    function addChildrenList(taxon, level, callbackfunction) {
       if (level > 0) {
       	    level -= 1;
	 		jQuery.getJSON(
				mw.util.wikiScript( 'api' ),
				{
					'format': 'json',
					'action': 'query',
					'list': 'search',
					'srlimit' : 500,
					'srnamespace' :10,
					'srsearch' : 'insource:"parent[ ]+=[ ]+' + taxon + '" prefix:Template:Taxonomy/'
	
				},
				function( data ) {
	                var output = "";// an empty element with ID exists "<ul><br/>"
	                var nResults = data.query.searchinfo.totalhits;
                    if (nResults === 0) {
                    	//	alert ("zero hits: " + taxon);
                    	output = ' [no children]'; // "zero hits: " + taxon;
                    }
                    else {
						$.each ( data.query.search , function( index , sr ) {
		                     var child =  sr.title.replace("Template:Taxonomy/", "");
	                         var extraInfo = extraText(index , sr);
	                         var rank = getRank(index , sr);
	                         var name = child;
	                         if (rank == "genus") name = '<i>' + child + '</i>';
		                     // href="/wiki/Template:Taxonomy/Machairodontinae">
		                     output += '<li><a href="/wiki/' + sr.title + '">' + name + '</a>'	;
		                     if (debug) output += extraInfo;
		                     //            + ' <button class="childbutton" id="' + child + '">+</button>'
		                     output += '<ul id="' + encodeID(child) + '-ul"></ul>'
		                                + '</li>' ;
		                     addChildrenList(child, level );
	                     
		                     
						} ) ;
                    }
	                // insert children taxa
	                if (nResults > 0) {
	                	$('#'+encodeID(taxon)+'-ul').html(output);  
	                }  else {
	                	$('#'+encodeID(taxon)+'-ul').parent().append(' [no children]'); 
	                	//$('#'+encodeID(taxon)+'-ul').parent().append(output); 
	                	$('#'+encodeID(taxon)+'-ul').remove(); 
	                }
				}
			);        
    	}
    	
    }
    
    // ----------------------------- utlity functions -------------------------------
    function escapeSeq(taxon) {
    	// Special Regex Characters: ., +, *, ?, ^, $, (, ), [, ], {, }, |
    	// Only these four characters require escape sequence inside the bracket list: ^, -, ], \.
    	taxon = taxon.replace(" ("," \\("); 
    	taxon = taxon.replace(")","\\)");
    	taxon = taxon.replace("?","\\?");
    	taxon = taxon.replace("/","\\/");
    	return taxon;
    }
    function encodeID(taxon) {
    	taxon = taxon.replace("/","_X_");
    	taxon = taxon.replace("(","_Y_");
    	taxon = taxon.replace(")","_Z_");
    	taxon = taxon.replace(" ","_S_");
    	taxon = taxon.replace("?","_Q_");
    	return taxon;
	    //return encodeURIComponent(taxon);
    }
    function decodeID(taxon) {
    	taxon = taxon.replace("_X_","/");
     	taxon = taxon.replace("_Y_","(");
   	    taxon = taxon.replace("_Z_",")");
   	    taxon = taxon.replace("_S_"," ");
   	    taxon = taxon.replace("_Q_","?");
   	    return taxon;
	    //return encodeURIComponent(taxon);
    }    
    function getTaxonName(taxon) {
    	
    	taxon = prompt("Enter the parent taxon:", getDefaultTaxonName(taxon));
    	var split = taxon.split(" ");
        if (split[1]) {
          var number = parseInt(split[1]);
          //if (number != NaN) nLevels = number;
          if (!isNaN(number)) {
          	 nLevels = number;
          	 nInteractiveLevels= number;  // TODO make decision on level parameters
          	 nListLevels= number;
          }
          taxon = split[0];
        }
        return taxon;
    }
    function getDefaultTaxonName(taxon) {         // get default from page name
    	
    	var page = mw.config.get( 'wgPageName' ) ;

    	if (page.includes("Template:Taxonomy/") ) {
    	   var res = page.split("Template:Taxonomy/");	
    	   taxon = res[1];
    	}
    	else  {
    	    var title = new mw.Title ( page );
    	    var ns = title.getNamespaceId();
    	    if ( ns === 0 && !page.includes(" ") ) 	taxon = page;
    	}
    	return taxon;
    }
    function  extraText(index , sr) {
		
		var extraInfo = ""; //" [extra info] ";
		//if (1==1) return sr.snippet;
		
		var templateData =sr.snippet; // this contains the template code
		
		if (templateData.includes("rank")) {
			//var rank = templateData.match(/rank[\s]*=[\s]*[a-zA-Z]*/); //gets "rank%s=%sclassis"
			var rank = templateData.match(/rank[\s]*=[\s]*([a-zA-Z ]*)/);
			//if (rank && rank[0] ) 	extraInfo  = ' ['+rank[0]+']';
			if (rank && rank[1] ) 	extraInfo += ' ['+rank[1]+']';
		}
		if (templateData.includes("same_as") || templateData.includes("same as") ) {
			var sameas = templateData.match(/same[ _]as[\s]*=[\s]*([a-zA-Z]*)/);
			if (sameas && sameas[0] ) 	extraInfo += ' ['+sameas[0]+']';
		}
		if (templateData.includes("extinct")) {
			var extinct = templateData.match(/extinct[\s]*=[\s]*([a-zA-Z ]*)/);
			if (extinct && extinct[1] ) 	extraInfo += ' ['+extinct[0]+']';
		}
		return extraInfo; 
    }   
    function  getSameAs(index , sr) {
		var snippet =sr.snippet; // this contains the template code
		if (snippet.includes("same_as") || snippet.includes("same as") ) {
			var sameas = snippet.match(/same[ _]as[\s]*=[\s]*([a-zA-Z]*)/);
			if (sameas && sameas[0] ) 	
				return ' [same_as=<a href="/wiki/Template:Taxonomy/' + sameas[1] + '">' + sameas[1] + '</a>]';
		}
		return false;
    }
    function  getExtinct(index , sr) {
		var snippet =sr.snippet; // this contains the template code
		if (snippet.includes("extinct")) {
			var extinct = snippet.match(/extinct[\s]*=[\s]*([a-zA-Z ]*)/);
			if (extinct && extinct[1] ) {
				var value = extinct[1].toLowerCase();
				if (value=="yes" || value=="true") return true;
			}
		}
		return false;
    }
    function  getAlwaysDisplay(index , sr) {
		var snippet =sr.snippet; // this contains the template code
		if (snippet.includes("extinct")) {
			var alwaysDisplay = snippet.match(/always_display[\s]*=[\s]*([a-zA-Z ]*)/);
			if (alwaysDisplay && alwaysDisplay[1] ) {
				var value = alwaysDisplay[1].toLowerCase();
				if (value=="yes" || value=="true") return true;
			}
		}
		return false;
    }
    function getParent(index , sr) {
		var snippet = sr.snippet; // this contains the template code
		if (snippet.includes("parent")) {

			// snippet contains "<span class=\"searchmatch\">parent=Reptiliomorpha</span>"
            //snippet = snippet.replace("</span>",""); // not needed if 'srqiprofile' : 'classic',
			
			var parent = snippet.match(/parent[\s]*=[\s]*([a-zA-Z \/\?]*)/);  
			if (parent && parent[1] ) {
				return parent[1];
			}
		}
		return false;
    }
    function  getRank(index , sr) {
		var snippet =sr.snippet; // this contains the template code
		if (snippet.includes("rank")) {
		  var rank = snippet.match(/rank[\s]*=[\s]*([a-zA-Z ]*)/); 
		  if (rank && rank[1] ) 	return rank[1];
		}
	/*	if (snippet.includes("same_as") || snippet.includes("same as") ) {
			var sameas = snippet.match(/same[ _]as[\s]*=[\s]*([a-zA-Z]*)/);
			if (sameas && sameas[0] ) 	return sameas[0];
		}*/
		return false; //"unknown rank";
    }
    function formatByRank(name, rank) {
    	// check for genus and species; inlcude should pick up subgenus, species group, etc
        if ( rank && (rank.includes("genus") || rank.includes("species")) ) {
        	name = '<i>' + name + '</i>';
        }
        return name;
    }
    function cleanUpAfterPreviousRuns() {
        if (nRun > 1) {
        	//if (debug) alert ("run number = "+ nRun);
        	$('.taxon_identifier').remove(); 
        }
	}
    ///-------------------------------  interactive function --------------------------------
    function getTreeInteractive(taxon) {

       cleanUpAfterPreviousRuns();

        //taxon = prompt("Enter the parent taxon:", getDefaultTaxonName(taxon));
        taxon = getTaxonName(taxon);
        
 		var output= '<br/><ul><li class="taxon_identifier" id="' + encodeID(taxon) + '-li"><b>' + taxon + '</b></li><br/></ul>';
 		//var output= '<br/><ul><li class="taxon_identifier" id="' + taxon + '-li"><b>' + taxon + '</b></li><br/></ul>';
		
		var level = nInteractiveLevels; // nLevels is globally set at top
		addChildrenInteractive(taxon, level );  
		renderTaxonomyDialog( output );
        nRun += 1;
    }
    
    function addChildrenInteractive(taxon, level, callbackfunction) {
       if (level == 0) return;
   
   	    level -= 1;
	    // perform search using API with one of jQuery's AJAX functions
	    //var search = 'insource:/parent[ ]*=[ ]*' + escapeSeq(taxon) + '[\\s]*/ prefix:Template:Taxonomy/';
	    var search = 'insource:/parent[ ]*=[ ]*' + escapeSeq(taxon) + '[a-zA-Z\\/\\?\\s]*/ prefix:Template:Taxonomy/';
	    
	    //TODO Ass [a-zA-Z\/\?\s]*
	    //alert(search);
	    //search ="insource:/parent[ ]*=[ ]*Reptiliomorpha\\/\\?[\\s]*/  prefix:Template:Taxonomy/";
	    
 		jQuery.getJSON(
			mw.util.wikiScript( 'api' ),
			{
				'format': 'json',
				'action': 'query',
				'list': 'search',
				'srnamespace' :10,                        // search in template namespace
				'srlimit' : 500,
			//	'srqiprofile' : 'classic',     
				//'srsearch' : 'insource:"parent[ ]+=[ ]+' + escapeSeq(taxon) + '" prefix:Template:Taxonomy/'
				'srsearch' : search  // uses /regex/

			},
			function( data ) {
                var output = ""; 
                var nResults = data.query.searchinfo.totalhits;
                //alert ("nResults="+nResults);
                var count = 0;
                if (nResults === 0) {
                	output = ' [no children]'; // "zero hits: " + taxon;
                	$('#'+encodeID(taxon)+'-li').append(output); 
                }
                else { // so we have some results
                    if (debug) $('#'+encodeID(taxon)+'-li').append(" [" + nResults + "]"); // number of results; includes variants
                    $('#'+encodeID(taxon)+'-li').append('<ul></ul>');   // add ul element to contain children
                    //output = '<ul>';
					$.each ( data.query.search , function( index , sr ) {
	                    count += 1;
	                    //alert(count);
	                    var child = sr.title.replace("Template:Taxonomy/", "");		             
                        var rank = getRank(index , sr);
                        var extinct = getExtinct(index , sr);
                        var parent = getParent(index , sr);
                        var alwaysDisplay = getAlwaysDisplay(index , sr);
                        var sameAs = getSameAs(index , sr);
                        
                        // the results for Template:Taxonomy/taxon will also contain variant templates; we don't want to include those under base template
                        if (1==1 && (!parent || parent!=taxon )) {
                        	//alert("parent not matching for child "+child+"\nparent="+parent+"\ntaxon="+taxon); 
                        	parent += " (no match)";
                        	return true; // skip to next in each loop (eqquivalent of continue;)
                        }
                        
                        var name = formatByRank(child, rank);
                        if (alwaysDisplay) name = '<b>' + name + '</b>';
                          
	                    output = '<li id="' + encodeID(child) + '-li" class="taxon_identifier" >';
	                    if (extinct) output += '†';
	                    output += '<a href="/wiki/' + sr.title + '">' + name + '</a>';
	                    if (rank)   output += ' ['+rank+']';
	                    if (sameAs) output += sameAs;
	                    if (debug) {
	                    	//output += extraText(index , sr); 
	                        //output += " [child="+child+"; parent="+parent+"; taxon="+taxon+ "]";
	                    }
	                    if (level === 0) {
	                     	//output += ' <button class="childbutton" id="' + encodeID(child) + '">+</button>';
	                     	output += ' <span class="childbutton" id="' + encodeID(child) + '" style="font-size:120%;"> &#8862; </span>'; // +/- in square &#8862;/&#8863; +/-/x in circle &#8853;/&#8854;/&#8855;
	                    }
	                    //output += '<br/><ul id="' + encodeID(child) + '-ul"></ul>';
	                    output += '</li>' ;
	                    
	                    $('#'+encodeID(taxon)+'-li > ul').append(output);   // append child li element

           		        $('#'+encodeID(child)).click(function (e) {
							e.preventDefault();
                            addChildrenInteractive(child, nInteractiveLevels );  // trigger new run
						        $(this).hide();
						});	
                     
	                    if (level > 0) addChildrenInteractive(child, level );
					});
					output += '</ul>';
			    }
			    
			} // end processing function (data)
		);        
    } // end function addChildrenInteractive()
    
    // ----------------- document ready - add functions to tool menu ------------------
	$(document).ready( function() {
		
       // alert("hello")   // my test that the page is loading
		
		// Add a link to the toolbox
		var link = mw.util.addPortletLink(
			'p-tb',
			'#',
			mw.message('taxonomy-link').plain(),
			't-prettylinkwidget',
			mw.message('taxonomy-tooltip').plain(),
			'/'
			//'#t-whatlinkshere'    // this places it at the top of the tools
		);
		var link2 = mw.util.addPortletLink(
			'p-tb',
			'#',
			mw.message('taxonomy-link2').plain(),
			't-prettylinkwidget',
			mw.message('taxonomy-tooltip').plain()
		);

		// Create a jQuery object for this link so that we get
		// to use jQuery awesomeness like .click() for binding functions to events
		// and methods like e.preventDefault();
		$(link).click( function( e ) {
			
			e.preventDefault(); // Avoid the browser going to '#'
			
			//getChildren("Felidae");  // get children for prompted taxon
			getTreeList("Plantae");  // get more than one level of tree 
		});
		$(link2).click( function( e ) {
			
			e.preventDefault();// Avoid the browser going to '#'
			
			//getTreeInteractive("Carnivora");  // get more than one level of tree
			getTreeInteractive("Tetrapoda");  // get more than one level of tree
		});

	});

});