MediaWiki:Common.js: Difference between revisions

From Mutant Year Zero
mNo edit summary
mNo edit summary
 
(67 intermediate revisions by the same user not shown)
Line 14: Line 14:
}
}


/* Scroll to the active cell on the Zone Map */
/* For map page */
if (mw.config.get('wgPageName') === 'Zone_Map') {
if (mw.config.get('wgPageName') === 'Zone_Map') {
    document.getElementById('active').scrollIntoView({
 
  /* Scroll to the active cell on the Zone Map */
  document.getElementById('active').scrollIntoView({
         behavior: 'auto',
         behavior: 'auto',
         block: 'center',
         block: 'center',
         inline: 'center'
         inline: 'center'
    });
  });


  /* fullscreen icon */
   $('#fullscreeninput').on('click', function(){
   $('#fullscreeninput').on('click', function(){
     // if already full screen; exit
     // if already full screen; exit
Line 32: Line 35:
   });
   });


  /* my location icon */
  $('#mylocation').on('click', function(){
    document.getElementById('active').scrollIntoView({
        behavior: 'auto',
        block: 'center',
        inline: 'center'
    });
  });


  /* add zoomslider */
  document.getElementById('zoominput').innerHTML = '<input id="zoomslider" min="0.3" max="2" value="1" step="0.1" type="range"/>';
  $('#zoomslider').on("change mousemove", function() {
    $(".gridmap").css("zoom", $(this).val()); 
  });


  /* add zoomreset */
  $('#resetzoom').on('click', function(){
    $("#zoomslider").val(1);
    $(".gridmap").css("zoom", 1);
  });
}






function setZoom(zoom,el) { 
if (mw.config.get('wgPageName') === 'Ark_Projects') {
      transformOrigin = [0,0];
jQuery( document ).ready( function( $ ) {
    el = el || instance.getContainer();
    // wrapped in "mw.loader.using" so this doesn't execute until Tablesorter has loaded
    var p = ["webkit", "moz", "ms", "o"],
    mw.loader.using( 'jquery.tablesorter', function() {
            s = "scale(" + zoom + ")",
        $('table.sortable').tablesorter( {sortList: [ { 1: 'desc'} ]} )
            oString = (transformOrigin[0] * 100) + "% " + (transformOrigin[1] * 100) + "%";
    } );
 
} );
    for (var i = 0; i < p.length; i++) {
        el.style[p[i] + "Transform"] = s;
        el.style[p[i] + "TransformOrigin"] = oString;
    }
 
    el.style["transform"] = s;
    el.style["transformOrigin"] = oString;  
}
}


//setZoom(5,document.getElementsByClassName('container')[0]);


function showVal(a){
//if (mw.config.get('wgPageName') === "Octavia's_Notebook") {
  var zoomScale = Number(a)/10;
//   $(".notebookpages .notebook.paper").first().addClass("active");
  setZoom(zoomScale,document.getElementsByClassName('gridmap')[0]);
  /* resize */
   
  /* recenter */
  document.getElementById('active').scrollIntoView({
        behavior: 'auto',
        block: 'center',
        inline: 'center'
    });  
}


/* Scroll to the active cell on the Zone Map */
  /* First button */
//  $('.notebookpages .first').on('click', function() {
//    $(".notebookpages .active").removeClass("active");
//    $(".notebookpages .notebook.paper").first().addClass("active");   
//   });


    document.getElementById('zoominput').innerHTML = '<input id="test" min="5" max="20" value="10" step="1" onchange="showVal(this.value)" type="range"/>';
  /* Last button */
//  $('.notebookpages .last').on('click', function() {
//    $(".notebookpages .active").removeClass("active");
//    $(".notebookpages .notebook.paper").last().addClass("active");   
//   });


  /* Next button */
//  $('.notebookpages .next').on('click', function() {
//      if (!$(".notebookpages .notebook.paper").last().hasClass('active')) {
//        $(".notebookpages .active").removeClass("active").next(".notebook.paper").addClass("active");
//        $('.notebookpages .prev').removeClass("disabled");
//      } else {
//        $('.notebookpages .next').addClass("disabled");
//      }
//  });


 
  /* Previous button */
 
//  $('.notebookpages .prev').on('click', function() {
 
//      if (!$(".notebookpages .notebook.paper").first().hasClass('active')) {
 
//        $(".notebookpages .active").removeClass("active").prev(".notebook.paper").addClass("active");
}
//        $('.notebookpages .next').removeClass("disabled");
//      } else {
//        $('.notebookpages .prev').addClass("disabled");
//      }
//  });
//}

Latest revision as of 13:26, 21 May 2024

/* Any JavaScript here will be loaded for all users on every page load. */

/* Make the top-left SandcatRPG logo link to main site */
$(".timeless-logo").attr("href", 'http://rpg.sandcat.nl/');

/* for a Move, deselect the "Leave a redirect behind" checkbox by default */
if ( mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Movepage' ) { 
  $( function () { 
    i= $( 'input[name=wpLeaveRedirect]' ); 
    if ( i.length ) { 
      i[0].checked = false; 
    } 
  } ) 
}

/* For map page */
if (mw.config.get('wgPageName') === 'Zone_Map') {
  
  /* Scroll to the active cell on the Zone Map */
  document.getElementById('active').scrollIntoView({
        behavior: 'auto',
        block: 'center',
        inline: 'center'
  });

  /* fullscreen icon */
  $('#fullscreeninput').on('click', function(){
    // if already full screen; exit
    // else go fullscreen
    if (document.fullscreenElement) {
      document.exitFullscreen();
    } else {
      $('#zonemap').get(0).requestFullscreen();
    }
  });

  /* my location icon */
  $('#mylocation').on('click', function(){
    document.getElementById('active').scrollIntoView({
        behavior: 'auto',
        block: 'center',
        inline: 'center'
    });
  });

  /* add zoomslider */
  document.getElementById('zoominput').innerHTML = '<input id="zoomslider" min="0.3" max="2" value="1" step="0.1" type="range"/>';
  $('#zoomslider').on("change mousemove", function() {
    $(".gridmap").css("zoom", $(this).val());   
  });

  /* add zoomreset */
  $('#resetzoom').on('click', function(){
    $("#zoomslider").val(1);
    $(".gridmap").css("zoom", 1);
  });
}



if (mw.config.get('wgPageName') === 'Ark_Projects') {
jQuery( document ).ready( function( $ ) {
    // wrapped in "mw.loader.using" so this doesn't execute until Tablesorter has loaded
    mw.loader.using( 'jquery.tablesorter', function() {
        $('table.sortable').tablesorter( {sortList: [ { 1: 'desc'} ]} )
    } );
} );
}


//if (mw.config.get('wgPageName') === "Octavia's_Notebook") {
//   $(".notebookpages .notebook.paper").first().addClass("active");

   /* First button */
//   $('.notebookpages .first').on('click', function() {
//     $(".notebookpages .active").removeClass("active");
//     $(".notebookpages .notebook.paper").first().addClass("active");     
//   });

   /* Last button */
//   $('.notebookpages .last').on('click', function() {
//     $(".notebookpages .active").removeClass("active");
//     $(".notebookpages .notebook.paper").last().addClass("active");     
//   });

   /* Next button */
//   $('.notebookpages .next').on('click', function() {
//      if (!$(".notebookpages .notebook.paper").last().hasClass('active')) {
//        $(".notebookpages .active").removeClass("active").next(".notebook.paper").addClass("active");
//        $('.notebookpages .prev').removeClass("disabled");
//      } else {
//        $('.notebookpages .next').addClass("disabled");
//      }
//   });

   /* Previous button */
//   $('.notebookpages .prev').on('click', function() {
//      if (!$(".notebookpages .notebook.paper").first().hasClass('active')) {
//        $(".notebookpages .active").removeClass("active").prev(".notebook.paper").addClass("active");
//        $('.notebookpages .next').removeClass("disabled");
//      } else {
//        $('.notebookpages .prev').addClass("disabled");
//      }
//   });
//}