Module:Infobox Item

From Brighter Shores Wiki
Revision as of 02:24, 6 April 2024 by Gau Cho (talk | contribs) (Created page with "local p = {} local Infobox = require('Module:Infobox') local parse = require('Module:Param Parse') function p.main(frame) local args = frame:getParent().args local config = { infobox_name = 'Item', } local params = { parse.name, parse.image, parse.release, parse.premium, parse.episode, {name = 'profession', func = parse.has_content, category_incomplete = 'Items needing profession', smw_func = 'Profession'}, -- TODO - move to Module:Param Parse onc...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
Module documentation
This documentation is transcluded from Template:No documentation/doc. [edit] [history] [purge]
This module does not have any documentation. Please consider adding documentation at Module:Infobox Item/doc. [edit]
Module:Infobox Item's function main is invoked by Template:Infobox Item.
Module:Infobox Item requires Module:Infobox.
Module:Infobox Item requires Module:Param Parse.

local p = {}

local Infobox = require('Module:Infobox')
local parse = require('Module:Param Parse')

function p.main(frame)
	local args = frame:getParent().args
	
	local config = {
		infobox_name = 'Item',
	}
	
	local params = {
		parse.name,
		parse.image,
		parse.release,
		parse.premium,
		parse.episode,
		{name = 'profession', func = parse.has_content, category_incomplete = 'Items needing profession', smw_func = 'Profession'}, -- TODO - move to Module:Param Parse once more details are available
		{name = 'value', func = parse.number, category_incomplete = 'Items needing value', smw_func = 'Value'}, -- TODO - move to Module:Param Parse once more details are available
	}
	
	local infobox = Infobox.new(config, params, args)
	infobox
		:add_row{
			{tag='th', content=Infobox.param('name'), class='infobox-header', colspan='20'},
		}
		:add_row{
			{tag='td', content=Infobox.param('image'), class='infobox-image', colspan='20'},
		}
		:add_row{
			{tag='th', content='Release', colspan="6"},
			{tag='td', content=Infobox.param('release'), colspan="14"},
		}
		:add_row{
			{tag='th', content='[[Premium Pass|Premium]]', colspan="6"},
			{tag='td', content=Infobox.param('premium'), colspan="14"},
		}
		:add_row{
			{tag='th', content='[[Profession]]', colspan="6"},
			{tag='td', content=Infobox.param('profession'), colspan="14"},
		}
		:add_row{
			{tag='th', content='[[Value]]', colspan="6"},
			{tag='td', content=Infobox.param('value'), colspan="14"},
		}
		:pad(20)
	
	return infobox
end

return p