MediaWiki:Common.js: Difference between revisions
From Ragnafied Wiki
No edit summary |
No edit summary |
||
| Line 93: | Line 93: | ||
}); | }); | ||
// Ragnawiki Collapsible - | // Ragnawiki Custom Collapsible - Disable default and use custom | ||
jQuery(document).ready(function($) { | jQuery(document).ready(function($) { | ||
console.log("Ragnawiki collapsible initialized"); | console.log("Ragnawiki collapsible initialized"); | ||
// First, disable MediaWiki's default collapsible behavior | |||
if (typeof mw !== 'undefined' && mw.loader) { | |||
mw.loader.using('jquery.makeCollapsible', function() { | |||
// Override the default behavior | |||
$.fn.makeCollapsible = function() { | |||
return this; | |||
}; | |||
}); | |||
} | |||
// Remove any existing MediaWiki collapsible toggles | |||
$('.mw-collapsible-toggle').remove(); | |||
// For each collapsible container | // For each collapsible container | ||
| Line 104: | Line 117: | ||
if ($header.length && $content.length) { | if ($header.length && $content.length) { | ||
// | // Remove any default styling/classes that might interfere | ||
$header.css('cursor', ' | $header.removeClass('mw-collapsible-toggle'); | ||
$header.css({ | |||
'cursor': 'pointer', | |||
'user-select': 'none' | |||
}); | |||
// | // Initially hide content if container has mw-collapsed class | ||
if ($container.hasClass('mw-collapsed')) { | if ($container.hasClass('mw-collapsed')) { | ||
$content.hide(); | $content.hide(); | ||
| Line 114: | Line 131: | ||
} | } | ||
// | // Remove any existing click handlers | ||
$header.off('click').on('click', function(e) { | $header.off('click.collapsible'); | ||
// Add click handler | |||
$header.on('click.collapsible', function(e) { | |||
e.preventDefault(); | e.preventDefault(); | ||
e.stopPropagation(); | e.stopPropagation(); | ||
console.log("Header clicked"); // For debugging | |||
if ($container.hasClass('mw-collapsed')) { | if ($container.hasClass('mw-collapsed')) { | ||
Revision as of 12:50, 21 February 2026
$(document).ready(function() {
// 1. Define HTML for all elements
var progressBarHTML = '<div id="scroll-progress"></div>';
var topButtonHTML = '<div class="back-to-top-fixed" style="display:none;"><a href="#">↑ TOP</a></div>';
var menuHTML = `
<div class="floating-menu" id="floatingMenu">
<div class="floating-menu-header" id="menuHeader">
<span>📋 QUICK NAV</span>
<span class="arrow">▼</span>
</div>
<div class="floating-menu-items">
<a href="/index.php/Main_Page">🏠 Main Page</a>
<a href="/index.php/First_Steps">🚀 First Steps</a>
<a href="/index.php/VIP">👑 VIP</a>
<a href="/index.php/Enchant_Stones">💎 Enchant Stones</a>
<a href="/index.php/Nyangvines">🐱 Nyangvines</a>
<a href="/index.php/Custom_Systems">⚙️ Custom Systems</a>
<a href="/index.php/Monthly_Kachua">📅 Monthly Kachua</a>
<a href="/index.php/Troubleshooting">🔧 Troubleshooting</a>
<a href="/index.php/Card_Trader_and_Kachua_Tokens">🃏 Card and Tokens</a>
<a href="/index.php/Equipment_Enhancement">🛡️ EQ Enhancement</a>
</div>
</div>
<div class="floating-menu-toggle" id="menuToggle">☰</div>
`;
$('body').append(progressBarHTML + topButtonHTML + menuHTML);
var lastScrollTop = 0;
$(window).scroll(function() {
var st = $(this).scrollTop();
// A. Progress Bar
var docHeight = $(document).height() - $(window).height();
var scrolled = (st / docHeight) * 100;
$('#scroll-progress').css("width", scrolled + "%");
// B. Top Button Fade
if (st > 300) { $('.back-to-top-fixed').fadeIn(); }
else { $('.back-to-top-fixed').fadeOut(); }
// C. Hide Menu on Scroll Down (Desktop Only)
if ($(window).width() > 768) {
if (st > lastScrollTop && st > 500) {
$('#floatingMenu').css('right', '-220px');
} else {
$('#floatingMenu').css('right', '20px');
}
}
lastScrollTop = st;
// D. Section Tracker: Highlights the link if the URL matches current page
var currentPath = window.location.pathname;
$('.floating-menu-items a').each(function() {
if (currentPath.includes($(this).attr('href'))) {
$(this).addClass('reading-now');
} else {
$(this).removeClass('reading-now');
}
});
});
// Toggle Events
$('#menuHeader').click(function() { $('#floatingMenu').toggleClass('collapsed'); });
$('#menuToggle').click(function() { $('#floatingMenu').toggleClass('mobile-visible'); });
$('.back-to-top-fixed a').click(function(e) {
e.preventDefault();
$('html, body').animate({scrollTop: 0}, 400);
});
});
// Add smooth scrolling to anchor links
$(document).ready(function() {
$('a[href^="#"]').on('click', function(e) {
e.preventDefault();
var target = $(this.hash);
if (target.length) {
$('html, body').animate({
scrollTop: target.offset().top - 50
}, 500);
}
});
});
// Sticky header on scroll
$(window).scroll(function() {
if ($(window).scrollTop() > 100) {
$('#mw-head').addClass('sticky-header');
} else {
$('#mw-head').removeClass('sticky-header');
}
});
// Ragnawiki Custom Collapsible - Disable default and use custom
jQuery(document).ready(function($) {
console.log("Ragnawiki collapsible initialized");
// First, disable MediaWiki's default collapsible behavior
if (typeof mw !== 'undefined' && mw.loader) {
mw.loader.using('jquery.makeCollapsible', function() {
// Override the default behavior
$.fn.makeCollapsible = function() {
return this;
};
});
}
// Remove any existing MediaWiki collapsible toggles
$('.mw-collapsible-toggle').remove();
// For each collapsible container
$('.mw-collapsible').each(function() {
var $container = $(this);
var $header = $container.find('.ragnawiki-card-header').first();
var $content = $container.find('.mw-collapsible-content').first();
if ($header.length && $content.length) {
// Remove any default styling/classes that might interfere
$header.removeClass('mw-collapsible-toggle');
$header.css({
'cursor': 'pointer',
'user-select': 'none'
});
// Initially hide content if container has mw-collapsed class
if ($container.hasClass('mw-collapsed')) {
$content.hide();
} else {
$content.show();
}
// Remove any existing click handlers
$header.off('click.collapsible');
// Add click handler
$header.on('click.collapsible', function(e) {
e.preventDefault();
e.stopPropagation();
console.log("Header clicked"); // For debugging
if ($container.hasClass('mw-collapsed')) {
$container.removeClass('mw-collapsed');
$content.slideDown(200);
} else {
$container.addClass('mw-collapsed');
$content.slideUp(200);
}
});
}
});
});
