Zuletzt bearbeitet vor 3 Stunden
von Xineohp1506

Modul:Publikation/Buch: Unterschied zwischen den Versionen

Keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
Zeile 4: Zeile 4:
local function getTotalVolumes(seriesTitle)
local function getTotalVolumes(seriesTitle)
     if not seriesTitle or seriesTitle == "" then
     if not seriesTitle or seriesTitle == "" then
         return nil
         return nil, "Kein Serienname angegeben."
     end
     end


     local query = "[[Hat Titel::" .. seriesTitle .. "]]|?Complete volumes|limit=1"
     local query = "[[Hat Titel::" .. seriesTitle .. "]]|?Complete volumes|limit=1"
     local result = mw.smw.getQueryResult(query)
     local result = mw.smw.getQueryResult(query)
    -- Debugging-Ausgabe
    local debugOutput = "Abfrage: " .. query .. "\n"


     if result and result.results and next(result.results) then
     if result and result.results and next(result.results) then
         for _, data in pairs(result.results) do
         for _, data in pairs(result.results) do
             return data.properties["Complete volumes"] and data.properties["Complete volumes"][1] or nil
            debugOutput = debugOutput .. "Ergebnisse: " .. mw.text.jsonEncode(data) .. "\n"
             return data.properties["Complete volumes"] and data.properties["Complete volumes"][1], debugOutput
         end
         end
     end
     end
     return nil
    debugOutput = debugOutput .. "Keine Ergebnisse gefunden.\n"
     return nil, debugOutput
end
end


Zeile 36: Zeile 41:
     -- Band
     -- Band
     if args["Band"] then
     if args["Band"] then
        local seriesTitle = args["Hat Serie"] or ""
    local seriesTitle = args["Hat Serie"] or ""
        local totalVolumes = getTotalVolumes(seriesTitle)
    local totalVolumes, debugInfo = getTotalVolumes(seriesTitle)


        output = output .. '<tr><td><strong>Band</strong></td><td>'
    output = output .. '<tr><td><strong>Band</strong></td><td>'
        output = output .. args["Band"]
    output = output .. args["Band"]
        if totalVolumes then
    if totalVolumes then
            output = output .. ' von ' .. totalVolumes
        output = output .. ' von ' .. totalVolumes
        end
    end
        if seriesTitle ~= "" then
    if seriesTitle ~= "" then
            output = output .. ' ([[ ' .. seriesTitle .. ' | Serie ]])'
        output = output .. ' ([[ ' .. seriesTitle .. ' | Serie ]])'
        end
        output = output .. '</td></tr>'
     end
     end
    output = output .. '</td></tr>'
    -- Debugging-Informationen ausgeben
    output = output .. '<tr><td colspan="2"><pre>' .. debugInfo .. '</pre></td></tr>'
end


     -- Weitere Felder hinzufügen...
     -- Weitere Felder hinzufügen...

Version vom 20. November 2024, 00:27 Uhr

Die Dokumentation für dieses Modul kann unter Modul:Publikation/Buch/Doku erstellt werden

local buch = {}

-- Funktion, um die Anzahl der Bände aus der Serienseite zu holen
local function getTotalVolumes(seriesTitle)
    if not seriesTitle or seriesTitle == "" then
        return nil, "Kein Serienname angegeben."
    end

    local query = "[[Hat Titel::" .. seriesTitle .. "]]|?Complete volumes|limit=1"
    local result = mw.smw.getQueryResult(query)

    -- Debugging-Ausgabe
    local debugOutput = "Abfrage: " .. query .. "\n"

    if result and result.results and next(result.results) then
        for _, data in pairs(result.results) do
            debugOutput = debugOutput .. "Ergebnisse: " .. mw.text.jsonEncode(data) .. "\n"
            return data.properties["Complete volumes"] and data.properties["Complete volumes"][1], debugOutput
        end
    end
    debugOutput = debugOutput .. "Keine Ergebnisse gefunden.\n"
    return nil, debugOutput
end

function buch.render(args, main)
    local output = '<table class="publikation buch">'

    -- Titel
    local title = args["Titel"] or "Unbekannt"
    output = output .. '<tr><td><strong>Titel</strong></td><td>[[Hat Titel::' .. title .. ']]</td></tr>'

    -- Autor(en)
    if args["Autor"] then
        output = output .. '<tr><td><strong>Autor(en)</strong></td><td>'
        for author in mw.text.gsplit(args["Autor"], ",") do
            output = output .. '[[Hat Autor::' .. mw.text.trim(author) .. ']], '
        end
        output = output:sub(1, -3) .. '</td></tr>' -- Entfernt das letzte Komma
    end

    -- Band
    if args["Band"] then
    local seriesTitle = args["Hat Serie"] or ""
    local totalVolumes, debugInfo = getTotalVolumes(seriesTitle)

    output = output .. '<tr><td><strong>Band</strong></td><td>'
    output = output .. args["Band"]
    if totalVolumes then
        output = output .. ' von ' .. totalVolumes
    end
    if seriesTitle ~= "" then
        output = output .. ' ([[ ' .. seriesTitle .. ' | Serie ]])'
    end
    output = output .. '</td></tr>'

    -- Debugging-Informationen ausgeben
    output = output .. '<tr><td colspan="2"><pre>' .. debugInfo .. '</pre></td></tr>'
end

    -- Weitere Felder hinzufügen...
    output = output .. '</table>'
    return output
end

return buch