Zuletzt bearbeitet vor einer Woche
von Xineohp1506

Modul:LPON/ProjectOverview: Unterschied zwischen den Versionen

Keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
 
(3 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt)
Zeile 7: Zeile 7:
     end
     end


     local output = ""
    -- Tabellen-Header
     local output = '<table class="lpnon-project-overview-table">\n'
    output = output .. '<tr><th>Projekt</th><th>Spiel</th><th>Spieler</th><th>Status</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|?LPON:Status"
        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
 
    -- Projekte nach Status sortieren
    local runningProjects = {}
    local otherProjects = {}
 
    for _, result in ipairs(queryResult.results) do
        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


         local listOutput = '<table class="lpnon-project-overview-table">\n'
         local gameName = result.printouts["LPON:GameTitle"] and result.printouts["LPON:GameTitle"][1] or "Unbekannt"
         listOutput = listOutput .. '<tr><th>Projekt</th><th>Spiel</th><th>Spieler</th><th>Beschreibung</th><th>Episodenanzahl</th></tr>\n'
         local gameLink = result.printouts["LPON:Game"] and result.printouts["LPON:Game"][1] or gameName


         for _, result in ipairs(queryResult.results) do
         local players = result.printouts["LPON:Spieler"] or {}
            -- Projektname und Link
        local playerLinks = {}
            local projectName = result.printouts["LPON:Title"] and result.printouts["LPON:Title"][1] or "Unbekannt"
        for _, player in ipairs(players) do
            local projectLink = result.printouts["LPON:Projekt"] and result.printouts["LPON:Projekt"][1] or projectName
            table.insert(playerLinks, string.format("[[LetsPlayOrNot:%s|%s]]", player, player))
        end


            -- Spielname und Link
        local description = result.printouts["LPON:Description"] and result.printouts["LPON:Description"][1] or "Keine Beschreibung verfügbar"
            local gameName = result.printouts["LPON:GameTitle"] and result.printouts["LPON:GameTitle"][1] or "Unbekannt"
        local truncatedDescription = helper.cleanAndTruncate(description, 200)
            local gameLink = result.printouts["LPON:Game"] and result.printouts["LPON:Game"][1] or gameName


            -- Spieler mit Links
        local status = result.printouts["LPON:Status"] and result.printouts["LPON:Status"][1] or "Unbekannt"
            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 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 episodeCountQuery = mw.smw.getQueryResult(episodeQuery)
            local truncatedDescription = helper.cleanAndTruncate(description, 200)
        local episodeCount = episodeCountQuery and #episodeCountQuery.results or 0


            -- Episodenanzahl
        local projectRow = string.format(
            local episodeQuery = string.format("[[LPON:Projekt::%s]][[LPON:Typ::Episode]]", projectLink)
            '<tr class="lpnon-status-%s"><td>[[LetsPlayOrNot:%s|%s]]</td><td>[[%s|%s]]</td><td>%s</td><td>%s</td><td>%s</td><td>%d</td></tr>\n',
             local episodeResult = mw.smw.getQueryResult(episodeQuery)
            status:lower(), -- Status als CSS-Klasse in Kleinbuchstaben
             local episodeCount = episodeResult and #episodeResult.results or 0
            projectLink, projectName,
            gameLink, gameName,
             table.concat(playerLinks, ", "),
            status,
            truncatedDescription,
             episodeCount
        )


            -- Zeile hinzufügen
        if status == "Laufend" then
             listOutput = listOutput .. string.format(
             table.insert(runningProjects, projectRow)
                '<tr><td>[[%s|%s]]</td><td>[[%s|%s]]</td><td>%s</td><td>%s</td><td>%d</td></tr>\n',
        else
                projectLink, projectName,
            table.insert(otherProjects, projectRow)
                gameLink, gameName,
                table.concat(playerLinks, ", "),
                truncatedDescription,
                episodeCount
            )
         end
         end
    end


         listOutput = listOutput .. '</table>\n'
    -- Laufende Projekte zuerst anzeigen
        return listOutput
    for _, row in ipairs(runningProjects) do
         output = output .. row
     end
     end


     -- Laufende Projekte
     -- Andere Projekte anzeigen
     output = output .. "<h2>Laufende Projekte</h2>\n"
     for _, row in ipairs(otherProjects) do
    output = output .. generateProjectList("laufend")
        output = output .. row
 
     end
    -- Beendete Projekte
    output = output .. "<h2>Beendete Projekte</h2>\n"
     output = output .. generateProjectList("beendet")


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


return overview
return overview

Aktuelle Version vom 21. Dezember 2024, 01:23 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

    -- Tabellen-Header
    local output = '<table class="lpnon-project-overview-table">\n'
    output = output .. '<tr><th>Projekt</th><th>Spiel</th><th>Spieler</th><th>Status</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|?LPON:Status"
    local queryResult = mw.smw.getQueryResult(query)

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

    -- Projekte nach Status sortieren
    local runningProjects = {}
    local otherProjects = {}

    for _, result in ipairs(queryResult.results) do
        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

        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

        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

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

        local status = result.printouts["LPON:Status"] and result.printouts["LPON:Status"][1] or "Unbekannt"

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

        local projectRow = string.format(
            '<tr class="lpnon-status-%s"><td>[[LetsPlayOrNot:%s|%s]]</td><td>[[%s|%s]]</td><td>%s</td><td>%s</td><td>%s</td><td>%d</td></tr>\n',
            status:lower(), -- Status als CSS-Klasse in Kleinbuchstaben
            projectLink, projectName,
            gameLink, gameName,
            table.concat(playerLinks, ", "),
            status,
            truncatedDescription,
            episodeCount
        )

        if status == "Laufend" then
            table.insert(runningProjects, projectRow)
        else
            table.insert(otherProjects, projectRow)
        end
    end

    -- Laufende Projekte zuerst anzeigen
    for _, row in ipairs(runningProjects) do
        output = output .. row
    end

    -- Andere Projekte anzeigen
    for _, row in ipairs(otherProjects) do
        output = output .. row
    end

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

return overview