Module:Infobox costume: Difference between revisions

From Sekaipedia
Content added Content deleted
m (add mission pass row)
(using new builder)
Line 4: Line 4:
local getArgs = require('Module:Arguments').getArgs
local getArgs = require('Module:Arguments').getArgs
local yesno = require('Module:Yesno')
local yesno = require('Module:Yesno')
local builder = require('Module:InfoboxBuilder')
local builder = require('Module:InfoboxBuilder new')


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


local function formatImage(image_name)
local function formatImage(image_name)
Line 13: Line 12:
end
end


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


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


local function getAccessoryCss(accessory)
local function getAccessoryClass(accessory)
local val = yesno(accessory, nil)
-- probably should not use == with bool, but this is more explicit
-- probably should not use == with bool, but this is more explicit
if val == true then
if accessory == true then
return {
return 'true-cell'
elseif accessory == false then
['background-color'] = 'lightgreen',
return 'false-cell'
['font-weight'] = 'bold'
}
elseif val == false then
return {
['background-color'] = 'pink',
['font-weight'] = 'bold'
}
end
end
Line 47: Line 38:
end
end


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




function p.main(frame)
function p.main(frame)
local args = getArgs(frame)
local args = getArgs(frame, { wrappers = { 'Template:Infobox costume' } })
local infobox = builder.new()
local infobox = builder.new()
infobox:setName('Infobox costume')
infobox:setName('Infobox costume')
:setWidth("330px")
:setParams{
:setParams{
{ name = 'costume id' },
{ name = 'costume id' },
{ name = 'costume name', default = mw.title.getCurrentTitle().text },
{ name = 'costume name', default = mw.title.getCurrentTitle().text },
{ name = 'thumbnail', func = formatImage },
{ name = 'thumbnail', dFunc = formatImage },
{ name = 'japanese' },
{ name = 'japanese' },
{ name = 'romaji' },
{ name = 'romaji' },
Line 64: Line 57:
{ name = 'designer' },
{ name = 'designer' },
{ name = 'date' },
{ name = 'date' },
{ name = 'unlock' },
{ name = 'acquire' },
{ name = 'acquire' },
{ name = 'price' },
{ name = 'price' },
{ name = 'card', func = formatLink },
{ name = 'card', dFunc = formatLink },
{ name = 'pass' },
{ name = 'pass' },
{ name = 'accessory', func = formatAccessory },
{ name = 'accessory', pFunc = convertToBoolOrNil, dFunc = formatAccessory },
{ name = 'unique accessory', func = formatAccessory },
{ name = 'unique accessory', pFunc = convertToBoolOrNil, dFunc = formatAccessory },
{ name = 'unique hair', func = formatAccessory },
{ name = 'unique hair', pFunc = convertToBoolOrNil, dFunc = formatAccessory },
}
}
:setArgs(args)
: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
infobox
Line 81: Line 92:
:addRow(
:addRow(
{
{
{ tag = 'th', content = 'Japanese', colspan = 12 },
{ tag = 'th', content = 'Japanese' },
{ tag = 'argtd', content = 'japanese', colspan = 18 }
{ tag = 'argtd', content = 'japanese' }
},
},
{ hideIfEmpty = { 'japanese' } }
{ hideIfEmpty = { 'japanese' } }
Line 88: Line 99:
:addRow(
:addRow(
{
{
{ tag = 'th', content = 'Romaji', colspan = 12 },
{ tag = 'th', content = 'Romaji' },
{ tag = 'argtd', content = 'romaji', colspan = 18 }
{ tag = 'argtd', content = 'romaji' }
},
},
{ hideIfEmpty = { 'romaji' } }
{ hideIfEmpty = { 'romaji' } }
Line 95: Line 106:
:addHeader({ tag = 'th', content = 'Costume Information' }, { subheader = true })
:addHeader({ tag = 'th', content = 'Costume Information' }, { subheader = true })
:addRow({
:addRow({
{ tag = 'th', content = 'Gender', colspan = 12 },
{ tag = 'th', content = 'Gender' },
{ tag = 'argtd', content = 'gender', colspan = 18 }
{ tag = 'argtd', content = 'gender' }
})
})
:addRow(
:addRow(
{
{
{ tag = 'th', content = 'Designer', colspan = 12 },
{ tag = 'th', content = 'Designer' },
{ tag = 'argtd', content = 'designer', colspan = 18 }
{ tag = 'argtd', content = 'designer' }
},
},
{ hideIfEmpty = { 'designer' } }
{ hideIfEmpty = { 'designer' } }
Line 107: Line 118:
:addHeader({ tag = 'th', content = 'Acquisition Information'}, { subheader = true })
:addHeader({ tag = 'th', content = 'Acquisition Information'}, { subheader = true })
:addRow({
:addRow({
{ tag = 'th', content = 'Release date', colspan = 12 },
{ tag = 'th', content = 'Release date' },
{ tag = 'argtd', content = 'date', colspan = 18 },
{ tag = 'argtd', content = 'date' },
})
})
:addRow({
:addRow({
{ tag = 'th', content = 'Acquition method(s)', colspan = 12 },
{ tag = 'th', content = 'Unlock method(s)' },
{ tag = 'argtd', content = 'acquire', colspan = 18 },
{ tag = 'argtd', content = 'unlock' }
})
:addRow({
{ tag = 'th', content = 'Acquition method(s)' },
{ tag = 'argtd', content = 'acquire' },
})
})
:addRow(
:addRow(
{
{
{ tag = 'th', content = 'Price', colspan = 12 },
{ tag = 'th', content = 'Price' },
{ tag = 'argtd', content = 'price', colspan = 18 }
{ tag = 'argtd', content = 'price' }
},
},
{ hideIfEmpty = { 'price' } }
{ hideIfEmpty = { 'price' } }
Line 123: Line 138:
:addRow(
:addRow(
{
{
{ tag = 'th', content = 'Associated card', colspan = 12 },
{ tag = 'th', content = 'Associated card' },
{ tag = 'argtd', content = 'card', colspan = 18 }
{ tag = 'argtd', content = 'card' }
},
},
{ hideIfEmpty = { 'card' } }
{ hideIfEmpty = { 'card' } }
Line 130: Line 145:
:addRow(
:addRow(
{
{
{ tag = 'th', content = 'Mission Pass', colspan = 12 },
{ tag = 'th', content = 'Mission Pass' },
{ tag = 'argtd', content = 'pass', colspan = 18 }
{ tag = 'argtd', content = 'pass' }
},
},
{ hideIfEmpty = { 'pass' } }
{ hideIfEmpty = { 'pass' } }
Line 142: Line 157:
{ tag = 'th', content = 'Unique Hair' },
{ tag = 'th', content = 'Unique Hair' },
},
},
{ default_css = { ['text-align'] = 'center' } }
{ defaultCss = { ['text-align'] = 'center' } }
)
)
:addRow(
:addRow(
{
{
{ tag = 'argtd', content = 'accessory', param_css = { getAccessoryCss } },
{ tag = 'argtd', content = 'accessory', classFunc = { getAccessoryClass } },
{ tag = 'argtd', content = 'unique accessory', param_css = { getAccessoryCss } },
{ tag = 'argtd', content = 'unique accessory', classFunc = { getAccessoryClass } },
{ tag = 'argtd', content = 'unique hair', param_css = { getAccessoryCss } }
{ tag = 'argtd', content = 'unique hair', classFunc = { getAccessoryClass } }
},
},
{ default_css = { ['text-align'] = 'center' } }
{ defaultCss = { ['text-align'] = 'center' } }
)
)

local categories = ""
if mw.title.getCurrentTitle().namespace == 0 then
if mw.title.getCurrentTitle().namespace == 0 then
categories = "[[Category:Costumes]]" .. categories
categories = "[[Category:Costumes]]" .. categories
local procArgs = infobox:getArgs('processed')
local rawArgs = infobox:getArgs('raw')
if yesno(rawArgs['accessory'], nil) then
categories = categories .. "[[Category:Costumes with accessories]]"
end
if yesno(rawArgs['unique accessory'], nil) then
categories = categories .. "[[Category:Costumes with unique accessories]]"
end
if yesno(rawArgs['unique hair'], nil) then
categories = categories .. "[[Category:Costumes with unique hair]]"
end
if rawArgs['gender'] == 'Ladies' then
categories = categories .. "[[Category:Ladies' costumes]]"
elseif rawArgs['gender'] == 'Men' then
categories = categories .. "[[Category:Men's costumes]]"
end
end
end



Revision as of 08:02, 22 January 2022

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


--------------------------
-- Module for [[Template:Infobox costume]]
------------------------
local getArgs   = require('Module:Arguments').getArgs
local yesno     = require('Module:Yesno')
local builder   = require('Module:InfoboxBuilder new')

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)
	-- 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

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


function p.main(frame)
	local args = getArgs(frame, { wrappers = { 'Template:Infobox costume' } })
	local infobox = builder.new()
	
	infobox:setName('Infobox costume')
		:setParams{
			{ name = 'costume id' },
			{ name = 'costume name', default = mw.title.getCurrentTitle().text },
			{ name = 'thumbnail', dFunc = formatImage },
			{ name = 'japanese' },
			{ name = 'romaji' },
			{ name = 'gender' },
			{ name = 'designer' },
			{ name = 'date' },
			{ name = 'unlock' },
			{ name = 'acquire' },
			{ name = 'price' },
			{ name = 'card', dFunc = formatLink },
			{ name = 'pass' },
			{ name = 'accessory', pFunc = convertToBoolOrNil, dFunc = formatAccessory },
			{ name = 'unique accessory', pFunc = convertToBoolOrNil, dFunc = formatAccessory },
			{ name = 'unique hair', pFunc = convertToBoolOrNil, dFunc = formatAccessory },
		}
		: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' },
		})
		: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 = 'th', content = 'Unlock method(s)' },
			{ tag = 'argtd', content = 'unlock' }
		})
		:addRow({
			{ tag = 'th', content = 'Acquition method(s)' },
			{ tag = 'argtd', content = 'acquire' },
		})
		:addRow(
			{
				{ tag = 'th', content = 'Price' },
				{ tag = 'argtd', content = 'price' }
			},
			{ hideIfEmpty = { 'price' } }
		)
		:addRow(
			{
				{ tag = 'th', content = 'Associated card' },
				{ tag = 'argtd', content = 'card' }
			},
			{ hideIfEmpty = { 'card' } }
		)
		:addRow(
			{
				{ tag = 'th', content = 'Mission Pass' },
				{ tag = 'argtd', content = 'pass' }
			},
			{ hideIfEmpty = { 'pass' } }
		)
		: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', classFunc = { getAccessoryClass } },
				{ tag = 'argtd', content = 'unique accessory', classFunc = { getAccessoryClass } },
				{ tag = 'argtd', content = 'unique hair', classFunc = { getAccessoryClass } }
			},
			{ defaultCss = { ['text-align'] = 'center' } }
		)
	
	local categories = ""
	if mw.title.getCurrentTitle().namespace == 0 then
		categories = "[[Category:Costumes]]" .. categories
	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.