Module:Tabs: Difference between revisions

Jump to navigation Jump to search
No edit summary
Tag: Manual revert
No edit summary
Line 4: Line 4:


function p.Main(frame)
function p.Main(frame)
local args = frame.args
local oArgs = frame:getParent().args
local args = {}
for k, v in pairs(oArgs) do
v = v:match('^%s*(.-)%s*$')
if v ~= '' then
args[k] = v
end
end
local i = 0
local i = 0
if args['active'] ~= nil then
if args['active'] ~= nil then

Revision as of 20:25, 14 July 2024

Documentation for this module may be created at Module:Tabs/doc

local getArgument = require('Module:Arguments').getArgument

local p = {}

function p.Main(frame)
	local oArgs = frame:getParent().args
	local args = {}
	for k, v in pairs(oArgs) do
		v = v:match('^%s*(.-)%s*$')
		if v ~= '' then
			args[k] = v
		end
	end
	local i = 0
	if args['active'] ~= nil then
		active = tonumber(args['active'])
	else
		active = 1
	end
	if args[1] and args[2] then
		local header = mw.html.create( 'div' ):addClass('g-tab-header')
		local contents = mw.html.create( 'div' ):addClass('g-tab-contents')
		repeat
			tab = mw.html.create( 'span' ):addClass('g-tab'):wikitext(args[i+1])
			tabcontent = mw.html.create( 'div' ):addClass('g-tab-content'):wikitext(args[i+2])
			if active == (i + 2) * 0.5 then
				tab = tab:addClass('g-tab-active')
				tabcontent = tabcontent:addClass('g-tab-content-active')
			end
			header = header:node(tab)
			contents = contents:node(tabcontent)
			i = i + 2
		until args[i+1] == nil or args[i+2] == nil
		local output = mw.html.create( 'div' ):addClass('g-tab-container'):node(header):node(contents)

		return output
	else
		return 'Values not filled.'
	end
end

return p