Módulo:DeityInfobox: mudanças entre as edições

De Cronicas Eternas Wiki
Criou página com 'local p = {} function p.infobox(frame) local args = frame:getParent().args local sections = { ["INFORMAÇÃO BÁSICA"] = { {"Título", args["title"]}, {"Nível de Poder", args["power_level"]}, {"Alinhamento", args["alignment"]}, {"Plano", args["plane"]}, {"Adjetivo", args["adjective"]}, {"Símbolo", args["symbol"]}, {"Aspectos", args["aspects"]}, {"Panteão",...'
 
Sem resumo de edição
 
(Uma revisão intermediária pelo mesmo usuário não está sendo mostrada)
Linha 1: Linha 1:
local p = {}
local p = {}
-- Lista de valores que indicam ausência de informação
local ignoredValues = {
    ["Unknown"] = true,
    ["None"] = true,
    ["Nenhum"] = true,
    ["-"] = true,
    ["--"] = true,
    [""] = true
}


function p.infobox(frame)
function p.infobox(frame)
Linha 5: Linha 15:


     local sections = {
     local sections = {
         ["INFORMAÇÃO BÁSICA"] = {
         {
            {"Título", args["title"]},
            title = "INFORMAÇÃO BÁSICA",
            {"Nível de Poder", args["power_level"]},
            fields = {
            {"Alinhamento", args["alignment"]},
                {"Título", args["title"]},
            {"Plano", args["plane"]},
                {"Nível de Poder", args["power_level"]},
            {"Adjetivo", args["adjective"]},
                {"Alinhamento", args["alignment"]},
            {"Símbolo", args["symbol"]},
                {"Plano", args["plane"]},
            {"Aspectos", args["aspects"]},
                {"Adjetivo", args["adjective"]},
            {"Panteão", args["pantheon"]},
                {"Símbolo", args["symbol"]},
            {"Súdito de", args["subject_of"]},
                {"Aspectos", args["aspects"]},
            {"Servos", args["servants"]},
                {"Panteão", args["pantheon"]},
            {"Gênero", args["gender"]},
                {"Súdito de", args["subject_of"]},
            {"Morte", args["death"]},
                {"Servos", args["servants"]},
                {"Gênero", args["gender"]},
                {"Morte", args["death"]},
            },
         },
         },
         ["INFLUÊNCIA"] = {
         {
            {"Portfólio", args["portfolio"]},
            title = "INFLUÊNCIA",
            {"Domínios", args["domains"]},
            fields = {
                {"Portfólio", args["portfolio"]},
                {"Domínios", args["domains"]},
            },
         },
         },
         ["ADORAÇÃO"] = {
         {
            {"Adoradores", args["worshipers"]},
            title = "ADORAÇÃO",
            fields = {
                {"Adoradores", args["worshipers"]},
            },
         },
         },
         ["PRÉ-APOTEOSE"] = {
         {
            {"Espécie Mortal", args["mortal_species"]},
            title = "PRÉ-APOTEOSE",
            {"Sexo Mortal", args["mortal_gender"]},
            fields = {
            {"Lar Mortal", args["mortal_home"]},
                {"Espécie Mortal", args["mortal_species"]},
            {"Apoteose", args["apotheosis"]},
                {"Sexo Mortal", args["mortal_gender"]},
                {"Lar Mortal", args["mortal_home"]},
                {"Apoteose", args["apotheosis"]},
            },
         },
         },
     }
     }


     -- Início da infobox com imagem e nome
     -- Início da infobox
     local infobox = '<div style="width:22em; background:#f9f9f9; border:1px solid #aaa; float:right; padding:5px; font-size:90%;">'
     local infobox = '<div style="width:22em; background:#f9f9f9; border:1px solid #aaa; float:right; padding:5px; font-size:90%;">'


     -- Adiciona a imagem da divindade, se fornecida
     -- Adiciona a imagem no topo, se fornecida
     if args["image"] and args["image"] ~= "" then
     if args["image"] and args["image"] ~= "" then
         infobox = infobox .. string.format(
         infobox = infobox .. string.format(
Linha 51: Linha 73:
     )
     )


     -- Adiciona as seções e campos
     -- Adiciona as seções e os campos
     for section, fields in pairs(sections) do
     for _, section in ipairs(sections) do
         infobox = infobox .. string.format('<div style="text-align:center; background:#ddd; font-size:110%%; padding:4px; margin-top:5px;">%s</div>', section)
         local sectionContent = {}
         for _, field in ipairs(fields) do
 
        -- Monta os campos com conteúdo da seção
         for _, field in ipairs(section.fields) do
             local label, value = field[1], field[2]
             local label, value = field[1], field[2]
             if value and value ~= "" then
            -- Verifica se o valor é válido (não está na lista de ignorados)
                 infobox = infobox .. string.format('<div style="padding:2px 5px;"><strong>%s:</strong> %s</div>', label, value)
             if value and not ignoredValues[value:match("^%s*(.-)%s*$")] then
                 table.insert(sectionContent, string.format('<div style="padding:2px 5px;"><strong>%s:</strong> %s</div>', label, value))
             end
             end
        end
        -- Adiciona a seção somente se tiver conteúdo
        if #sectionContent > 0 then
            infobox = infobox .. string.format('<div style="text-align:center; background:#ddd; font-size:110%%; padding:4px; margin-top:5px;">%s</div>', section.title)
            infobox = infobox .. table.concat(sectionContent)
         end
         end
     end
     end

Edição atual tal como às 00h12min de 24 de novembro de 2024

A documentação para este módulo pode ser criada em Módulo:DeityInfobox/doc

local p = {}

-- Lista de valores que indicam ausência de informação
local ignoredValues = {
    ["Unknown"] = true,
    ["None"] = true,
    ["Nenhum"] = true,
    ["-"] = true,
    ["--"] = true,
    [""] = true
}

function p.infobox(frame)
    local args = frame:getParent().args

    local sections = {
        {
            title = "INFORMAÇÃO BÁSICA",
            fields = {
                {"Título", args["title"]},
                {"Nível de Poder", args["power_level"]},
                {"Alinhamento", args["alignment"]},
                {"Plano", args["plane"]},
                {"Adjetivo", args["adjective"]},
                {"Símbolo", args["symbol"]},
                {"Aspectos", args["aspects"]},
                {"Panteão", args["pantheon"]},
                {"Súdito de", args["subject_of"]},
                {"Servos", args["servants"]},
                {"Gênero", args["gender"]},
                {"Morte", args["death"]},
            },
        },
        {
            title = "INFLUÊNCIA",
            fields = {
                {"Portfólio", args["portfolio"]},
                {"Domínios", args["domains"]},
            },
        },
        {
            title = "ADORAÇÃO",
            fields = {
                {"Adoradores", args["worshipers"]},
            },
        },
        {
            title = "PRÉ-APOTEOSE",
            fields = {
                {"Espécie Mortal", args["mortal_species"]},
                {"Sexo Mortal", args["mortal_gender"]},
                {"Lar Mortal", args["mortal_home"]},
                {"Apoteose", args["apotheosis"]},
            },
        },
    }

    -- Início da infobox
    local infobox = '<div style="width:22em; background:#f9f9f9; border:1px solid #aaa; float:right; padding:5px; font-size:90%;">'

    -- Adiciona a imagem no topo, se fornecida
    if args["image"] and args["image"] ~= "" then
        infobox = infobox .. string.format(
            '<div style="text-align:center; margin-bottom:10px;">%s</div>',
            frame:preprocess(string.format('[[File:%s|center|frameless|200px]]', args["image"]))
        )
    end

    -- Adiciona o nome da divindade
    infobox = infobox .. string.format(
        '<div style="text-align:center; background:#ccc; font-size:120%%; padding:4px;">%s</div>',
        args["name"] or "NOME DA DIVINDADE"
    )

    -- Adiciona as seções e os campos
    for _, section in ipairs(sections) do
        local sectionContent = {}

        -- Monta os campos com conteúdo da seção
        for _, field in ipairs(section.fields) do
            local label, value = field[1], field[2]
            -- Verifica se o valor é válido (não está na lista de ignorados)
            if value and not ignoredValues[value:match("^%s*(.-)%s*$")] then
                table.insert(sectionContent, string.format('<div style="padding:2px 5px;"><strong>%s:</strong> %s</div>', label, value))
            end
        end

        -- Adiciona a seção somente se tiver conteúdo
        if #sectionContent > 0 then
            infobox = infobox .. string.format('<div style="text-align:center; background:#ddd; font-size:110%%; padding:4px; margin-top:5px;">%s</div>', section.title)
            infobox = infobox .. table.concat(sectionContent)
        end
    end

    infobox = infobox .. '</div>'

    return infobox
end

return p