New mission: revamp the portals to make them look actually tolerable to the eye. They are currently placeholders as of now.
The Gold Network: Soyworld | SNCApedia | SoyPlace


I'm not dead, just inactive for the moment. Faggot (talk) 20:16, 9 April 2026 (UTC)

Module:Page tabs

From SNCApedia, the shit nobody cares about encyclopedia
Jump to navigationJump to search

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

-- This module implements {{Page tabs}}.

local getArgs = require('Module:Arguments').getArgs
local yesno = require('Module:Yesno')

local p = {}

function p.main(frame)
	local args = getArgs(frame)
	return p._main(args)
end

function p._main(args)
	local makeTab = p.makeTab
	local root = mw.html.create()
	root:wikitext(yesno(args.NOTOC) and '__NOTOC__' or nil)
	local row = root:tag('div')
		:css('background', args.Background or '#f8fcff')
		:css('color', 'black')
		:cssText(args.style or nil)
		:addClass('template-page-tabs')
		:addClass(args.class or nil)
	if not args[1] then
		args[1] = '{{{1}}}'
	end
	for i, link in ipairs(args) do
		makeTab(row, link, args, i, args["class" .. i] or nil, args["style" .. i] or nil)
	end
		
	return tostring(root)
end

function p.makeTab(root, link, args, i, class, css)
	local thisPage = (args.This == 'auto' and link:find('[[' .. mw.title.getCurrentTitle().prefixedText .. '|', 1, true)) or tonumber(args.This) == i
	
	local tabColor = args['tab' .. i .. '-bg']
	local inactiveColor = tabColor or args['tab1-bg'] or '#e0edf6'
	local activeColor = args['tab' .. i .. '-active-bg'] or args['tab-bg'] or 'white'

	local inactiveText = args['tab' .. i .. '-color'] or args['tab-color'] or 'black'
	local activeText = args['tab' .. i .. '-active-color'] or inactiveText
	
	root:tag('span')
		:addClass(class)
		:css('background-color', thisPage and activeColor or inactiveColor)
		:css('color', thisPage and activeText or inactiveText)
		:cssText(thisPage and 'border-bottom:0;font-weight:bold' or 'font-size:95%')
		:cssText(css)
		:wikitext(link)
		:done()
		:wikitext('<span class="spacer ' .. (class or "") .. '">&#32;</span>')
end

return p