Module:Infobox tournament

From Sekaipedia

To generate {{Infobox tournament}}, invoke using the main function.


--------------------------
-- Module for [[Template:Infobox tournament]]
------------------------
local getArgs   = require('Module:Arguments').getArgs
local InfoboxBuilder = require('Module:InfoboxBuilder')
local DisplayFns     = require('Module:DisplayFunctions')
local ProcessingFns  = require('Module:ProcessingFunctions')

local p = {}

local function formatPrevious(previousTourney)
	if previousTourney and previousTourney ~= '' then
		return string.format('🡰 [[%s]]', previousTourney)
	end
	
	return ' '
end

local function formatNext(nextTourney)
	if nextTourney and nextTourney ~= '' then
		return string.format('[[%s]] 🡲', nextTourney)
	end
	
	return ' '
end


function p.main(frame)
	local args = getArgs(frame)
	local infobox = InfoboxBuilder.new();

	infobox:setName('Infobox tournament')
		:setParams{
			{ name = 'tournament name', default = mw.title.getCurrentTitle().text },
			{ name = 'image' },
			{ name = 'japanese' },
			{ name = 'romaji' },
			{ name = 'organizers', fn = ProcessingFns.stringToArray(',') },
			{ name = 'sponsors', fn = ProcessingFns.stringToArray(',') },
			{ name = 'prize pool' },
			{ name = 'teams' },
			{ name = 'previous', default = '' },
			{ name = 'next', default = '' }
		}
		:setArgs(args)
		:processArgs()
		
	infobox
		:addHeader({ tag = 'argth', content = 'tournament name' })
		:addImage({
			{ tag = 'argtd', content = 'image', fn = DisplayFns.image('220px') },
		})
		:addRow(
			{
				{ tag = 'th', content = 'Japanese' },
				{ tag = 'argtd', content = 'japanese' }
			},
			{ hideIfEmpty = { 'japanese' } }
		)
		:addRow(
			{
				{ tag = 'th', content = 'Romaji' },
				{ tag = 'argtd', content = 'romaji' }
			},
			{ hideIfEmpty = { 'romaji' } }
		)
		:addHeader({ tag = 'th', content = 'Tournament Information' }, { subheader = true })
		:addRow({
			{
				tag = 'argth', 
				content = 'organizers', 
				fn = DisplayFns.pluralHeader({ 'Organizer', 'Organizers' }) 
			},
			{ 
				tag = 'argtd',
				content = 'organizers', 
				fn = DisplayFns.list('unbulleted')
			}
		})
		:addRow(
			{
				{ 
					tag = 'argth', 
					content = 'sponsors',
					fn = DisplayFns.pluralHeader({ 'Sponsor', 'Sponsors' })
				},
				{ 
					tag = 'argtd', 
					content = 'sponsors',
					fn = DisplayFns.list('unbulleted')
				}
			},
			{ hideIfEmpty = { 'sponsors' } }
		)
		:addHeader({ tag = 'th', content = 'Chronology' }, { subheader = true })
		:addRow({
			{
				tag = 'argtd',
				content = 'previous',
				fn = formatPrevious,
				colspan = 13
			},
			{ 
				tag = 'td',
				content = '', 
				colspan = 4
			},
			{ 
				tag = 'argtd', 
				content = 'next',
				fn = formatNext,
				colspan = 13
			}
		})

	local categories = ""
	if mw.title.getCurrentTitle().namespace == 0 then
		categories = "[[Category:Tournaments]]" .. infobox:getCategories()
	end

	return infobox:tostring() .. categories
end

return p
Cookies help us deliver our services. By using our services, you agree to our use of cookies.