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' | |||
-- | -- 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 | |||
local | 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 | end | ||
output = output .. '</table>\n' | |||
output = output .. | |||
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