Module:Infobox item: Difference between revisions

From Sekaipedia
Content added Content deleted
(created infobox item module)
 
mNo edit summary
Line 2: Line 2:
-- Module for [[Template:Infobox Material]]
-- Module for [[Template:Infobox Material]]
------------------------
------------------------
local builder = require('Module:InfoboxBuilder')

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

Revision as of 06:09, 10 July 2021

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


--------------------------
-- Module for [[Template:Infobox Material]]
------------------------
local builder   = require('Module:InfoboxBuilder')

local p = {}
local categories = ""

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

function p.main(frame)
	local args = frame:getParent().args
	local infobox = builder.new();
	
	infobox:setName('Infobox Item')
		:setWidth("330px")
		:setParams{
			{ name = 'item name', default = mw.title.getCurrentTitle().text },
			{ name = 'image', func = formatImage },
			{ name = 'japanese' },
			{ name = 'romaji' },
			{ name = 'english' },
			{ name = 'description' },
			{ name = 'date' }
		}
		:setArgs(args)
		:setHeaderColors({
			['background-color'] = '00cdba',
			['color'] = '#fff'
		})

	infobox
		:addHeader({ tag = 'argth', content = 'item name' })
		:addImage(
			{
				{ tag = 'argtd', content = 'image' },
			}
		)
		:addRow(
			{
				{ tag = 'th', content = 'Japanese', colspan = 12 },
				{ tag = 'argtd', content = 'japanese', colspan = 18 }
			}
		)
		:addRow(
			{
				{ tag = 'th', content = 'Romaji', colspan = 12 },
				{ tag = 'argtd', content = 'romaji', colspan = 18 }
			}
		)
		:addRow(
			{
				{ tag = 'th', content = 'English', colspan = 12 },
				{ tag = 'argtd', content = 'english', colspan = 18 }
			}
		)
		:addHeader(
			{ tag = 'th', content = 'Unit' }, 
			{ hideIfEmpty = { 'unit' } }
		)
		:addHeader({ tag = 'th', content = 'Item Information' })
		:addRow(
			{
				{ tag = 'th', content = 'Description', colspan = 12 },
				{ tag = 'argtd', content = 'description', colspan = 18 }
			}
		)
	
	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.