Module:SubSkillsTable: Difference between revisions

From Heroes of Might and Magic: Olden Era Official Wiki
No edit summary
No edit summary
Line 1: Line 1:
local p = {}
local p = {}


-- Version améliorée de getTrans avec valeur par défaut
-- Fonction utilitaire pour récupérer la traduction
local function getTrans(target_id, type, lang, field, variant, default)
local function getTrans(target_id, type, lang, field, variant, default)
     local query_where = string.format("target_id = '%s' AND type = '%s' AND language = '%s'", target_id, type, lang)
     local query_where = string.format("target_id = '%s' AND type = '%s' AND language = '%s'", target_id, type, lang)
     if variant then
     if variant then query_where = query_where .. string.format(" AND variant = '%s'", variant) end
        query_where = query_where .. string.format(" AND variant = '%s'", variant)
     local res = mw.ext.cargo.query("Translation", field, { where = query_where, limit = 1 })
    end
   
     local res = mw.ext.cargo.query("Translation", field, {
        where = query_where,
        limit = 1
    })
   
     local val = (res and #res > 0) and res[1][field] or ""
     local val = (res and #res > 0) and res[1][field] or ""
     return (val ~= "") and val or (default or "")
     return (val ~= "") and val or (default or "")
Line 22: Line 15:
     local lang = frame.args.language or "en"
     local lang = frame.args.language or "en"
      
      
    -- Récupération des en-têtes
     local hSkill = getTrans("wiki_skills", "wiki", lang, "name", nil, "Compétence")
     local hSkill = getTrans("wiki_skills", "wiki", lang, "name", nil, "Compétence")
     local hSub = getTrans("wiki_sub_skills", "wiki", lang, "name", nil, "Sous-compétence")
     local hSub = getTrans("wiki_sub_skills", "wiki", lang, "name", nil, "Sous-compétence")
Line 31: Line 23:
     })
     })
      
      
     local html = {'{| class="wikitable" style="width:100%"'}
     local html = {'{| class="wikitable" style="width:100%; border-collapse:collapse;"'}
     table.insert(html, '! colspan=2 | ' .. hSkill .. ' !! colspan=6 | ' .. hSub)
     table.insert(html, '! colspan=2 | ' .. hSkill .. ' !! colspan=3 | ' .. hSub)


     for _, lvl in ipairs(levels) do
     for _, lvl in ipairs(levels) do
Line 39: Line 31:
         local icon = (lvl.icon and lvl.icon ~= "") and lvl.icon or "Placeholder"
         local icon = (lvl.icon and lvl.icon ~= "") and lvl.icon or "Placeholder"
          
          
         table.insert(html, '|- style="vertical-align:top;"')
        -- Début de ligne
         table.insert(html, '| style="text-align:right; border-right:0px;" | [[File:' .. icon .. '.png|70px]]')
         table.insert(html, '|-')
         table.insert(html, '| style="border-right:0px; width:250px;" | \'\'\'' .. name .. '\'\'\' <br /><small>' .. desc .. '</small>')
         table.insert(html, '| style="width:70px; border-right:0px;" | [[File:' .. icon .. '.png|70px]]')
         table.insert(html, '| style="border-left:0px; width:250px;" | \'\'\'' .. name .. '\'\'\' <br /><small>' .. desc .. '</small>')
          
          
         -- Boucle sur les sous-compétences
         -- Gestion des sous-compétences (3 colonnes)
        local subs = {}
         if lvl.offered_sub_skills then
         if lvl.offered_sub_skills then
             for sub_id in string.gmatch(lvl.offered_sub_skills, "([^,]+)") do
             for s in string.gmatch(lvl.offered_sub_skills, "([^,]+)") do table.insert(subs, s) end
                -- Placeholder pour le moment
        end
                local sub_name = "Sub: " .. sub_id
       
                local sub_desc = "Description placeholder pour " .. sub_id
        for i = 1, 3 do
                local sub_icon = "SubSkill_Icon_Placeholder"
            if subs[i] then
                  
                 -- Remplace ici avec de vrais appels getTrans si besoin
                 table.insert(html, '| style="text-align:center; width:120px;" | [[File:' .. sub_icon .. '.png|40px]]<br />\'\'\'' .. sub_name .. '\'\'\'<br /><small>' .. sub_desc .. '</small>')
                 table.insert(html, '| style="text-align:center; width:200px;" | \'\'\' ' .. subs[i] .. ' \'\'\'')
            else
                table.insert(html, '| ') -- Cellule vide si pas de sub-skill
             end
             end
         end
         end
        table.insert(html, '|}')
     end
     end
      
      

Revision as of 09:52, 6 June 2026

Documentation for this module may be created at Module:SubSkillsTable/doc

local p = {}

-- Fonction utilitaire pour récupérer la traduction
local function getTrans(target_id, type, lang, field, variant, default)
    local query_where = string.format("target_id = '%s' AND type = '%s' AND language = '%s'", target_id, type, lang)
    if variant then query_where = query_where .. string.format(" AND variant = '%s'", variant) end
    local res = mw.ext.cargo.query("Translation", field, { where = query_where, limit = 1 })
    local val = (res and #res > 0) and res[1][field] or ""
    return (val ~= "") and val or (default or "")
end

function p.display(frame)
    local skill_id = frame.args["id"] or frame.args[1]
    if not skill_id then return "ID requis" end
    local lang = frame.args.language or "en"
    
    local hSkill = getTrans("wiki_skills", "wiki", lang, "name", nil, "Compétence")
    local hSub = getTrans("wiki_sub_skills", "wiki", lang, "name", nil, "Sous-compétence")
    
    local levels = mw.ext.cargo.query("SkillLevel", "level, icon, offered_sub_skills", {
        where = string.format("skill_id = '%s'", skill_id),
        orderBy = "level ASC"
    })
    
    local html = {'{| class="wikitable" style="width:100%; border-collapse:collapse;"'}
    table.insert(html, '! colspan=2 | ' .. hSkill .. ' !! colspan=3 | ' .. hSub)

    for _, lvl in ipairs(levels) do
        local name = getTrans(skill_id, "skill_level", lang, "name", lvl.level)
        local desc = getTrans(skill_id, "skill_level", lang, "description", lvl.level)
        local icon = (lvl.icon and lvl.icon ~= "") and lvl.icon or "Placeholder"
        
        -- Début de ligne
        table.insert(html, '|-')
        table.insert(html, '| style="width:70px; border-right:0px;" | [[File:' .. icon .. '.png|70px]]')
        table.insert(html, '| style="border-left:0px; width:250px;" | \'\'\'' .. name .. '\'\'\' <br /><small>' .. desc .. '</small>')
        
        -- Gestion des sous-compétences (3 colonnes)
        local subs = {}
        if lvl.offered_sub_skills then
            for s in string.gmatch(lvl.offered_sub_skills, "([^,]+)") do table.insert(subs, s) end
        end
        
        for i = 1, 3 do
            if subs[i] then
                -- Remplace ici avec de vrais appels getTrans si besoin
                table.insert(html, '| style="text-align:center; width:200px;" | \'\'\' ' .. subs[i] .. ' \'\'\'')
            else
                table.insert(html, '| ') -- Cellule vide si pas de sub-skill
            end
        end
    end
    
    table.insert(html, "|}")
    return table.concat(html, "\n")
end

return p