MediaWiki:BloodTest.js — различия между версиями

Материал из Guild Wars 2 wiki
Перейти к: навигация, поиск
 
(не показана 31 промежуточная версия этого же участника)
Строка 2: Строка 2:
 
* Подгружается через MediaWiki:Common.js
 
* Подгружается через MediaWiki:Common.js
 
*/
 
*/
 
(function() {
 
    var buttonsContainer = document.getElementById("gmvbuttons"),
 
        buttons, button, pveIcon, pvpIcon, wvwIcon, regexp, splitter, i;
 
 
    if (!buttonsContainer) return;
 
 
    pveIcon = "<img alt='Game mode version' " +
 
        "src='https://wiki.guildwars2.com/images/thumb/c/cc/Hero_panel_Menu_Bar_icon.png/16px-Hero_panel_Menu_Bar_icon.png' width='16' height='16' " +
 
        "srcset='https://wiki.guildwars2.com/images/thumb/c/cc/Hero_panel_Menu_Bar_icon.png/24px-Hero_panel_Menu_Bar_icon.png 1.5x, " +
 
        "https://wiki.guildwars2.com/images/c/cc/Hero_panel_Menu_Bar_icon.png 2x'> ";
 
    pvpIcon = "<img alt='Game mode version' " +
 
        "src='https://wiki.guildwars2.com/images/thumb/2/23/PvP_Menu_Bar_icon.png/16px-PvP_Menu_Bar_icon.png' width='16' height='16' " +
 
        "srcset='https://wiki.guildwars2.com/images/thumb/2/23/PvP_Menu_Bar_icon.png/24px-PvP_Menu_Bar_icon.png 1.5x, " +
 
        "https://wiki.guildwars2.com/images/2/23/PvP_Menu_Bar_icon.png 2x'> ";
 
    wvwIcon = "<img alt='Game mode version' " +
 
        "src='https://wiki.guildwars2.com/images/thumb/1/1b/WvW_Menu_Bar_icon.png/16px-WvW_Menu_Bar_icon.png' width='16' height='16' " +
 
        "srcset='https://wiki.guildwars2.com/images/thumb/1/1b/WvW_Menu_Bar_icon.png/24px-WvW_Menu_Bar_icon.png 1.5x, " +
 
        "https://wiki.guildwars2.com/images/1/1b/WvW_Menu_Bar_icon.png 2x'> ";
 
    regexp = /\s+/i;
 
    splitter = " / ";
 
 
    buttons = buttonsContainer.getAttribute("data-gmvbuttons").split(",");
 
    for (i = 0; i < buttons.length; i++) {
 
        button = document.createElement("button");
 
        button.setAttribute("id", buttons[i]);
 
        button.setAttribute("class", (!i) ? "gmvbutton active" : "gmvbutton");
 
        button.innerHTML = "<b>" + getIcon(buttons[i]) + "</b>";
 
        buttonsContainer.appendChild(button);
 
    }
 
 
 
    document.querySelectorAll(".gamemode.wvw:not(.pve)").forEach(hide);
 
    document.querySelectorAll(".gamemode.pvp:not(.pve)").forEach(hide);
 
 
 
    function getIcon(text) {
 
        switch (text) {
 
            case "pve":
 
                return pveIcon + text.toUpperCase();
 
            case "pvp":
 
                return pvpIcon + text.toUpperCase();
 
            case "wvw":
 
                return wvwIcon + text.toUpperCase();
 
            case "pve wvw":
 
                return pveIcon + text.replace(regexp, splitter).toUpperCase() + " " + wvwIcon;
 
            case "pve pvp":
 
                return pveIcon + text.replace(regexp, splitter).toUpperCase() + " " + pvpIcon;
 
            case "wvw pvp":
 
                return wvwIcon + text.replace(regexp, splitter).toUpperCase() + " " + pvpIcon;
 
        }
 
    }
 
 
    function hide(elem) {
 
        elem.style.display = "none";
 
    }
 
})();
 

Текущая версия на 15:57, 21 октября 2018

/* Для тестирования разной фигни. 
* Подгружается через MediaWiki:Common.js
*/