Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Module:Infobox unit: Difference between revisions

From Sekaipedia
Content added Content deleted
(remove the need to link, fixed images)
m (fixed trim)
Line 26: Line 26:
local split_members = split(arg, ",")
local split_members = split(arg, ",")
for i,v in ipairs(split_members) do
for i,v in ipairs(split_members) do
split_members[i] = '[[' .. v:gsub("%s+", "") .. ']]'
split_members[i] = '[[' .. v:match( "^%s*(.-)%s*$" ) .. ']]'
end
end

Revision as of 02:24, 27 June 2021

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


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

local p = {}
local categories = ""

local function split(inputstr, sep)
    if sep == nil then
        sep = "%s"
    end
    local t={}
    for str in string.gmatch(inputstr, "([^"..sep.."]+)") do
        table.insert(t, str)
    end
    return t
end

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

local function formatMembers(arg)
	if arg then
		local split_members = split(arg, ",")
		for i,v in ipairs(split_members) do
			split_members[i] = '[[' .. v:match( "^%s*(.-)%s*$" ) .. ']]'
		end
		
		return table.concat(split_members, "<br>")
	end
	
	return nil
end


function p.main(frame)
	local args = frame:getParent().args
	local infobox = builder.new();
	
	infobox:setName('Infobox Group')
		:setWidth("330px")
	infobox:setParams{
		{ name = 'group name', default = mw.title.getCurrentTitle().text },
		{ name = 'group image', func = formatImage },
		{ name = 'japanese' },
		{ name = 'romaji' },
		{ name = 'english' },
		{ name = 'logo', func = formatImage },
		{ name = 'members', func = formatMembers },
		{ name = 'virtual singers', func = formatMembers }
	}
	
	infobox
		:setArgs(args)

	infobox
		:addHeader({ tag = 'argth', content = 'group name' })
		:addImage{{ tag = 'argtd', content = 'group image' }}
		:addRow(
			{
				{ tag = 'th', content = 'Japanese', colspan = 12 },
				{ tag = 'argtd', content = 'japanese', colspan = 18 }
			},
			{ hideIfEmpty = { 'japanese' } }
		)
		:addRow(
			{
				{ tag = 'th', content = 'Romaji', colspan = 12 },
				{ tag = 'argtd', content = 'romaji', colspan = 18 }
			},
			{ hideIfEmpty = { 'romaji' } }
		)
		:addRow(
			{
				{ tag = 'th', content = 'English', colspan = 12 },
				{ tag = 'argtd', content = 'english', colspan = 18 }
			},
			{ hideIfEmpty = { 'english' } }
		)
		:addHeader({ tag = 'th', content = 'Logo'})
		:addImage{{ tag = 'argtd', content = 'logo' }}
		:addHeader({ tag = 'th', content = 'Information' })
		:addRow(
			{
				{ tag = 'th', content = 'Members', colspan = 12 },
				{ tag = 'argtd', content = 'members', colspan = 18 }
			}
		)
		:addRow(
			{
				{ tag = 'th', content = 'Virtual Singers', colspan = 12 },
				{ tag = 'argtd', content = 'virtual singers', colspan = 18 }
			}
		)
		
	if mw.title.getCurrentTitle().namespace == 0 then
		categories = "[[Category:Groups]]" .. 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.