Moduł:Lepsze główne: Różnice pomiędzy wersjami

Z Nonsensopedii, polskiej encyklopedii humoru
M (grzegorz braun to przywódca wolnego świata)
(idk czy zadziała)
Linia 17: Linia 17:
local first = {}
local first = {}
local second = {}
local second = {}
local curRight = false
for i = 1, 50 do -- 50 jest tymczasowo, tak jest w portalach ostrzyciela ale nie wiem czy to dobrze idk
for i = 1, 50 do -- 50 jest tymczasowo, tak jest w portalach ostrzyciela ale nie wiem czy to dobrze idk
if args['panel' .. i] ~= nil then
if args['panel' .. i] ~= nil then
Linia 23: Linia 24:
if i % 2 == 1 then
if i % 2 == 1 then
table.insert(first, cur)
table.insert(first, cur)
curRight = false
else
else
cur["showstatus"] = cur["showstatus"] .. " desktoponly"
table.insert(second, cur)
table.insert(second, cur)
local cur2 = makeElementTable(args, i)
local cur2 = makeElementTable(args, i)
cur2["showstatus"] = "mobileonly"
cur2["showstatus"] = cur2["showstatus"] .. " mobileonly"
table.insert(first, cur2)
table.insert(first, cur2)
curRight = true
end
end
end
end
else break end
else break end
end
if curRight then
table.remove(first, table.maxn(first))
local maxSec = table.maxn(second)
local ss = second[maxSec]["showstatus"]
second[maxSec]["showstatus"] = string.gsub(ss, " desktoponly", "")
end
end
return first, second
return first, second

Wersja z 19:41, 14 mar 2022

Moduł automatycznie generujący semi-responsywny kolumnowy układ stron głównych. Zobacz też: Szablon:Generator głównych


local tools = require('Moduł:Narzędzia')
local p = {}


function makeElementTable(args, num)
	local cur = {}
	cur['title'] = args['ptytuł' .. num] or 'Nie podano tytułu'
	cur['text'] = args['panel' .. num]
	cur['num'] = num
	cur['showstatus'] = args['pwarunki' .. num] or ''
	return cur
end

-- robi listę elementów wg kolumn, ignoruje - i puste
function makeElementList(args)
	-- kolumny
	local first = {}
	local second = {}
	local curRight = false
	for i = 1, 50 do -- 50 jest tymczasowo, tak jest w portalach ostrzyciela ale nie wiem czy to dobrze idk
		if args['panel' .. i] ~= nil then
			if args['panel' .. i] == '-' or args['panel' .. i] == '' then else -- TODO: nie dodawać elementu do pierwszej kolumny dla ostatniego elementu drugiej, możliwie w. opt.
				local cur = makeElementTable(args, i)
				if i % 2 == 1 then
					table.insert(first, cur)
					curRight = false
				else
					cur["showstatus"] = cur["showstatus"] .. " desktoponly"
					table.insert(second, cur)
					local cur2 = makeElementTable(args, i)
					cur2["showstatus"] = cur2["showstatus"] .. " mobileonly"
					table.insert(first, cur2)
					curRight = true
				end
			end
		else break end
	end
	if curRight then
		table.remove(first, table.maxn(first))
		local maxSec = table.maxn(second)
		local ss = second[maxSec]["showstatus"]
		second[maxSec]["showstatus"] = string.gsub(ss, " desktoponly", "")
	end
	return first, second
end


function makePanel(tab)
	local panelname = tab["title"]
	local template = tab["text"]
	local mobiledesktop = tab["showstatus"]
	local wikitext = "{{User:Polskacafe/panel|" .. panelname .. "|{{" .. template .. "}}}}"
	local panel = mw.html.create("div")
		:addClass("glowna-panel")
		:wikitext(wikitext)
	if (mobiledesktop ~= nil) then
		panel = panel:addClass(mobiledesktop)
	end
	return panel:done()
end
		

function makeColumn(elements, desktoponly)
	column = mw.html.create("div")
		:addClass("glowna-kolumna")
	for k,v in ipairs(elements)
	do
		local elem = makePanel(v)
		column = column:node(elem)
	end
	if (desktoponly == true) then
		column:addClass("desktoponly")
	end
	return column:done()
end

function makeAll(args)
	local first, second = makeElementList(args)
	local mainList = mw.html.create("div")
		:addClass("glowna-lista")
		:node(makeColumn(first, false))
		:node(makeColumn(second, true))
		:done()
	return mainList
end

function p.kolumny(frame)
	local args = tools.getArgs(frame) -- argumenty szablonu to jest
	local mainList = makeAll(args)
	return frame:preprocess(tostring(mainList))
end
return p