Module:Infobox item

From Sekaipedia
Revision as of 03:56, 25 January 2022 by ChaoticShadow (talk | contribs) (using new builder)

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


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

local p = {}

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

function p.main(frame)
	local args = getArgs(frame)
	local infobox = builder.new();
	
	infobox:setName('Infobox item')
		:setParams{
			{ name = 'item name', default = mw.title.getCurrentTitle().text },
			{ name = 'image', dFunc = formatImage },
			{ name = 'japanese' },
			{ name = 'romaji' },
			{ name = 'english' },
			{ name = 'description' },
			{ name = 'date' }
		}
		:setArgs(args)
		:processArgs()

	infobox
		:addHeader({ tag = 'argth', content = 'item name' })
		:addImage(
			{
				{ tag = 'argtd', content = 'image' },
			}
		)
		:addRow(
			{
				{ tag = 'th', content = 'Japanese' },
				{ tag = 'argtd', content = 'japanese' }
			}
		)
		:addRow(
			{
				{ tag = 'th', content = 'Romaji' },
				{ tag = 'argtd', content = 'romaji' }
			}
		)
		:addRow(
			{
				{ tag = 'th', content = 'English' },
				{ tag = 'argtd', content = 'english' }
			},
			{ hideIfEmpty = { 'english' } }
		)
		:addHeader({ tag = 'th', content = 'Item Description' }, { subheader = true })
		:addRow(
			{
				{ tag = 'argtd', content = 'description', css = { ['text-align'] = 'center' } }
			}
		)
	
	local categories = ""
	if mw.title.getCurrentTitle().namespace == 0 then
		categories = "[[Category:Items]]" .. 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.