Toggle menu
209
926
189
6.3K
Dovedale Railway Wiki
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Common.js: Difference between revisions

MediaWiki interface page
No edit summary
No edit summary
Line 126: Line 126:
mw.loader.using('mediawiki.util').then(function () {
mw.loader.using('mediawiki.util').then(function () {
     // Skip certain pages
     // Skip certain pages
     var excludedPages = ['Main Page']; // Add page titles to exclude
     var excludedPages = ['Main Page','Dovedale Wiki']; // Add page titles to exclude
     var pageTitle = mw.config.get('wgTitle');
     var pageTitle = mw.config.get('wgTitle');
      
      

Revision as of 15:40, 9 February 2025

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

// adds the dovedale-theme-light/dovedale-theme-dark classes automatically to
// the body element, depending on the currently used colour scheme

var lastTheme = "";
const matchColorScheme = window.matchMedia("(prefers-color-scheme: dark)");

/**
 * Attempts to detect the currently set theme.
 * @returns either 'light' or 'dark'
 */
function detectTheme() {
    var documentClasses = document.documentElement.classList;
    if (documentClasses.contains("skin-citizen-dark")) {
        return "dark";
    }
    if (documentClasses.contains("skin-citizen-light")) {
        return "light";
    }
    return matchColorScheme.matches ? "dark" : "light";
}

/**
 * Handles a theme update and sets the classes accordingly.
 * @param theme The theme that is now applied.
 */
function handleThemeUpdate(theme) {
    document.body.classList.remove("dovedale-theme-dark");
    document.body.classList.remove("dovedale-theme-light");
    document.body.classList.add("dovedale-theme-" + theme);
}

handleThemeUpdate(detectTheme());

/*ANalytics*/
mw.loader.load('//check.dovedale.wiki/latest.js');

/*tally form embed*/
mw.hook('wikipage.content').add(function($content) {
    if (!$content) {
        return;
    }
    $content.find('.tallyforms').each(function() {
        var $this = $(this),
            id = $this.attr('data-forms-id'),
            css = {
                width: 'inherit',
                height: 'inherit',
                border: 0
            };
        $this.html(
            $('<iframe>', {
                src: 'https://tally.so/embed/' + id ,
                css: css
            })
        );
    });
});

/* PDF Functionality */
var pdfs = document.querySelectorAll(".mw-parser-output .pdf");
pdfs.forEach(function(e) {
    const src = e.dataset.src;
   
    // attempt to create a URL based on the the data-src attribute
    // uses the current url to transfer a relative into a full URL
    const url = new URL(src, window.location.href);
    // only allow http or https
    if (url.protocol === 'http:' || url.protocol === 'https:') {
        var embed = document.createElement("embed");
        embed.src = e.dataset.src;
        embed.type = "application/pdf";
        embed.style.cssText = e.style.cssText;
        e.replaceWith(embed);
    } else {
        // optional: log the error in case the URL could not be parsed
        console.error("Invalid URL: " + src);
    }
});

/* Google Forms embed for forms without the /e attr. */
mw.hook('wikipage.content').add(function($content) {
    if (!$content) {
        return;
    }
    $content.find('.googleforms-alt').each(function() {
        var $this = $(this),
            id = $this.attr('data-forms-id'),
            widget = $this.attr('data-widget') || true;
            css = {
                width: 'inherit',
                height: 'inherit',
                border: 0
            };
        $this.html(
            $('<iframe>', {
                src: 'https://docs.google.com/forms/d/' + id + '/viewform?embedded=true&hl=' + mw.config.get('wgUserLanguage'),
                css: css
            })
        );
    });
});

// other theme script stuff (executed at the end of the script for performance)

// Re-detect theme if the document classes have changed
new MutationObserver(function(mutations) {
    mutations.forEach(function(mutation) {
        if (mutation.type !== "attributes" || mutation.attributeName !== "class") {
            return;
        }
        const newTheme = detectTheme();
        if (newTheme !== lastTheme) {
            handleThemeUpdate(newTheme);
        }
        lastTheme = newTheme;
    });
}).observe(document.documentElement, {attributes: true});

// Re-detect theme if the browser colour scheme has changed
matchColorScheme.addListener(function(event) {
    handleThemeUpdate(detectTheme());
});

mw.loader.using('mediawiki.util').then(function () {
    // Skip certain pages
    var excludedPages = ['Main Page','Dovedale Wiki']; // Add page titles to exclude
    var pageTitle = mw.config.get('wgTitle');
    
    if (mw.config.get('wgNamespaceNumber') < 0 || excludedPages.includes(pageTitle)) {
        return; // Do nothing on these pages
    }

    // Create the container at the end of the page
    var giscusContainer = document.createElement('div');
    giscusContainer.id = 'giscus-comments';
    giscusContainer.style.marginTop = '20px';
    document.getElementById('mw-content-text').appendChild(giscusContainer);

    // Load Giscus script
    var script = document.createElement('script');
    script.src = "https://giscus.app/client.js";
    script.setAttribute('data-repo', 'dovedalewiki/comments');
    script.setAttribute('data-repo-id', 'R_kgDON2yQcw');
    script.setAttribute('data-category', 'General');
    script.setAttribute('data-category-id', 'DIC_kwDON2yQc84CmzZl');
    script.setAttribute('data-mapping', 'title');
    script.setAttribute('data-strict', '1');
    script.setAttribute('data-reactions-enabled', '1');
    script.setAttribute('data-emit-metadata', '0');
    script.setAttribute('data-input-position', 'top');
    script.setAttribute('data-theme', 'dark');
    script.setAttribute('data-lang', 'en');
    script.setAttribute('data-loading', 'lazy');
    script.setAttribute('crossorigin', 'anonymous');
    script.async = true;

    giscusContainer.appendChild(script);
});
🍪 Yum Yum Yum! Cookies help us better deliver our services. By using our site, you agree to our use of cookies.