Difference between revisions of "MediaWiki:Common.js"
From Game Detectives Wiki
								
												
				| Line 1: | Line 1: | ||
| + | /* Script for popup onclick for SMW matty tables */ | ||
| + | |||
| (function () { | (function () { | ||
| − |    //  | + | |
| + |    // Init count to break loop | ||
|    var cnt = 0; |    var cnt = 0; | ||
| + | |||
| + |   // Define jQuery scripts and settings | ||
|    var jQuery = document.createElement('script'); |    var jQuery = document.createElement('script'); | ||
|    jQuery.setAttribute('src','//code.jquery.com/jquery-1.12.4.js'); |    jQuery.setAttribute('src','//code.jquery.com/jquery-1.12.4.js'); | ||
| Line 13: | Line 18: | ||
|    jQueryCSS.setAttribute('href','//code.jquery.com/ui/1.12.1/themes/smoothness/jquery-ui.css'); |    jQueryCSS.setAttribute('href','//code.jquery.com/ui/1.12.1/themes/smoothness/jquery-ui.css'); | ||
| + | |||
| + |   // Wait for jQuery scripts to load | ||
|    jQuery.onload = function () { |    jQuery.onload = function () { | ||
|      jQueryUI.onload = function () { |      jQueryUI.onload = function () { | ||
| + | |||
| + |       // Define jQuery prefix | ||
|        var $ = window.jQuery; |        var $ = window.jQuery; | ||
| + | |||
| + |       // Iterate n to loop through each table row | ||
|        for (var n = 1; n < 100; n++) { |        for (var n = 1; n < 100; n++) { | ||
| + | |||
| + |         // Check that the table row exists | ||
|          if (document.getElementById('tableRow' + n)) { |          if (document.getElementById('tableRow' + n)) { | ||
| + | |||
| + |           // Select the table row and set it's ID selector | ||
|            var row = document.getElementById('tableRow' + n); |            var row = document.getElementById('tableRow' + n); | ||
| − |            var  | + |            var rowID = 'dialog' + n; | 
| − |            row.addEventListener('click', function ( | + | |
| + |           // Add the click event listener and popup function to the given row | ||
| + |            row.addEventListener('click', function (rowID) { | ||
|              $(function () { |              $(function () { | ||
| − |                $('#' +  | + |                $('#' + rowID).dialog(); | 
|              }); |              }); | ||
| − |            }.bind(null,  | + |            }.bind(null, rowID)); | 
| + |           // Define a variable to be used for the title of the popup | ||
|            var nameCol = document.getElementById('tableCol1-' + n).innerText; |            var nameCol = document.getElementById('tableCol1-' + n).innerText; | ||
| + |           // Define the popup's title and content and insert the popup's HTML into the given row's HTML | ||
|            row.innerHTML += '<div style="display:none" id="dialog' + n + '"' + ' title="' + nameCol + '"' + n + '">' + '\n' + |            row.innerHTML += '<div style="display:none" id="dialog' + n + '"' + ' title="' + nameCol + '"' + n + '">' + '\n' + | ||
|                '<p>Table Row ' + n + '</p>\n' + |                '<p>Table Row ' + n + '</p>\n' + | ||
|                '</div>'; |                '</div>'; | ||
| + |         } | ||
| − | + |          // Detect when a given row does not exist | |
|          else { |          else { | ||
|            cnt++; |            cnt++; | ||
|          } |          } | ||
| + | |||
| + |         // If two rows are detected to not exist, assume the tables have ended and break the loop | ||
|          if (cnt > 0) { |          if (cnt > 0) { | ||
|            break; |            break; | ||
| Line 42: | Line 64: | ||
|      }; |      }; | ||
|    }; |    }; | ||
| + | |||
| + |   // Insert jQuery scripts into page's HTML | ||
|    document.getElementsByTagName('head')[0].appendChild(jQuery); |    document.getElementsByTagName('head')[0].appendChild(jQuery); | ||
|    document.getElementsByTagName('head')[0].appendChild(jQueryUI); |    document.getElementsByTagName('head')[0].appendChild(jQueryUI); | ||
|    document.getElementsByTagName('head')[0].appendChild(jQueryCSS); |    document.getElementsByTagName('head')[0].appendChild(jQueryCSS); | ||
| })(); | })(); | ||
Revision as of 14:24, 15 August 2018
/* Script for popup onclick for SMW matty tables */
(function () {
  // Init count to break loop
  var cnt = 0;
  // Define jQuery scripts and settings
  var jQuery = document.createElement('script');
  jQuery.setAttribute('src','//code.jquery.com/jquery-1.12.4.js');
  var jQueryUI = document.createElement('script');
  jQueryUI.setAttribute('src','//code.jquery.com/ui/1.12.1/jquery-ui.js');
  var jQueryCSS = document.createElement('link');
  jQueryCSS.setAttribute('rel','stylesheet' );
  jQueryCSS.setAttribute('href','//code.jquery.com/ui/1.12.1/themes/smoothness/jquery-ui.css');
  // Wait for jQuery scripts to load
  jQuery.onload = function () {
    jQueryUI.onload = function () {
      // Define jQuery prefix
      var $ = window.jQuery;
      // Iterate n to loop through each table row
      for (var n = 1; n < 100; n++) {
        // Check that the table row exists
        if (document.getElementById('tableRow' + n)) {
          // Select the table row and set it's ID selector
          var row = document.getElementById('tableRow' + n);
          var rowID = 'dialog' + n;
          // Add the click event listener and popup function to the given row
          row.addEventListener('click', function (rowID) {
            $(function () {
              $('#' + rowID).dialog();
            });
          }.bind(null, rowID));
          // Define a variable to be used for the title of the popup
          var nameCol = document.getElementById('tableCol1-' + n).innerText;
          // Define the popup's title and content and insert the popup's HTML into the given row's HTML
          row.innerHTML += '<div style="display:none" id="dialog' + n + '"' + ' title="' + nameCol + '"' + n + '">' + '\n' +
              '<p>Table Row ' + n + '</p>\n' +
              '</div>';
        }
        // Detect when a given row does not exist
        else {
          cnt++;
        }
        // If two rows are detected to not exist, assume the tables have ended and break the loop
        if (cnt > 0) {
          break;
        }
      }
    };
  };
  // Insert jQuery scripts into page's HTML
  document.getElementsByTagName('head')[0].appendChild(jQuery);
  document.getElementsByTagName('head')[0].appendChild(jQueryUI);
  document.getElementsByTagName('head')[0].appendChild(jQueryCSS);
})();

