Module:SkillNav/zh-hant: Difference between revisions

From Elwiki
No edit summary
Tag: Manual revert
No edit summary
Line 3: Line 3:
local p = {}
local p = {}


-- Main process
function p.main(frame)
function p.main(frame)
     local args = getArgs(frame);
     local args = getArgs(frame);


    -- Making life easier.
     function inArgs(name)
     function inArgs(name)
         if (inArray(name, args)) then
         if (inArray(name, args)) then
Line 16: Line 14:
     local isForceNav = args.forcenav ~= nil;
     local isForceNav = args.forcenav ~= nil;


    -- Prepare a table of skill types to display in the navigation.
     local skill_types;
     local skill_types;
     if (not isForceNav) then
     if (not isForceNav) then
         skill_types = {{
         skill_types = {
             name = args.l_hyper, -- 'Hyper Active',
             { name = args.l_hyper, abbr = 'HA' },
            abbr = 'HA'
             { name = args.l_secret, abbr = 'SeA' },
        }, {
             { name = args.l_special, abbr = 'SA' },
             name = args.l_secret, -- 'Secret Art',
             { name = args.l_active, abbr = 'A' },
            abbr = 'SeA'
             { name = args.l_mod, abbr = 'FC', mod = true, link_suffix = '/Mod' },
        }, {
             { name = args.l_mod2, abbr = 'FC2', mod = true, force_class = 'base' },
             name = args.l_special, -- 'Special Active',
             { name = args.l_buff, abbr = 'B' },
            abbr = 'SA'
             { name = args.l_passive, abbr = 'P' },
        }, {
             { name = args.l_demon, abbr = 'MD' },
             name = args.l_active, -- 'Active',
             { name = '[[File:ForceIcon.png|16px]] ' .. args.l_demon, abbr = 'MDF', mod = true, link_suffix = '/Mod' },
            abbr = 'A'
             { name = args.l_master, abbr = 'MS' },
        }, {
             { name = args.l_couple, abbr = 'Wed' },
             name = args.l_mod, -- 'Force Mod',
             { name = args.l_row1, abbr = 'row1' },
            abbr = 'FC',
             { name = args.l_row2, abbr = 'row2' },
            mod = true,
             { name = args.l_row3, abbr = 'row3' },
            link_suffix = '/Mod'
             { name = args.l_row4, abbr = 'row4' },
        }, {
         }
             name = args.l_mod2, -- 'Base Mod',
            abbr = 'FC2',
            mod = true,
            force_class = 'base'
        }, {
             name = args.l_buff, -- 'Buff',
            abbr = 'B'
        }, {
             name = args.l_passive, -- 'Passive',
            abbr = 'P'
        }, {
             name = args.l_demon, -- 'Manic Demon',
            abbr = 'MD'
        }, {
             name = '[[File:ForceIcon.png|16px]] ' .. args.l_demon, -- 'Manic Demon (Force)',
            abbr = 'MDF',
            mod = true,
            link_suffix = '/Mod'
        }, {
             name = args.l_master, -- 'Master Skill',
            abbr = 'MS'
        }, {
             name = args.l_couple, -- 'Couple Skill',
            abbr = 'Wed'
        }, {
             name = args.l_row1, -- 'Row 1',
            abbr = 'row1'
        }, {
             name = args.l_row2, -- 'Row 2',
            abbr = 'row2'
        }, {
             name = args.l_row3, -- 'Row 3',
            abbr = 'row3'
        }, {
             name = args.l_row4, -- 'Row 4',
            abbr = 'row4'
         }}
     else
     else
        -- Force Nav called, change skill types
         skill_types = {
         skill_types = {{
             { name = args.l_force_active, abbr = 'FA3', type = 'third' },
             name = args.l_force_active, -- 'Force Active',
             { name = args.l_force_passive, abbr = 'FP3', type = 'third' },
            abbr = 'FA3',
             { name = args.l_force_active, abbr = 'FAM', type = 'master' },
            type = 'third'
             { name = args.l_force_passive, abbr = 'FPM', type = 'master' },
        }, {
         }
             name = args.l_force_passive, -- 'Force Passive',
            abbr = 'FP3',
            type = 'third'
        }, {
             name = args.l_force_active, -- 'Force Active',
            abbr = 'FAM',
            type = 'master'
        }, {
             name = args.l_force_passive, -- 'Force Passive',
            abbr = 'FPM',
            type = 'master'
         }}
     end
     end


    -- For backward compatibility. Do not remove until all pages are changed.
     if (args.name == nil) then
     if (args.name == nil) then
         args.name = args.Name;
         args.name = args.Name;
     end
     end


    -- Needed this to make a custom toggle.
     local char_name_sanitized = '';
     local char_name_sanitized = '';
     local char_name = args.name;
     local char_name = args.name;
Line 113: Line 59:
     end
     end


    -- Main block
     local skill_nav = mw.html.create('div'):addClass('skill-nav');
     local skill_nav = mw.html.create('div'):addClass('skill-nav');
     if (isForceNav) then
     if (isForceNav) then
Line 119: Line 64:
     end
     end


    -- Header
     local header = skill_nav:tag('div'):addClass('skill-nav-header');
     local header = skill_nav:tag('div'):addClass('skill-nav-header');
     local colors;
     local colors;
Line 129: Line 73:
             args = {'Character', args.char}
             args = {'Character', args.char}
         };
         };
    end
    colors = colors:gsub('#', '#')
    header:css('background-color', colors);
    if (args.is_guild ~= nil) then
        header:css({ ['justify-content'] = 'center', ['background-color'] = colors });
     end
     end


    -- Redirect to language subpages if provided.
     local is_localized = args.lang ~= nil;
     local is_localized = args.lang ~= nil;
     local lang_suffix = '';
     local lang_suffix = '';
Line 138: Line 88:
     end
     end


    colors = colors:gsub('#', '#')
   
    header:css('background-color', colors);
    if (args.is_guild ~= nil) then
        header:css({
            ['justify-content'] = 'center',
            ['background-color'] = colors
        });
    end
   
     if (not isForceNav and not args.is_guild) then
     if (not isForceNav and not args.is_guild) then
         header:wikitext(frame:expandTemplate{
         header:wikitext(frame:expandTemplate{
Line 161: Line 100:
         })
         })
     end
     end
    -- Header text with a link
 
     if (args.l_name == nil) then
     if (args.l_name == nil) then
         args.l_name = args.name;
         args.l_name = args.name;
Line 172: Line 111:
     end
     end


    -- Generate the navigation's body
     local skill_nav_wrap = skill_nav:tag('div'):addClass('skill-nav-inner-wrap border-color')
     local skill_nav_wrap = skill_nav:tag('div'):addClass('skill-nav-inner-wrap border-color')
     if (args.type ~= nil) then
     if (args.type ~= nil) then
         skill_nav_wrap:addClass(args.type);
         skill_nav_wrap:addClass(args.type);
     end
     end
    -- Make it collapsible if needed.
     if ((args.type ~= nil and string.find(args.type, 'mw%-collapsible') ~= nil) or args.collapsible ~= nil) then
     if ((args.type ~= nil and string.find(args.type, 'mw%-collapsible') ~= nil) or args.collapsible ~= nil) then
         skill_nav_wrap:attr('id', 'mw-customcollapsible-' .. char_name_sanitized);
         skill_nav_wrap:attr('id', 'mw-customcollapsible-' .. char_name_sanitized);
Line 189: Line 126:
     end
     end


    -- Generate the navigation's body content.
     for k2, v2 in spairs(skill_types) do
     for k2, v2 in spairs(skill_types) do
         local name = v2['name'];
         local name = v2.name;
         local abbr = v2['abbr'];
         local abbr = v2.abbr;
         local type = v2['type'];
         local type = v2.type;
         local mod = v2['mod'];
         local mod = v2.mod;
         local link_suffix = v2['link_suffix'] or '';
         local link_suffix = v2.link_suffix or '';
         local force_class = v2['force_class'];
         local force_class = v2.force_class;
 
         if (inArgs(abbr)) then
         if (inArgs(abbr)) then
            -- Syntax: [image.extension]; [name]; [image.extension]; [name]; (...)
             local skills = split(args[abbr], ';');
             local skills = split(args[abbr], ';');
             if (abbr == 'Wed') then
             if (abbr == 'Wed') then
Line 206: Line 142:
                 }
                 }
             end
             end
            -- Separate syntax for Master Skills: [Stage 1 image]; [Stage 2 image]; [Stage 3 image]; [Stage 4 image]; [skill name];
 
             local mc_skill_name = ''
             local mc_skill_name = ''
             local mc_skill_name_head = ''
             local mc_skill_name_head = ''
Line 225: Line 161:
                 skills[2] = mc_skill_name .. '/Stage 1' .. lang_suffix .. '|' .. args.l_stage .. ' 1';
                 skills[2] = mc_skill_name .. '/Stage 1' .. lang_suffix .. '|' .. args.l_stage .. ' 1';
             end
             end
            local i = 1;


            -- If Force Nav, append an extra header before "Force Active" if needed.
             if (abbr == 'FA3' or abbr == 'FAM') then
             if (abbr == 'FA3' or abbr == 'FAM') then
                 local extra_head = skill_nav_wrap:tag('div'):addClass(
                 local extra_head = skill_nav_wrap:tag('div'):addClass('skill-nav-sub-head skill-nav-extra-head border-color tone-7 color-normal-force-link');
                    'skill-nav-sub-head skill-nav-extra-head border-color tone-7 color-normal-force-link');
                 if (type == 'third') then
                 if (type == 'third') then
                     extra_head:wikitext('[[3rd Jobs' .. lang_suffix .. '|' .. args.l_third_job .. ']]');
                     extra_head:wikitext('[[3rd Jobs' .. lang_suffix .. '|' .. args.l_third_job .. ']]');
Line 238: Line 171:
             end
             end


            -- Append header fields on the left.
             skill_nav_wrap:tag('div'):addClass('skill-nav-sub-head border-color tone-4'):wikitext(name .. mc_skill_name_head);
             skill_nav_wrap:tag('div'):addClass('skill-nav-sub-head border-color tone-4'):wikitext(name ..
                                                                                                      mc_skill_name_head);


            -- Get localized names
             local l_display_names = nil;
             local l_display_names = nil;
             if (abbr ~= 'MS' and args['l_' .. abbr] ~= nil) then
             if (abbr ~= 'MS' and args['l_' .. abbr] ~= nil) then
Line 248: Line 178:
             end
             end


            -- Append skill fields on the right.
             local content = skill_nav_wrap:tag('div'):addClass('skill-nav-skill-content border-color tone-6');
             local content = skill_nav_wrap:tag('div'):addClass('skill-nav-skill-content border-color tone-6');
             for k, v in pairs(skills) do
             local i = 1;
                 if v == nil then
            while i <= #skills do
                     return
                local icon = skills[i];
                local skill_name = skills[i + 1];
                local display_name = skills[i + 2] or skill_name;
 
                if icon == nil or skill_name == nil then break end
 
                 if is_localized and abbr ~= 'MS' and l_display_names ~= nil then
                     display_name = l_display_names[math.ceil(i / 3)];
                 end
                 end
                 -- Fetch skills every 2 table elements, since we don't want doubles.
                 display_name = display_name:gsub("%s%([%w%s%/]+%)", "");
                if (i % 2 == 0) then
 
                    -- The display name of skills
                local skill_entry = content:tag('div'):addClass('skill-nav-skill tone-7-hover color-normal-force-link tone-8-active');
                    local v_display_name = v;
                local skill_icon = skill_entry:tag('div'):addClass('skill-nav-image');
                    if (is_localized and abbr ~= 'MS' and l_display_names ~= nil) then
                        v_display_name = l_display_names[i / 2];
                    end
                    -- Remove stuff like (Elesis) or (Elsword) in skill display name
                    v_display_name = v_display_name:gsub("%s%([%w%s%/]+%)", "");


                    -- Append the actual skills.
                if mod then
                    local skill_entry = content:tag('div'):addClass(
                    skill_entry:wikitext('[[' .. skill_name .. link_suffix .. lang_suffix .. '|' .. display_name .. ']]');
                        'skill-nav-skill tone-7-hover color-normal-force-link tone-8-active');
                    skill_icon:wikitext(frame:expandTemplate{
                    local skill_icon = skill_entry:tag('div'):addClass('skill-nav-image')
                        title = 'Force',
                    if (mod) then
                        args = {
                        -- [Mod] case
                            trim(icon),
                        skill_entry:wikitext('[[' .. v .. link_suffix .. lang_suffix .. '|' .. v_display_name .. ']]');
                            link = skill_name,
                        skill_icon:wikitext(frame:expandTemplate{
                            language = args.lang,
                            title = 'Force',
                            size = '3',
                            args = {
                            class = force_class
                                trim(skills[i - 1]), -- closest smaller odd element will be the icon
                        }
                                link = v,
                    });
                                language = args.lang,
                else
                                size = '3',
                    if abbr == 'MS' or abbr == 'Wed' then
                                class = force_class
                         skill_entry:wikitext('[[' .. display_name .. ']]');
                            }
                         });
                     else
                     else
                         -- Normal skill case
                         skill_entry:wikitext('[[' .. skill_name .. lang_suffix .. '|' .. display_name .. ']]');
                        if (abbr == 'MS' or abbr == 'Wed') then
                            -- Master Skill/Wedding Skill case
                            skill_entry:wikitext('[[' .. v_display_name .. ']]');
                        else
                            skill_entry:wikitext('[[' .. v .. lang_suffix .. '|' .. v_display_name .. ']]');
                        end
 
                        skill_icon:wikitext('[[File:' .. trim(skills[i - 1]) .. '|30px|link= ' .. v .. lang_suffix ..
                                                ']]');
                     end
                     end
                    skill_icon:wikitext('[[File:' .. trim(icon) .. '|30px|link=' .. skill_name .. lang_suffix .. ']]');
                 end
                 end
                 i = i + 1;
 
                 i = i + 3;
             end
             end
         end
         end
     end
     end


    -- Append the Force Skill Navigation if needed.
     local force_nav = ''
     local force_nav = ''
     if (args.FS == 'true') then
     if (args.FS == 'true') then
Line 313: Line 234:
     end
     end


    -- Output point
     return tostring(skill_nav) .. force_nav;
     return tostring(skill_nav) .. force_nav;
end
end


return p
return p

Revision as of 20:28, 23 April 2025

Documentation for this module may be created at Module:SkillNav/zh-hant/doc

require('Module:CommonFunctions')
local getArgs = require('Module:Arguments').getArgs
local p = {}

function p.main(frame)
    local args = getArgs(frame);

    function inArgs(name)
        if (inArray(name, args)) then
            return true
        end
    end

    local isForceNav = args.forcenav ~= nil;

    local skill_types;
    if (not isForceNav) then
        skill_types = {
            { name = args.l_hyper, abbr = 'HA' },
            { name = args.l_secret, abbr = 'SeA' },
            { name = args.l_special, abbr = 'SA' },
            { name = args.l_active, abbr = 'A' },
            { name = args.l_mod, abbr = 'FC', mod = true, link_suffix = '/Mod' },
            { name = args.l_mod2, abbr = 'FC2', mod = true, force_class = 'base' },
            { name = args.l_buff, abbr = 'B' },
            { name = args.l_passive, abbr = 'P' },
            { name = args.l_demon, abbr = 'MD' },
            { name = '[[File:ForceIcon.png|16px]] ' .. args.l_demon, abbr = 'MDF', mod = true, link_suffix = '/Mod' },
            { name = args.l_master, abbr = 'MS' },
            { name = args.l_couple, abbr = 'Wed' },
            { name = args.l_row1, abbr = 'row1' },
            { name = args.l_row2, abbr = 'row2' },
            { name = args.l_row3, abbr = 'row3' },
            { name = args.l_row4, abbr = 'row4' },
        }
    else
        skill_types = {
            { name = args.l_force_active, abbr = 'FA3', type = 'third' },
            { name = args.l_force_passive, abbr = 'FP3', type = 'third' },
            { name = args.l_force_active, abbr = 'FAM', type = 'master' },
            { name = args.l_force_passive, abbr = 'FPM', type = 'master' },
        }
    end

    if (args.name == nil) then
        args.name = args.Name;
    end

    local char_name_sanitized = '';
    local char_name = args.name;
    if (isForceNav and args.parent_name ~= nil) then
        char_name = args.parent_name;
    end
    for w in char_name:gmatch("%w+") do
        char_name_sanitized = char_name_sanitized .. w;
    end
    if (isForceNav and args.parent_name ~= nil) then
        char_name_sanitized = 'ForceSkills-' .. char_name_sanitized;
    end

    local skill_nav = mw.html.create('div'):addClass('skill-nav');
    if (isForceNav) then
        skill_nav:addClass('force-nav');
    end

    local header = skill_nav:tag('div'):addClass('skill-nav-header');
    local colors;
    if (args.color ~= nil) then
        colors = args.color;
    else
        colors = frame:expandTemplate{
            title = 'ColorSel',
            args = {'Character', args.char}
        };
    end
    colors = colors:gsub('&#35;', '#')

    header:css('background-color', colors);

    if (args.is_guild ~= nil) then
        header:css({ ['justify-content'] = 'center', ['background-color'] = colors });
    end

    local is_localized = args.lang ~= nil;
    local lang_suffix = '';
    if (is_localized) then
        lang_suffix = '/' .. args.lang;
    end

    if (not isForceNav and not args.is_guild) then
        header:wikitext(frame:expandTemplate{
            title = 'Face',
            args = {
                args.char,
                args.pic,
                link = args.name,
                lang = lang_suffix,
                scale = '0.85'
            }
        })
    end

    if (args.l_name == nil) then
        args.l_name = args.name;
    end
    local headerText = header:tag('span'):addClass('skill-nav-title');
    if (not isForceNav) then
        headerText:wikitext('[[' .. args.name .. lang_suffix .. '|' .. args.l_name .. ']] - ' .. args.l_skills);
    else
        headerText:wikitext(args.name);
    end

    local skill_nav_wrap = skill_nav:tag('div'):addClass('skill-nav-inner-wrap border-color')
    if (args.type ~= nil) then
        skill_nav_wrap:addClass(args.type);
    end
    if ((args.type ~= nil and string.find(args.type, 'mw%-collapsible') ~= nil) or args.collapsible ~= nil) then
        skill_nav_wrap:attr('id', 'mw-customcollapsible-' .. char_name_sanitized);
        header:tag('div'):addClass('mw-customtoggle-' .. char_name_sanitized);
    end
    if (args.collapsible ~= nil) then
        skill_nav_wrap:addClass('mw-collapsible');
    end
    if (args.collapsed ~= nil) then
        skill_nav_wrap:addClass('mw-collapsed');
    end

    for k2, v2 in spairs(skill_types) do
        local name = v2.name;
        local abbr = v2.abbr;
        local type = v2.type;
        local mod = v2.mod;
        local link_suffix = v2.link_suffix or '';
        local force_class = v2.force_class;

        if (inArgs(abbr)) then
            local skills = split(args[abbr], ';');
            if (abbr == 'Wed') then
                skills = {
                    'RelationSkill1.png', 'Extreme Heavenly Love' .. lang_suffix .. '|' .. args.l_couple_skill_name,
                    'RelationSkill2.png', 'Extreme Heavenly Bond' .. lang_suffix .. '|' .. args.l_soulmate_skill_name
                }
            end

            local mc_skill_name = ''
            local mc_skill_name_head = ''
            if (abbr == 'MS') then
                mc_skill_name = skills[5];
                mc_skill_name = mc_skill_name:gsub('ä', 'a');
                local l_mc_skill_name = skills[5];
                if (args.l_mc_skill_name ~= nil and is_localized) then
                    l_mc_skill_name = args.l_mc_skill_name;
                end
                mc_skill_name_head = '<br/>- ' .. l_mc_skill_name;
                skills[7] = skills[4];
                skills[5] = skills[3];
                skills[3] = skills[2];
                skills[8] = mc_skill_name .. '/Stage 4' .. lang_suffix .. '|' .. args.l_stage .. ' 4';
                skills[6] = mc_skill_name .. '/Stage 3' .. lang_suffix .. '|' .. args.l_stage .. ' 3';
                skills[4] = mc_skill_name .. '/Stage 2' .. lang_suffix .. '|' .. args.l_stage .. ' 2';
                skills[2] = mc_skill_name .. '/Stage 1' .. lang_suffix .. '|' .. args.l_stage .. ' 1';
            end

            if (abbr == 'FA3' or abbr == 'FAM') then
                local extra_head = skill_nav_wrap:tag('div'):addClass('skill-nav-sub-head skill-nav-extra-head border-color tone-7 color-normal-force-link');
                if (type == 'third') then
                    extra_head:wikitext('[[3rd Jobs' .. lang_suffix .. '|' .. args.l_third_job .. ']]');
                elseif (type == 'master') then
                    extra_head:wikitext('[[Master Class' .. lang_suffix .. '|' .. args.l_master_class .. ']]');
                end
            end

            skill_nav_wrap:tag('div'):addClass('skill-nav-sub-head border-color tone-4'):wikitext(name .. mc_skill_name_head);

            local l_display_names = nil;
            if (abbr ~= 'MS' and args['l_' .. abbr] ~= nil) then
                l_display_names = split(args['l_' .. abbr], ";");
            end

            local content = skill_nav_wrap:tag('div'):addClass('skill-nav-skill-content border-color tone-6');
            local i = 1;
            while i <= #skills do
                local icon = skills[i];
                local skill_name = skills[i + 1];
                local display_name = skills[i + 2] or skill_name;

                if icon == nil or skill_name == nil then break end

                if is_localized and abbr ~= 'MS' and l_display_names ~= nil then
                    display_name = l_display_names[math.ceil(i / 3)];
                end
                display_name = display_name:gsub("%s%([%w%s%/]+%)", "");

                local skill_entry = content:tag('div'):addClass('skill-nav-skill tone-7-hover color-normal-force-link tone-8-active');
                local skill_icon = skill_entry:tag('div'):addClass('skill-nav-image');

                if mod then
                    skill_entry:wikitext('[[' .. skill_name .. link_suffix .. lang_suffix .. '|' .. display_name .. ']]');
                    skill_icon:wikitext(frame:expandTemplate{
                        title = 'Force',
                        args = {
                            trim(icon),
                            link = skill_name,
                            language = args.lang,
                            size = '3',
                            class = force_class
                        }
                    });
                else
                    if abbr == 'MS' or abbr == 'Wed' then
                        skill_entry:wikitext('[[' .. display_name .. ']]');
                    else
                        skill_entry:wikitext('[[' .. skill_name .. lang_suffix .. '|' .. display_name .. ']]');
                    end
                    skill_icon:wikitext('[[File:' .. trim(icon) .. '|30px|link=' .. skill_name .. lang_suffix .. ']]');
                end

                i = i + 3;
            end
        end
    end

    local force_nav = ''
    if (args.FS == 'true') then
        force_nav = frame:expandTemplate{
            title = 'ForceSkillNav' .. lang_suffix,
            args = {
                type = 'mw-collapsible mw-collapsed',
                char = colors,
                Color = args.color,
                parent_name = args.name
            }
        }
    end

    return tostring(skill_nav) .. force_nav;
end

return p