Zuletzt bearbeitet vor 6 Tagen
von Xineohp1506

Modul:LPON/ProjectOverview: Unterschied zwischen den Versionen

Keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
Zeile 7: Zeile 7:
     end
     end


     local output = ""
     local output = '<table class="lpnon-project-overview-table">\n'
    output = output .. '<tr><th>Projekt</th><th>Spiel</th><th>Spieler</th><th>Beschreibung</th><th>Episodenanzahl</th></tr>\n'


     -- Funktion zur Erstellung der Projektliste
     -- Abfrage aller Projekte
     local function generateProjectList(status)
     local query = "[[LPON:Typ::Projekt]]|?LPON:Title|?LPON:GameTitle|?LPON:Projekt|?LPON:Game|?LPON:Spieler|?LPON:Description"
        local query = string.format("[[LPON:Typ::Projekt]][[LPON:Status::%s]]|?LPON:Title|?LPON:GameTitle|?LPON:Projekt|?LPON:Game|?LPON:Spieler|?LPON:Description", status)
    local queryResult = mw.smw.getQueryResult(query)
        local queryResult = mw.smw.getQueryResult(query)


        if not queryResult or not queryResult.results then
    if not queryResult or not queryResult.results then
            return string.format("<p>Keine %s Projekte gefunden.</p>\n", status)
        return "Keine Projekte gefunden."
        end
    end


         local listOutput = '<table class="lpnon-project-overview-table">\n'
    for _, result in ipairs(queryResult.results) do
         listOutput = listOutput .. '<tr><th>Projekt</th><th>Spiel</th><th>Spieler</th><th>Beschreibung</th><th>Episodenanzahl</th></tr>\n'
        -- Projektname und Link
         local projectName = result.printouts["LPON:Title"] and result.printouts["LPON:Title"][1] or "Unbekannt"
         local projectLink = result.printouts["LPON:Projekt"] and result.printouts["LPON:Projekt"][1] or projectName


         for _, result in ipairs(queryResult.results) do
         -- Spielname und Link
            -- Projektname und Link
        local gameName = result.printouts["LPON:GameTitle"] and result.printouts["LPON:GameTitle"][1] or "Unbekannt"
            local projectName = result.printouts["LPON:Title"] and result.printouts["LPON:Title"][1] or "Unbekannt"
        local gameLink = result.printouts["LPON:Game"] and result.printouts["LPON:Game"][1] or gameName
            local projectLink = result.printouts["LPON:Projekt"] and result.printouts["LPON:Projekt"][1] or projectName


            -- Spielname und Link
        -- Spieler mit Links
            local gameName = result.printouts["LPON:GameTitle"] and result.printouts["LPON:GameTitle"][1] or "Unbekannt"
        local players = result.printouts["LPON:Spieler"] or {}
            local gameLink = result.printouts["LPON:Game"] and result.printouts["LPON:Game"][1] or gameName
        local playerLinks = {}
 
        for _, player in ipairs(players) do
            -- Spieler mit Links
            table.insert(playerLinks, string.format("[[LetsPlayOrNot:%s|%s]]", player, player))
            local players = result.printouts["LPON:Spieler"] or {}
        end
            local playerLinks = {}
            for _, player in ipairs(players) do
                table.insert(playerLinks, string.format("[[LetsPlayOrNot:%s|%s]]", player, player))
            end
 
            -- Beschreibung gekürzt
            local description = result.printouts["LPON:Description"] and result.printouts["LPON:Description"][1] or "Keine Beschreibung verfügbar"
            local truncatedDescription = helper.cleanAndTruncate(description, 200)


            -- Episodenanzahl
        -- Beschreibung gekürzt
            local episodeQuery = string.format("[[LPON:Projekt::%s]][[LPON:Typ::Episode]]", projectLink)
        local description = result.printouts["LPON:Description"] and result.printouts["LPON:Description"][1] or "Keine Beschreibung verfügbar"
            local episodeResult = mw.smw.getQueryResult(episodeQuery)
        local truncatedDescription = helper.cleanAndTruncate(description, 200)
            local episodeCount = episodeResult and #episodeResult.results or 0


            -- Zeile hinzufügen
        -- Episodenanzahl
            listOutput = listOutput .. string.format(
        local episodeQuery = string.format("[[LPON:Projekt::%s]][[LPON:Typ::Episode]]", projectLink)
                '<tr><td>[[%s|%s]]</td><td>[[%s|%s]]</td><td>%s</td><td>%s</td><td>%d</td></tr>\n',
        local episodeCount = mw.smw.getQueryResult(episodeQuery)
                projectLink, projectName,
         episodeCount = episodeCount and #episodeCount.results or 0
                gameLink, gameName,
                table.concat(playerLinks, ", "),
                truncatedDescription,
                episodeCount
            )
         end


         listOutput = listOutput .. '</table>\n'
         -- Zeile hinzufügen
         return listOutput
        output = output .. string.format(
            '<tr><td>[[%s|%s]]</td><td>[[%s|%s]]</td><td>%s</td><td>%s</td><td>%d</td></tr>\n',
            projectLink, projectName,
            gameLink, gameName,
            table.concat(playerLinks, ", "),
            truncatedDescription,
            episodeCount
         )
     end
     end


    -- Laufende Projekte
     output = output .. '</table>\n'
     output = output .. "<h2>Laufende Projekte</h2>\n"
    output = output .. generateProjectList("laufend")
 
    -- Beendete Projekte
    output = output .. "<h2>Beendete Projekte</h2>\n"
    output = output .. generateProjectList("beendet")
 
     return output
     return output
end
end


return overview
return overview

Version vom 20. Dezember 2024, 22:52 Uhr

Die Dokumentation für dieses Modul kann unter Modul:LPON/ProjectOverview/Doku erstellt werden

local overview = {}
local helper = require('Module:LPON/Helper')

function overview.render(frame)
    if not mw.smw then
        return "Semantic MediaWiki-Erweiterung nicht gefunden."
    end

    local output = '<table class="lpnon-project-overview-table">\n'
    output = output .. '<tr><th>Projekt</th><th>Spiel</th><th>Spieler</th><th>Beschreibung</th><th>Episodenanzahl</th></tr>\n'

    -- Abfrage aller Projekte
    local query = "[[LPON:Typ::Projekt]]|?LPON:Title|?LPON:GameTitle|?LPON:Projekt|?LPON:Game|?LPON:Spieler|?LPON:Description"
    local queryResult = mw.smw.getQueryResult(query)

    if not queryResult or not queryResult.results then
        return "Keine Projekte gefunden."
    end

    for _, result in ipairs(queryResult.results) do
        -- Projektname und Link
        local projectName = result.printouts["LPON:Title"] and result.printouts["LPON:Title"][1] or "Unbekannt"
        local projectLink = result.printouts["LPON:Projekt"] and result.printouts["LPON:Projekt"][1] or projectName

        -- Spielname und Link
        local gameName = result.printouts["LPON:GameTitle"] and result.printouts["LPON:GameTitle"][1] or "Unbekannt"
        local gameLink = result.printouts["LPON:Game"] and result.printouts["LPON:Game"][1] or gameName

        -- Spieler mit Links
        local players = result.printouts["LPON:Spieler"] or {}
        local playerLinks = {}
        for _, player in ipairs(players) do
            table.insert(playerLinks, string.format("[[LetsPlayOrNot:%s|%s]]", player, player))
        end

        -- Beschreibung gekürzt
        local description = result.printouts["LPON:Description"] and result.printouts["LPON:Description"][1] or "Keine Beschreibung verfügbar"
        local truncatedDescription = helper.cleanAndTruncate(description, 200)

        -- Episodenanzahl
        local episodeQuery = string.format("[[LPON:Projekt::%s]][[LPON:Typ::Episode]]", projectLink)
        local episodeCount = mw.smw.getQueryResult(episodeQuery)
        episodeCount = episodeCount and #episodeCount.results or 0

        -- Zeile hinzufügen
        output = output .. string.format(
            '<tr><td>[[%s|%s]]</td><td>[[%s|%s]]</td><td>%s</td><td>%s</td><td>%d</td></tr>\n',
            projectLink, projectName,
            gameLink, gameName,
            table.concat(playerLinks, ", "),
            truncatedDescription,
            episodeCount
        )
    end

    output = output .. '</table>\n'
    return output
end

return overview