Sari la conținut

Modul:Infocasetă: Diferență între versiuni

De la Enciclopedia Trimeria
mFără descriere a modificării
mFără descriere a modificării
 
(Nu s-au afișat 6 versiuni intermediare efectuate de același utilizator)
Linia 1: Linia 1:
local p = {}
local p = {}
local function addRow(tableElement, label, value)
    if value and value ~= "" then
        local tr = tableElement:tag("tr")
        tr:tag("th")
            :css("text-align", "left")
            :css("padding", "5px")
            :css("width", "40%")
            :css("font-weight", "bold")
            :wikitext(label)
        tr:tag("td")
            :css("padding", "5px")
            :wikitext(value)
    end
end


function p.infobox(frame)
function p.infobox(frame)
     local args = frame:getParent().args
     local args = frame.args
    if next(args) == nil then
        args = frame.args
    end


     local title = args.title or args.nume or mw.title.getCurrentTitle().text
     local title = args.title or mw.title.getCurrentTitle().text
     local image = args.image or args.imagine or ""
     local image = args.image or ""
     local caption = args.caption or args.descriere_imagine or ""
     local caption = args.caption or ""


     local root = mw.html.create("table")
     local root = mw.html.create("table")
Linia 36: Linia 18:
         :css("font-size", "88%")
         :css("font-size", "88%")


    -- Titlul Infocasetei
     root:tag("tr")
     root:tag("tr")
         :tag("th")
         :tag("th")
Linia 47: Linia 28:
         :wikitext(title)
         :wikitext(title)


    -- Gestionare imagine și descriere
     if image ~= "" then
     if image ~= "" then
         local td = root:tag("tr")
         local tr = root:tag("tr")
            :tag("td")
        local td = tr:tag("td")
             :attr("colspan", "2")
             :attr("colspan", "2")
             :css("text-align", "center")
             :css("text-align", "center")
             :css("padding", "8px")
             :css("padding", "8px")


         td:wikitext(
         td:wikitext(image)
            string.format(
 
                '<img src="%s" style="max-width:300px;width:100%%;height:auto;border-radius:4px;display:block;margin:0 auto;">',
                image
            )
        )
         if caption ~= "" then
         if caption ~= "" then
             td:tag("div")
             td:tag("div")
                 :css("font-size", "90%")
                 :css("font-size", "90%")
                 :css("color", "#555")
                 :css("color", "#666")
                 :css("margin-top", "4px")
                 :css("margin-top", "4px")
                :css("text-align", "center")
                 :wikitext(caption)
                 :wikitext(caption)
        end
    end
    local function addRow(label, value)
        if value and value ~= "" and value ~= "nil" then
            local tr = root:tag("tr")
            tr:tag("th")
                :css("text-align", "left")
                :css("padding", "5px")
                :css("width", "40%")
                :css("font-weight", "bold")
                :wikitext(label)
            tr:tag("td")
                :css("padding", "5px")
                :wikitext(value)
        end
    end
    if args.rows and args.rows ~= "" then
        for linie in string.gmatch(args.rows, "[^\r\n]+") do
            local eticheta, valoare = string.match(linie, "^%s*(.-)%s*//%s*(.-)%s*$")
            if eticheta and valoare then
                addRow(eticheta, valoare)
            end
         end
         end
     end
     end

Versiunea curentă din 7 iunie 2026 16:43

Documentația acestui modul poate fi creată la Modul:Infocasetă/doc

local p = {}

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

    local title = args.title or mw.title.getCurrentTitle().text
    local image = args.image or ""
    local caption = args.caption or ""

    local root = mw.html.create("table")
        :addClass("infocaseta")
        :css("width", "320px")
        :css("float", "right")
        :css("margin", "0 0 1em 1em")
        :css("border", "1px solid #5b8a3c")
        :css("background", "#f8fff5")
        :css("border-collapse", "collapse")
        :css("font-size", "88%")

    root:tag("tr")
        :tag("th")
        :attr("colspan", "2")
        :css("background", "#6aa84f")
        :css("color", "white")
        :css("font-size", "120%")
        :css("padding", "8px")
        :css("text-align", "center")
        :wikitext(title)

    if image ~= "" then
        local tr = root:tag("tr")
        local td = tr:tag("td")
            :attr("colspan", "2")
            :css("text-align", "center")
            :css("padding", "8px")

        td:wikitext(image)

        if caption ~= "" then
            td:tag("div")
                :css("font-size", "90%")
                :css("color", "#666")
                :css("margin-top", "4px")
                :css("text-align", "center")
                :wikitext(caption)
        end
    end


    local function addRow(label, value)
        if value and value ~= "" and value ~= "nil" then
            local tr = root:tag("tr")
            tr:tag("th")
                :css("text-align", "left")
                :css("padding", "5px")
                :css("width", "40%")
                :css("font-weight", "bold")
                :wikitext(label)

            tr:tag("td")
                :css("padding", "5px")
                :wikitext(value)
        end
    end

    if args.rows and args.rows ~= "" then
        for linie in string.gmatch(args.rows, "[^\r\n]+") do
            local eticheta, valoare = string.match(linie, "^%s*(.-)%s*//%s*(.-)%s*$")
            if eticheta and valoare then
                addRow(eticheta, valoare)
            end
        end
    end

    return tostring(root)
end

return p