Module:Infobox costume

From Sekaipedia

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


--------------------------
-- Module for [[Template:Infobox costume]]
------------------------
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 getAccessoryClass(accessory)
	-- probably should not use == with bool, but this is more explicit
	if accessory == true then
		return 'true-cell'
	elseif accessory == false then
		return 'false-cell'
	end
	
	return nil
end


function p.main(frame)
	local args = getArgs(frame, { wrappers = { 'Template:Infobox costume' } })
	local infobox = InfoboxBuilder.new()
	
	infobox:setName('Infobox costume')
		:setParams{
			{ name = 'costume id' },
			{ name = 'costume name', default = mw.title.getCurrentTitle().text },
			{ name = 'thumbnail' },
			{ name = 'japanese' },
			{ name = 'romaji' },
			{ name = 'gender' },
			{ name = 'designer' },
			{ name = 'date' },
			{ name = 'acquire', fn = ProcessingFns.stringToArray(',') },
			{ name = 'price', fn = ProcessingFns.stringToArray(';') },
			{ name = 'card' },
			{ name = 'card id' },
			{ name = 'pass' },
			{ name = 'gacha' },
			{ name = 'accessory', fn = ProcessingFns.stringToBoolOrNil },
			{ name = 'unique accessory', fn = ProcessingFns.stringToBoolOrNil },
			{ name = 'unique hair', fn = ProcessingFns.stringToBoolOrNil },
		}
		:setArgs(args)
		:processArgs()
		:setCategoryMap({
			['gender'] = {
				['Ladies'] = 'Ladies\' costumes',
				['Men']    = 'Men\'s costumes'
			},
			['accessory'] = {
				[true] = 'Costumes with accessories',
			},
			['unique accessory'] = {
				[true] = 'Costumes with unique accessories'
			},
			['unique hair'] = {
				[true] = 'Costumes with unique hair'
			},
		})


	infobox
		:addHeader({ tag = 'argth', content = 'costume name' })
		:addImage({
			{ tag = 'argtd', content = 'thumbnail', fn = DisplayFns.image('128px') },
		})
		: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 = 'Costume Information' }, { subheader = true })
		:addRow({
			{ tag = 'th', content = 'Gender' },
			{ tag = 'argtd', content = 'gender' }
		})
		:addRow(
			{
				{ tag = 'th', content = 'Designer' },
				{ tag = 'argtd', content = 'designer' }
			},
			{ hideIfEmpty = { 'designer' } }
		)
		:addHeader({ tag = 'th', content = 'Acquisition Information' }, { subheader = true })
		:addRow({
			{ tag = 'th', content = 'Release date' },
			{ tag = 'argtd', content = 'date' },
		})
		:addRow({
			{ 
				tag = 'argth', 
				content = 'acquire',
				fn = DisplayFns.pluralHeader({ 'Acquition method', 'Acquition methods'})
			},
			{ 
				tag = 'argtd', 
				content = 'acquire', 
				fn = DisplayFns.list('unbulleted')
			},
		})
		:addRow(
			{
				{ tag = 'th', content = 'Price' },
				{ tag = 'argtd', content = 'price', fn = DisplayFns.list('unbulleted') }
			},
			{ hideIfEmpty = { 'price' } }
		)
		:addRow(
			{
				{ tag = 'th', content = 'Associated card' },
				{ tag = 'argtd', content = 'card', fn = DisplayFns.link }
			},
			{ hideIfEmpty = { 'card' } }
		)
		:addRow(
			{
				{ tag = 'th', content = 'Mission Pass' },
				{ tag = 'argtd', content = 'pass' }
			},
			{ hideIfEmpty = { 'pass' } }
		)
		:addRow(
			{
				{ tag = 'th', content = 'Gacha' },
				{ tag = 'argtd', content = 'gacha' }
			},
			{ hideIfEmpty = { 'gacha' } }
		)
		:addHeader({ tag = 'th', content = 'Accessory & Hair Information' }, { subheader = true })
		:addRow(
			{
				{ tag = 'th', content = 'Accessory' },
				{ tag = 'th', content = 'Unique Accessory' },
				{ tag = 'th', content = 'Unique Hair' },
			},
			{ defaultCss = { ['text-align'] = 'center'	} }
		)
		:addRow(
			{
				{ 
					tag = 'argtd', 
					content = 'accessory', 
					fn = DisplayFns.checkAndX,
					classFns = { getAccessoryClass }
				},
				{ 
					tag = 'argtd', 
					content = 'unique accessory',
					fn = DisplayFns.checkAndX,
					classFns = { getAccessoryClass }
				},
				{ 
					tag = 'argtd', 
					content = 'unique hair',
					fn = DisplayFns.checkAndX,
					classFns = { getAccessoryClass } 
				}
			},
			{ defaultCss = { ['text-align'] = 'center' } }
		)
	
	local categories = ""
	if mw.title.getCurrentTitle().namespace == 0 then
		categories = "[[Category:Costumes]]" .. 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.