MediaWiki:Common.js/search.js: Difference between revisions

From OniGalore
No edit summary
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 13: Line 13:
         return opt;
         return opt;
     }
     }
     var topline = document.getElementByClass('mw-body-subheader');
 
     topline.style.color = "blue";
     var topline = document.getElementsByClassName('mw-body-subheader');
     topline.innerText = "Not finding what you're looking for? Select a different search engine from the dropdown menu below and try again.";
     topline[0].style.color = "blue";
     topline[0].innerText = "Not finding what you're looking for? Select a different search engine from the dropdown menu below and try again.";
 
     if (document.forms.powersearch)
     if (document.forms.powersearch)
         var searchForm = document.forms.powersearch;
         var searchForm = document.forms.powersearch;

Latest revision as of 03:41, 28 December 2025

/** Change Special:Search to use a drop-down menu *******************************************************
  *
  *  Description: Change Special:Search to use a drop-down menu, with the default being
  *               the internal MediaWiki engine
  *  Copied from https://en.wikipedia.org/wiki/MediaWiki:Gadget-externalsearch.js
  */

function SpecialSearchEnhanced() {
    var createOption = function(site, action, mainQ, addQ, addV) {
        var opt = document.createElement('option');
        opt.appendChild(document.createTextNode(site));
        window.searchEngines.push([action, mainQ, addQ, addV]);
        return opt;
    }

    var topline = document.getElementsByClassName('mw-body-subheader');
    topline[0].style.color = "blue";
    topline[0].innerText = "Not finding what you're looking for? Select a different search engine from the dropdown menu below and try again.";

    if (document.forms.powersearch)
        var searchForm = document.forms.powersearch;
    if (document.forms.search)
        var searchForm = document.forms.search;

    if (searchForm.lsearchbox) {
        var searchBox = searchForm.lsearchbox;
    } else {
        var searchBox = searchForm.search;
    }
    var selectBox = document.createElement('select');
    selectBox.id = 'searchEngine';
    searchForm.onsubmit = function() {
        var optSelected = window.searchEngines[document.getElementById('searchEngine').selectedIndex];
        searchForm.action = optSelected[0];
        searchBox.name = optSelected[1];
        searchForm.title.value = optSelected[3];
        searchForm.title.name = optSelected[2];
    }
    selectBox.appendChild(createOption('MediaWiki Search', mw.config.get( 'wgScript' ), 'search', 'title', 'Special:Search'));
    selectBox.appendChild(createOption('Google', 'https://www.google.com/search', 'q', 'sitesearch', 'wiki.oni2.net'));
    selectBox.appendChild(createOption('Yahoo!', 'https://search.yahoo.com/search', 'p', 'vs', 'wiki.oni2.net'));
    selectBox.appendChild(createOption('Bing', 'https://www.bing.com/search', 'q', 'q1', 'site:https://wiki.oni2.net'));
    searchBox.style.marginLeft = '0px';
    if (document.getElementById('loadStatus')) {
        var lStat = document.getElementById('loadStatus');
    } else {
        var lStat = searchForm.title;
        if( typeof lStat === 'object'  && typeof lStat.length === 'number' ) lStat = lStat[0];
    }
    lStat.parentNode.insertBefore(selectBox, lStat);
}

window.searchEngines = [];

// Script is specific to Special:Search
if ( mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Search'){
  $(SpecialSearchEnhanced);
}