Module:SubSkillsTable: Difference between revisions
From Heroes of Might and Magic: Olden Era Official Wiki
Undo revision 22078 by 76561198256426587 (talk) Tag: Undo |
No edit summary Tag: Manual revert |
||
| Line 9: | Line 9: | ||
local result = (res and #res > 0) and res[1][field] or "" | local result = (res and #res > 0) and res[1][field] or "" | ||
-- Retourne la valeur trouvée ou la valeur par défaut si vide | |||
return (result ~= "") and result or (default or "") | return (result ~= "") and result or (default or "") | ||
end | end | ||
-- Fonction pour récupérer les infos d'un SubSkill | -- Fonction pour récupérer les infos d'un SubSkill | ||
local function getSubSkillInfo(sub_id, lang | local function getSubSkillInfo(sub_id, lang) | ||
local sub_def = mw.ext.cargo.query("SubSkill", "icon", { where = string.format("id = '%s'", sub_id), limit = 1 }) | local sub_def = mw.ext.cargo.query("SubSkill", "icon", { where = string.format("id = '%s'", sub_id), limit = 1 }) | ||
local icon = (sub_def and #sub_def > 0) and sub_def[1].icon or "Placeholder" | local icon = (sub_def and #sub_def > 0) and sub_def[1].icon or "Placeholder" | ||
local name = getTrans(sub_id, "sub_skill", lang, "name") | local name = getTrans(sub_id, "sub_skill", lang, "name") | ||
local desc = getTrans(sub_id, "sub_skill", lang, "description") | local desc = getTrans(sub_id, "sub_skill", lang, "description") | ||
return { name = name, desc = desc, icon = icon } | return { name = name, desc = desc, icon = icon } | ||
end | end | ||
| Line 72: | Line 27: | ||
local lang = frame.args.language or "en" | local lang = frame.args.language or "en" | ||
-- | -- Récupération des en-têtes avec fallback | ||
local hSkill = getTrans("wiki_skills", "wiki", lang, "name", nil, "Skills") | local hSkill = getTrans("wiki_skills", "wiki", lang, "name", nil, "Skills") | ||
local hSub = getTrans("wiki_sub_skills", "wiki", lang, "name", nil, "Subskills") | local hSub = getTrans("wiki_sub_skills", "wiki", lang, "name", nil, "Subskills") | ||
| Line 85: | Line 38: | ||
if not levels or #levels == 0 then return "Aucun niveau trouvé." end | if not levels or #levels == 0 then return "Aucun niveau trouvé." end | ||
-- Construction du tableau | |||
local html = {'{| class="wikitable" style="width:100%; border-collapse:collapse;"'} | 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=6 | ' .. hSub) | ||
| Line 91: | Line 45: | ||
local name = getTrans(skill_id, "skill_level", lang, "name", lvl.level) | local name = getTrans(skill_id, "skill_level", lang, "name", lvl.level) | ||
local desc = getTrans(skill_id, "skill_level", lang, "description", 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" | local icon = (lvl.icon and lvl.icon ~= "") and lvl.icon or "Placeholder" | ||
table.insert(html, '|- style="vertical-align:top;"') | table.insert(html, '|- style="vertical-align:top;"') | ||
-- Colonnes Skill | |||
table.insert(html, '| style="width:70px; border-right:0px;" | [[File:' .. icon .. '.png|70px]]') | table.insert(html, '| style="width:70px; border-right:0px;" | [[File:' .. icon .. '.png|70px]]') | ||
table.insert(html, '| style="border-left:0px; width:200px;" | \'\'\'' .. name .. '\'\'\' <br /><br />' .. desc .. '') | table.insert(html, '| style="border-left:0px; width:200px;" | \'\'\'' .. name .. '\'\'\' <br /><br />' .. desc .. '') | ||
-- Parsing des SubSkills | |||
local subs = {} | local subs = {} | ||
if lvl.offered_sub_skills then | if lvl.offered_sub_skills then | ||
| Line 105: | Line 58: | ||
end | end | ||
-- Boucle sur les 3 emplacements de SubSkills | |||
for i = 1, 3 do | for i = 1, 3 do | ||
if subs[i] then | if subs[i] then | ||
local info = getSubSkillInfo(subs[i], lang | local info = getSubSkillInfo(subs[i], lang) | ||
table.insert(html, '| style="width:30px; border-right:0px; padding-left:10px;" | [[File:' .. info.icon .. '.png|30px]]') | table.insert(html, '| style="width:30px; border-right:0px; padding-left:10px;" | [[File:' .. info.icon .. '.png|30px]]') | ||
table.insert(html, '| style="width:180px; border-left:0px;" | \'\'\'' .. info.name .. '\'\'\'<br /><br />' .. info.desc .. '') | table.insert(html, '| style="width:180px; border-left:0px;" | \'\'\'' .. info.name .. '\'\'\'<br /><br />' .. info.desc .. '') | ||
Revision as of 12:53, 7 June 2026
Documentation for this module may be created at Module:SubSkillsTable/doc
local p = {}
-- Fonction utilitaire robuste avec valeur par défaut
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 result = (res and #res > 0) and res[1][field] or ""
-- Retourne la valeur trouvée ou la valeur par défaut si vide
return (result ~= "") and result or (default or "")
end
-- Fonction pour récupérer les infos d'un SubSkill
local function getSubSkillInfo(sub_id, lang)
local sub_def = mw.ext.cargo.query("SubSkill", "icon", { where = string.format("id = '%s'", sub_id), limit = 1 })
local icon = (sub_def and #sub_def > 0) and sub_def[1].icon or "Placeholder"
local name = getTrans(sub_id, "sub_skill", lang, "name")
local desc = getTrans(sub_id, "sub_skill", lang, "description")
return { name = name, desc = desc, icon = icon }
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"
-- Récupération des en-têtes avec fallback
local hSkill = getTrans("wiki_skills", "wiki", lang, "name", nil, "Skills")
local hSub = getTrans("wiki_sub_skills", "wiki", lang, "name", nil, "Subskills")
local levels = mw.ext.cargo.query("SkillLevel", "level, icon, offered_sub_skills", {
where = string.format("skill_id = '%s'", skill_id),
orderBy = "level ASC"
})
if not levels or #levels == 0 then return "Aucun niveau trouvé." end
-- Construction du tableau
local html = {'{| class="wikitable" style="width:100%; border-collapse:collapse;"'}
table.insert(html, '! colspan=2 | ' .. hSkill .. ' !! colspan=6 | ' .. 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"
table.insert(html, '|- style="vertical-align:top;"')
-- Colonnes Skill
table.insert(html, '| style="width:70px; border-right:0px;" | [[File:' .. icon .. '.png|70px]]')
table.insert(html, '| style="border-left:0px; width:200px;" | \'\'\'' .. name .. '\'\'\' <br /><br />' .. desc .. '')
-- Parsing des SubSkills
local subs = {}
if lvl.offered_sub_skills then
for s in string.gmatch(lvl.offered_sub_skills, "([^,]+)") do table.insert(subs, s) end
end
-- Boucle sur les 3 emplacements de SubSkills
for i = 1, 3 do
if subs[i] then
local info = getSubSkillInfo(subs[i], lang)
table.insert(html, '| style="width:30px; border-right:0px; padding-left:10px;" | [[File:' .. info.icon .. '.png|30px]]')
table.insert(html, '| style="width:180px; border-left:0px;" | \'\'\'' .. info.name .. '\'\'\'<br /><br />' .. info.desc .. '')
else
table.insert(html, '| colspan=2 style="border-left:1px solid #ccc;" | ')
end
end
end
table.insert(html, "|}")
return table.concat(html, "\n")
end
return p


