Module:Infobox costume: Difference between revisions

From Sekaipedia
Content added Content deleted
No edit summary
No edit summary
 
(12 intermediate revisions by the same user not shown)
Line 2: Line 2:
-- Module for [[Template:Infobox costume]]
-- Module for [[Template:Infobox costume]]
------------------------
------------------------
local getArgs = require('Module:Arguments').getArgs
local getArgs = require('Module:Arguments').getArgs
local yesno = require('Module:Yesno')
local InfoboxBuilder = require('Module:InfoboxBuilder')
local builder = require('Module:InfoboxBuilder new')
local DisplayFns = require('Module:DisplayFunctions')
local ProcessingFns = require('Module:ProcessingFunctions')


local p = {}
local p = {}

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

local function formatLink(link)
return '[[' .. link .. ']]'
end

local function formatAccessory(accessory)
-- probably should not use == with bool, but this is more explicit
if accessory == true then
return '✓'
elseif accessory == false then
return '✗'
end
return nil
end


local function getAccessoryClass(accessory)
local function getAccessoryClass(accessory)
Line 36: Line 18:
return nil
return nil
end

local function convertToBoolOrNil(val)
return yesno(val, nil)
end
end


Line 45: Line 23:
function p.main(frame)
function p.main(frame)
local args = getArgs(frame, { wrappers = { 'Template:Infobox costume' } })
local args = getArgs(frame, { wrappers = { 'Template:Infobox costume' } })
local infobox = builder.new()
local infobox = InfoboxBuilder.new()
infobox:setName('Infobox costume')
infobox:setName('Infobox costume')
Line 51: Line 29:
{ name = 'costume id' },
{ name = 'costume id' },
{ name = 'costume name', default = mw.title.getCurrentTitle().text },
{ name = 'costume name', default = mw.title.getCurrentTitle().text },
{ name = 'thumbnail', dFunc = formatImage },
{ name = 'thumbnail' },
{ name = 'japanese' },
{ name = 'japanese' },
{ name = 'romaji' },
{ name = 'romaji' },
Line 57: Line 35:
{ name = 'designer' },
{ name = 'designer' },
{ name = 'date' },
{ name = 'date' },
{ name = 'acquire' },
{ name = 'acquire', fn = ProcessingFns.stringToArray(',') },
{ name = 'costume shop', pFunc = convertToBoolOrNil },
{ name = 'price', fn = ProcessingFns.stringToArray(';') },
{ name = 'price' },
{ name = 'card' },
{ name = 'card', dFunc = formatLink },
{ name = 'card id' },
{ name = 'pass' },
{ name = 'pass' },
{ name = 'gacha' },
{ name = 'gacha' },
{ name = 'accessory', pFunc = convertToBoolOrNil, dFunc = formatAccessory },
{ name = 'accessory', fn = ProcessingFns.stringToBoolOrNil },
{ name = 'unique accessory', pFunc = convertToBoolOrNil, dFunc = formatAccessory },
{ name = 'unique accessory', fn = ProcessingFns.stringToBoolOrNil },
{ name = 'unique hair', pFunc = convertToBoolOrNil, dFunc = formatAccessory },
{ name = 'unique hair', fn = ProcessingFns.stringToBoolOrNil },
}
}
:setArgs(args)
:setArgs(args)
Line 89: Line 67:
:addHeader({ tag = 'argth', content = 'costume name' })
:addHeader({ tag = 'argth', content = 'costume name' })
:addImage({
:addImage({
{ tag = 'argtd', content = 'thumbnail' },
{ tag = 'argtd', content = 'thumbnail', fn = DisplayFns.image('128px') },
})
})
:addRow(
:addRow(
Line 117: Line 95:
{ hideIfEmpty = { 'designer' } }
{ hideIfEmpty = { 'designer' } }
)
)
:addHeader({ tag = 'th', content = 'Acquisition Information'}, { subheader = true })
:addHeader({ tag = 'th', content = 'Acquisition Information' }, { subheader = true })
:addRow({
:addRow({
{ tag = 'th', content = 'Release date' },
{ tag = 'th', content = 'Release date' },
Line 123: Line 101:
})
})
:addRow({
:addRow({
{
{ tag = 'th', content = 'Acquition method(s)' },
{ tag = 'argtd', content = 'acquire' },
tag = 'argth',
content = 'acquire',
})
fn = DisplayFns.pluralHeader({ 'Acquition method', 'Acquition methods'})
:addRow({
},
{ tag = 'th', content = 'In Costume Shop?' },
{
{ tag = 'argtd', content = 'costume shop' }
tag = 'argtd',
content = 'acquire',
fn = DisplayFns.list('unbulleted')
},
})
})
:addRow(
:addRow(
{
{
{ tag = 'th', content = 'Price' },
{ tag = 'th', content = 'Price' },
{ tag = 'argtd', content = 'price' }
{ tag = 'argtd', content = 'price', fn = DisplayFns.list('unbulleted') }
},
},
{ hideIfEmpty = { 'price' } }
{ hideIfEmpty = { 'price' } }
Line 140: Line 122:
{
{
{ tag = 'th', content = 'Associated card' },
{ tag = 'th', content = 'Associated card' },
{ tag = 'argtd', content = 'card' }
{ tag = 'argtd', content = 'card', fn = DisplayFns.link }
},
},
{ hideIfEmpty = { 'card' } }
{ hideIfEmpty = { 'card' } }
Line 156: Line 138:
{ tag = 'argtd', content = 'gacha' }
{ tag = 'argtd', content = 'gacha' }
},
},
{ hideIfEmtpy = { 'gacha' } }
{ hideIfEmpty = { 'gacha' } }
)
)
:addHeader({ tag = 'th', content = 'Accessory & Hair Information' }, { subheader = true })
:addHeader({ tag = 'th', content = 'Accessory & Hair Information' }, { subheader = true })
Line 169: Line 151:
:addRow(
:addRow(
{
{
{
{ tag = 'argtd', content = 'accessory', classFunc = getAccessoryClass },
{ tag = 'argtd', content = 'unique accessory', classFunc = getAccessoryClass },
tag = 'argtd',
{ tag = 'argtd', content = 'unique hair', classFunc = getAccessoryClass }
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' } }
{ defaultCss = { ['text-align'] = 'center' } }

Latest revision as of 03:02, 3 November 2022

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.