Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Module:Infobox tournament: Difference between revisions

From Sekaipedia
Content added Content deleted
m (add categories to end of page)
(migrated to infoboxbuilder)
Line 3: Line 3:
------------------------
------------------------
local getArgs = require('Module:Arguments').getArgs
local getArgs = require('Module:Arguments').getArgs
local InfoboxBuilder = require('Module:InfoboxBuilder new')
local InfoboxBuilder = require('Module:InfoboxBuilder')
local DisplayFunctions = require('Module:InfoboxBuilderDisplayFunctions')


local p = {}
local p = {}
local categories = ""
local categories = ""

local function formatImage(imageName)
return string.format("[[File:%s|220px]]", imageName)
end


local function formatPrevious(previousTourney)
local function formatPrevious(previousTourney)
Line 36: Line 33:
:setParams{
:setParams{
{ name = 'tournament name', default = mw.title.getCurrentTitle().text },
{ name = 'tournament name', default = mw.title.getCurrentTitle().text },
{ name = 'image', dFunc = formatImage },
{ name = 'image', dFunc = DisplayFunctions.generateImage('220px') },
{ name = 'japanese' },
{ name = 'japanese' },
{ name = 'romaji' },
{ name = 'romaji' },

Revision as of 16:15, 17 October 2022

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 DisplayFunctions    = require('Module:InfoboxBuilderDisplayFunctions')

local p = {}
local categories = ""

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', dFunc = DisplayFunctions.generateImage('220px') },
			{ name = 'japanese' },
			{ name = 'romaji' },
			{ name = 'organizers' },
			{ name = 'sponsors' },
			{ name = 'prize pool' },
			{ name = 'teams' },
			{ name = 'previous', default = '', dFunc = formatPrevious },
			{ name = 'next', default = '', dFunc = formatNext }
		}
		:setArgs(args)
		:processArgs()
		
	infobox
		:addHeader({ tag = 'argth', content = 'tournament name' })
		:addImage({
			{ tag = 'argtd', content = 'image' },
		})
		: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 = 'th', content = 'Organizer(s)' },
				{ tag = 'argtd', content = 'organizers' }
			}
		)
		:addRow(
			{
				{ tag = 'th', content = 'Sponsor(s)' },
				{ tag = 'argtd', content = 'sponsors' }
			},
			{ hideIfEmpty = { 'sponsors' } }
		)
		:addHeader({ tag = 'th', content = 'Chronology' }, { subheader = true })
		:addRow(
			{
				{ tag = 'argtd', content = 'previous', colspan = 13 },
				{ tag = 'td', content = '', colspan = 4 },
				{ tag = 'argtd', content = 'next', colspan = 13  }
			}
		)

	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.