MediaWiki:Common.js: Difference between revisions

From Another Chance Wiki
Jump to navigation Jump to search
No edit summary
Tag: Reverted
No edit summary
 
(37 intermediate revisions by the same user not shown)
Line 9: Line 9:


         if (captionText.startsWith('spoiler:')) {
         if (captionText.startsWith('spoiler:')) {
             $box.addClass('spoiler-image');
             $box.addClass('spoiler-image thumb');
             $caption.html($caption.html().replace('spoiler: ', ''));
             $caption.html($caption.html().replace('spoiler: ', ''));
        }
    });
    $content.find('ul.mw-gallery-slideshow').each(function () {
        var $gallery = $(this);
        function updateLargeImage() {
            var $current = $gallery.find('.gallerybox.slideshow-current');
            if (!$current.length) {
                $current = $gallery.find('.gallerybox').first();
            }
            var $container = $gallery.find('.mw-gallery-slideshow-img-container');
            if ($current.hasClass('spoiler-image') && !$current.hasClass('revealed')) {
                $container.addClass('spoiler-image');
            } else {
                $container.removeClass('spoiler-image revealed');
            }
        }
        updateLargeImage();
        var observer = new MutationObserver(function () {
            updateLargeImage();
        });
        observer.observe($gallery[0], {
            attributes: true,
            attributeFilter: ['class'],
            subtree: true,
            childList: true
        });
    });
    $content.on('click', '.gallerybox.spoiler', function () {
        $(this).addClass('spoiler-image revealed');
    });
    $content.on('click', '.mw-gallery-slideshow-img-container.spoiler-image', function (e) {
        if ($(e.target).closest('.oo-ui-buttonElement, button, a.oo-ui-buttonElement-button').length) {
            return;
        }
        var $container = $(this);
        if (!$container.hasClass('revealed')) {
            e.preventDefault();
            e.stopPropagation();
            $container.addClass('revealed');
            $container.closest('ul.gallery')
                      .find('.gallerybox.slideshow-current')
                      .addClass('revealed');
         }
         }
     });
     });
});
});


mw.hook('wikipage.content').add(function ($gallery) {
/* Displays random page on the home page */
    var $currentThumb = $gallery.find('.gallerybox.slideshow-current');
$(function () {
     if (!$currentThumb.length) {
     if (!mw.config.get('wgIsMainPage')) {
        $currentThumb = $gallery.find('.gallerybox').first();
        return;
     }
     }


     var $imgContainer = $gallery.find('.mw-gallery-slideshow-img-container, .mw-gallery-slideshow .carousel, .mw-gallery-slideshow-img');
     var $container = $('#random-page-summary');
     if (!$imgContainer.length) {
     if (!$container.length) {
         $imgContainer = $gallery.find('li').has('img').not('.gallerybox').first();
         return;
     }
     }


     if ($currentThumb.hasClass('spoiler-image') && !$currentThumb.hasClass('revealed')) {
     // === CONFIGURATION ===
        $imgContainer.addClass('spoiler-image');
    var EXCLUDED_TITLES = [
    } else {
        'Main Page',
         $imgContainer.addClass('spoiler-image.revealed');
        'Sandbox',
        'Flora/Gallery',
        'Flora/Love',
        'Flora/Lust',
        'Isabelle/Gallery',
        'Isabelle/Love',
        'Isabelle/Lust',
        'Jacklyn/Gallery',
        'Jacklyn/Love',
        'Jacklyn/Lust'
    ];
 
    var NAMESPACE = 0;              // Main namespace
    var MAX_CANDIDATES = 6;        // Fetch a few random pages at once
    var SHOW_EXTRACT = true;        // Also show a short text summary under the infobox?
    var EXTRACT_CHARS = 300;
    // =====================
 
    $container.html('<p class="random-loading">Loading random page…</p>');
 
    function loadRandomWithInfobox() {
        // 1. Get several random page titles
        new mw.Api().get({
            action: 'query',
            generator: 'random',
            grnnamespace: NAMESPACE,
            grnfilterredir: 'nonredirects',
            grnlimit: MAX_CANDIDATES,
            prop: 'info',
            inprop: 'url'
        }).done(function (data) {
            if (!data.query || !data.query.pages) {
                $container.html('<p>No pages found.</p>');
                return;
            }
 
            var pages = Object.values(data.query.pages).filter(function (p) {
                return EXCLUDED_TITLES.indexOf(p.title) === -1;
            });
 
            if (pages.length === 0) {
                // All were excluded – try again
                loadRandomWithInfobox();
                return;
            }
 
            // Try the first valid page
            tryPage(pages, 0);
         }).fail(function () {
            $container.html('<p>Could not load random pages.</p>');
        });
     }
     }
}


     $(document).on('click', '.mw-gallery-slideshow-img-container.spoiler-main, .mw-gallery-slideshow .spoiler-main', function (e) {
     function tryPage(pages, index) {
         if ($(e.target).closest('a, button, .oo-ui-buttonElement').length) {
         if (index >= pages.length) {
            // None of the candidates worked – try a fresh batch
            loadRandomWithInfobox();
             return;
             return;
         }
         }
        $(this).addClass('revealed');
        var $gallery = $(this).closest('ul.gallery');
        $gallery.find('.gallerybox.slideshow-current').addClass('revealed');
    });
});


/* Toggles spoilered images between blurred and not blurred upon clicking */
        var page = pages[index];
$(function() {
 
     $('.spoiler-image').on('click', function() {
        // 2. Get the fully rendered HTML of the page
        $(this).toggleClass('revealed');
        new mw.Api().get({
     });
            action: 'parse',
            page: page.title,
            prop: 'text',
            disablelimitreport: true,
            disableeditsection: true,
            disabletoc: true
        }).done(function (parseData) {
            var $html = $('<div>').html(parseData.parse.text['*']);
            var $infobox = $html.find('.portable-infobox').first();
 
            if ($infobox.length === 0) {
                // This page has no Portable Infobox – try the next candidate
                tryPage(pages, index + 1);
                return;
            }
 
            // 3. Build the display
            var $wrapper = $('<div class="random-infobox-wrapper"></div>');
 
            // Make the whole infobox clickable
            var $link = $('<a>')
                .attr('href', page.fullurl || mw.util.getUrl(page.title))
                .attr('title', 'Go to ' + page.title)
                .addClass('random-infobox-link');
 
            // Clone the infobox so we don't modify the original parse
            var $cloned = $infobox.clone();
 
            // Optional: make internal links inside the infobox absolute or remove them
            // (uncomment if you want to prevent nested navigation)
            // $cloned.find('a').attr('href', page.fullurl);
 
            $link.append($cloned);
            $wrapper.append($link);
 
            // Optional short extract under the infobox
            if (SHOW_EXTRACT) {
                // Get a clean extract (requires TextExtracts extension)
                new mw.Api().get({
                    action: 'query',
                    titles: page.title,
                    prop: 'extracts',
                    exintro: true,
                    explaintext: true,
                    exchars: EXTRACT_CHARS
                }).done(function (exData) {
                    var extract = '';
                    var pagesObj = exData.query.pages;
                    for (var id in pagesObj) {
                        if (pagesObj[id].extract) {
                            extract = pagesObj[id].extract;
                        }
                    }
 
                    if (extract) {
                        $wrapper.append(
                            $('<div class="random-extract"></div>').text(extract)
                        );
                    }
 
                    finish($wrapper, page);
                }).fail(function () {
                    finish($wrapper, page);
                });
            } else {
                finish($wrapper, page);
            }
        }).fail(function () {
            tryPage(pages, index + 1);
        });
     }
 
    function finish($content, page) {
        $content.append(
            $('<p class="random-more"></p>').html(
                '<a href="' + (page.fullurl || mw.util.getUrl(page.title)) + '">Read full page →</a> · ' +
                '<a href="#" class="random-reload">Show another</a>'
            )
        );
 
        $container.empty().append($content);
 
        $container.find('.random-reload').on('click', function (e) {
            e.preventDefault();
            $container.html('<p class="random-loading">Loading random page…</p>');
            loadRandomWithInfobox();
        });
     }
 
    loadRandomWithInfobox();
});
});

Latest revision as of 19:45, 1 September 2026

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

/* Allows images within galleries to be spoiled if "spoiler:" is put at the start of its caption*/
mw.hook('wikipage.content').add(function ($content) {
    $content.find('ul.gallery li.gallerybox').each(function () {
        var $box = $(this);
        var $caption = $box.find('.gallerytext');
        var captionText = $caption.text().trim().toLowerCase();

        if (captionText.startsWith('spoiler:')) {
            $box.addClass('spoiler-image thumb');
            $caption.html($caption.html().replace('spoiler: ', ''));
        }
    });

    $content.find('ul.mw-gallery-slideshow').each(function () {
        var $gallery = $(this);

        function updateLargeImage() {
            var $current = $gallery.find('.gallerybox.slideshow-current');
            if (!$current.length) {
                $current = $gallery.find('.gallerybox').first();
            }

            var $container = $gallery.find('.mw-gallery-slideshow-img-container');

            if ($current.hasClass('spoiler-image') && !$current.hasClass('revealed')) {
                $container.addClass('spoiler-image');
            } else {
                $container.removeClass('spoiler-image revealed');
            }
        }

        updateLargeImage();

        var observer = new MutationObserver(function () {
            updateLargeImage();
        });

        observer.observe($gallery[0], {
            attributes: true,
            attributeFilter: ['class'],
            subtree: true,
            childList: true
        });
    });

    $content.on('click', '.gallerybox.spoiler', function () {
        $(this).addClass('spoiler-image revealed');
    });

    $content.on('click', '.mw-gallery-slideshow-img-container.spoiler-image', function (e) {
        if ($(e.target).closest('.oo-ui-buttonElement, button, a.oo-ui-buttonElement-button').length) {
            return;
        }

        var $container = $(this);

        if (!$container.hasClass('revealed')) {
            e.preventDefault();
            e.stopPropagation();

            $container.addClass('revealed');

            $container.closest('ul.gallery')
                      .find('.gallerybox.slideshow-current')
                      .addClass('revealed');
        }
    });
});

/* Displays random page on the home page */
$(function () {
    if (!mw.config.get('wgIsMainPage')) {
        return;
    }

    var $container = $('#random-page-summary');
    if (!$container.length) {
        return;
    }

    // === CONFIGURATION ===
    var EXCLUDED_TITLES = [
        'Main Page',
        'Sandbox',
        'Flora/Gallery',
        'Flora/Love',
        'Flora/Lust',
        'Isabelle/Gallery',
        'Isabelle/Love',
        'Isabelle/Lust',
        'Jacklyn/Gallery',
        'Jacklyn/Love',
        'Jacklyn/Lust'
    ];

    var NAMESPACE = 0;              // Main namespace
    var MAX_CANDIDATES = 6;         // Fetch a few random pages at once
    var SHOW_EXTRACT = true;        // Also show a short text summary under the infobox?
    var EXTRACT_CHARS = 300;
    // =====================

    $container.html('<p class="random-loading">Loading random page…</p>');

    function loadRandomWithInfobox() {
        // 1. Get several random page titles
        new mw.Api().get({
            action: 'query',
            generator: 'random',
            grnnamespace: NAMESPACE,
            grnfilterredir: 'nonredirects',
            grnlimit: MAX_CANDIDATES,
            prop: 'info',
            inprop: 'url'
        }).done(function (data) {
            if (!data.query || !data.query.pages) {
                $container.html('<p>No pages found.</p>');
                return;
            }

            var pages = Object.values(data.query.pages).filter(function (p) {
                return EXCLUDED_TITLES.indexOf(p.title) === -1;
            });

            if (pages.length === 0) {
                // All were excluded – try again
                loadRandomWithInfobox();
                return;
            }

            // Try the first valid page
            tryPage(pages, 0);
        }).fail(function () {
            $container.html('<p>Could not load random pages.</p>');
        });
    }

    function tryPage(pages, index) {
        if (index >= pages.length) {
            // None of the candidates worked – try a fresh batch
            loadRandomWithInfobox();
            return;
        }

        var page = pages[index];

        // 2. Get the fully rendered HTML of the page
        new mw.Api().get({
            action: 'parse',
            page: page.title,
            prop: 'text',
            disablelimitreport: true,
            disableeditsection: true,
            disabletoc: true
        }).done(function (parseData) {
            var $html = $('<div>').html(parseData.parse.text['*']);
            var $infobox = $html.find('.portable-infobox').first();

            if ($infobox.length === 0) {
                // This page has no Portable Infobox – try the next candidate
                tryPage(pages, index + 1);
                return;
            }

            // 3. Build the display
            var $wrapper = $('<div class="random-infobox-wrapper"></div>');

            // Make the whole infobox clickable
            var $link = $('<a>')
                .attr('href', page.fullurl || mw.util.getUrl(page.title))
                .attr('title', 'Go to ' + page.title)
                .addClass('random-infobox-link');

            // Clone the infobox so we don't modify the original parse
            var $cloned = $infobox.clone();

            // Optional: make internal links inside the infobox absolute or remove them
            // (uncomment if you want to prevent nested navigation)
            // $cloned.find('a').attr('href', page.fullurl);

            $link.append($cloned);
            $wrapper.append($link);

            // Optional short extract under the infobox
            if (SHOW_EXTRACT) {
                // Get a clean extract (requires TextExtracts extension)
                new mw.Api().get({
                    action: 'query',
                    titles: page.title,
                    prop: 'extracts',
                    exintro: true,
                    explaintext: true,
                    exchars: EXTRACT_CHARS
                }).done(function (exData) {
                    var extract = '';
                    var pagesObj = exData.query.pages;
                    for (var id in pagesObj) {
                        if (pagesObj[id].extract) {
                            extract = pagesObj[id].extract;
                        }
                    }

                    if (extract) {
                        $wrapper.append(
                            $('<div class="random-extract"></div>').text(extract)
                        );
                    }

                    finish($wrapper, page);
                }).fail(function () {
                    finish($wrapper, page);
                });
            } else {
                finish($wrapper, page);
            }
        }).fail(function () {
            tryPage(pages, index + 1);
        });
    }

    function finish($content, page) {
        $content.append(
            $('<p class="random-more"></p>').html(
                '<a href="' + (page.fullurl || mw.util.getUrl(page.title)) + '">Read full page →</a> · ' +
                '<a href="#" class="random-reload">Show another</a>'
            )
        );

        $container.empty().append($content);

        $container.find('.random-reload').on('click', function (e) {
            e.preventDefault();
            $container.html('<p class="random-loading">Loading random page…</p>');
            loadRandomWithInfobox();
        });
    }

    loadRandomWithInfobox();
});