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

Module:Infobox card: Difference between revisions

From Sekaipedia
Content added Content deleted
mNo edit summary
mNo edit summary
 
(101 intermediate revisions by 2 users not shown)
Line 1: Line 1:
--------------------------
--------------------------
-- Module for [[Template:Infobox Card]]
-- Module for [[Template:Infobox card]]
------------------------
------------------------
local getArgs = require('Module:Arguments').getArgs

local getArgs = require('Module:Arguments').getArgs
local QueryBuilder = require('Module:QueryBuilder')
local InfoboxBuilder = require('Module:InfoboxBuilder')
local DisplayFns = require('Module:DisplayFunctions')
local ProcessingFns = require('Module:ProcessingFunctions')
local aicon = require('Module:Attribute icon')._main
local cicon = require('Module:Character icon')._main
local ricon = require('Module:Rarity icon')._main
local uicon = require('Module:Unit icon')._main
local VariablesLua = mw.ext.VariablesLua


local p = {}
local p = {}
local _frame


local function formatAttribute(attribute)
local root
if attribute and attribute ~= '' then
return string.format(
"%s [[%s]]",
aicon({ attribute, size = '20px' }) or '',
attribute
)
end
return nil
end


local function formatCharacter(character)
local colors = {
if character and charater ~= '' then
cute = { bg = '#FF70A8', text = '#FFFFFF' },
return string.format(
cool = { bg = '', text = ''},
"%s [[%s]]",
pure = { bg = '', text = ''},
happy = { bg = '', text = ''},
cicon({ character, size = '20px' }) or '',
character
mysterious = { bg = '#8651BC', text = '#FFFFFF' }
)
}
end
local palette = { bg = '#000000', text = '#FFFFFF' }
return nil
end


local function formatRarity(rarity)
local units = {
if rarity and rarity ~= '' then
vs = { image = 'Virtualsingerlogo.png', link = 'VIRTUAL SINGER' },
return ricon({ rarity, '20px' })
ln = { image = 'Leoneedlogo.png', link = 'Leo/need' },
end
mmj = { image = 'MMJ_logo.png', link = 'MORE MORE JUMP!'},
vbs = { image = 'Vivid_logo.png', link = 'Vivid BAD SQUAD'},
wxs = { image = 'Wonderlandsxswowtimelogo.png', link = 'Wonderlands×Showtime' },
['25ji'] = { image = '25ji-logo.png', link = '25-ji, Night Code de.' }
}


return nil
local function addHeader(label)
root:tag('tr')
:tag('th')
:attr('colspan', 30)
:css({
['text-align'] = 'center',
['background-color'] = palette.bg,
color = palette.text
})
:wikitext(label)
end
end


local function addRow(label, data)
local function formatUnit(unit)
if data then
if unit and unit ~= '' then
return string.format(
root:tag('tr')
"%s [[%s]]",
:attr('id', label)
uicon({ unit, size = '20px' }) or '',
:tag('th')
unit
:attr('colspan', 12)
)
:css('text-align', 'left')
:wikitext(label)
:done()
:tag('td')
:attr('colspan', 18)
:wikitext(data)
:done()
end
end
return nil
end
end


local function addCardArt(rarity, untrained , trained)
local function formatEventId(id)
local image_size = 220
local qb = QueryBuilder.new()
qb
:setTables('events')
local images = string.format(
:setFields([[
'Trained=[[File:%s|%dpx]]',
_pageName,
untrained or '',
event_name,
image_size)
]])
:setGroupBy('_pageName')
:setLimit(1)
:addWhere('event_id', '=', id)
local result = qb:query()[1]
if rarity > 2 and trained then
if result then
images = images . string.format(
return string.format('[[%s|%s]]', result._pageName, result.event_name)
'|-|Untrained=[[File:%s|%dpx]]',
trained,
image_size)
end
end
return nil
root:tag('tr')
:tag('td')
:attr('colspan', 30)
:css('text-align', 'center')
:wikitext(frame:callParserFunction({
name = '#tag',
args = { 'tabber', images }
}))
end
end


local function addUnit(unit, subunit)
local function formatGachaId(id)
local qb = QueryBuilder.new()
if unit and units[unit] then
qb
local unit_info = units[unit]
:setTables('gachas')
:setFields([[
_pageName,
gacha_name,
]])
:setGroupBy('_pageName')
:setLimit(1)
:addWhere('gacha_id', '=', id)
local result = qb:query()[1]
root:tag('tr')
:tag('td')
if result then
:attr('colspan', 30)
return string.format('[[%s|%s]]', result._pageName, result.gacha_name)
:css('text-align', 'center')
:wikitext(
string.format(
"[[File:%s|150px|link=%s]]",
unit_info.image,
unit_info.link
))
end
end
return nil
end
end


local function addAttribute(attr)
if attr then
root:tag('tr')
:tag('td')
:attr('colspan', 30)
:css('text-align', 'center')
:wikitext(
_frame:expandTemplate({
title = 'Icons',
args = { attr, size='20px' }
})
)
end
end


function p.main(frame)
function p.main(frame)
local args = getArgs(frame, { wrappers = 'Template:Infobox card' })
_frame = frame
local infobox = InfoboxBuilder.new()
args = getArgs(frame)
infobox:setName('Infobox card')
if args['bg color'] or args['text color'] then
:setParams{
if args['bg color'] then
palette.bg = args['bg color']
{ name = 'card id' },
{ name = 'card name', default = mw.title.getCurrentTitle().text },
end
{ name = 'thumbnail' },
if args['text color'] then
{ name = 'thumbnail trained' },
palette.text = args['text color']
{ name = 'japanese' },
end
{ name = 'romaji' },
elseif args.unit and colors[args.unit] then
{ name = 'character' },
palette = colors[args['unit']]
{ name = 'attribute' },
end
{ name = 'rarity' },
{ name = 'unit' },
{ name = 'support unit' },
{ name = 'status' },
{ name = 'date' },
{ name = 'acquire', fn = ProcessingFns.stringToArray(',') },
{ name = 'event id', dFunc = formatEventId },
{ name = 'gacha id', dFunc = formatGachaId },
-- Compatability args
{ name = 'obtain', fn = ProcessingFns.stringToArray(',') },
{ name = 'event' },
{ name = 'banner' },
{ name = 'gacha' },
}
:setArgs(args)
:processArgs()
:setCategoryMap({
['character'] = {
-- VIRTUAL SINGER
['Hatsune Miku'] = 'Hatsune Miku cards',
['Kagamine Rin'] = 'Kagamine Rin cards',
['Kagamine Len'] = 'Kagamine Len cards',
['Megurine Luka'] = 'Megurine Luka cards',
['MEIKO'] = 'MEIKO cards',
['KAITO'] = 'KAITO cards',
-- Leo/need
['Hoshino Ichika'] = 'Hoshino Ichika cards',
['Tenma Saki'] = 'Tenma Saki cards',
['Mochizuki Honami'] = 'Mochizuki Honami cards',
['Hinomori Shiho'] = 'Hinomori Shiho cards',

-- MORE MORE JUMP!
['Hanasato Minori'] = 'Hanasato Minori cards',
['Kiritani Haruka'] = 'Kiritani Haruka cards',
['Momoi Airi'] = 'Momoi Airi cards',
['Hinomori Shizuku'] = 'Hinomori Shizuku cards',
-- Vivid BAD SQUAD
root = mw.html.create('table')
['Azusawa Kohane'] = 'Azusawa Kohane cards',
root
['Shiraishi An'] = 'Shiraishi An cards',
:addClass('infobox')
['Shinonome Akito'] = 'Shinonome Akito cards',
:css('width', width)
['Aoyagi Toya'] = 'Aoyagi Toya cards',
-- Wonderlands×Showtime
addHeader(args['title'])
['Tenma Tsukasa'] = 'Tenma Tsukasa cards',
addCardArt(args['untrained'], args['trained'])
['Otori Emu'] = 'Otori Emu cards',
addRarity(args['rarity'])
['Kusanagi Nene'] = 'Kusanagi Nene cards',
addRow('Japanese', args['japanese'])
['Kamishiro Rui'] = 'Kamishiro Rui cards',
addRow('Romaji', args['romaji'])
-- 25-ji, Night Code de.
addHeader('Unit')
['Yoisaki Kanade'] = 'Yoisaki Kanade cards',
addUnit(args['unit'], args['subunit'])
['Asahina Mafuyu'] = 'Asahina Mafuyu cards',
['Shinonome Ena'] = 'Shinonome Ena cards',
['Akiyama Mizuki'] = 'Akiyama Mizuki cards',
},
['attribute'] = {
['Cool'] = 'Cool cards',
['Cute'] = 'Cute cards',
['Happy'] = 'Happy cards',
['Mysterious'] = 'Mysterious cards',
['Pure'] = 'Pure cards',
},
['rarity'] = {
['1'] = '1☆ cards',
['2'] = '2☆ cards',
['3'] = '3☆ cards',
['4'] = '4☆ cards',
['Birthday'] = 'Birthday cards',
},
['status'] = {
['Permanent'] = 'Permanent cards',
['Limited'] = 'Limited cards',
['Colorful Festival limited'] = 'Colorful Festival limited cards',
['Bloom Festival limited'] = 'Bloom Festival limited cards',
['Birthday limited'] = 'Birthday limited cards',
}
})

infobox
:addHeader({ tag = 'argth', content = 'card name' })
:addImage({
{
tag = 'argtd',
content = 'thumbnail',
tabName = 'Untrained',
fn = DisplayFns.image('156px')
},
{
tag = 'argtd',
content = 'thumbnail trained',
tabName = 'Trained',
fn = DisplayFns.image('156px')
}
})
: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 = 'Card Information' }, { subheader = true })
:addRow({
{ tag = 'th', content = 'Card ID' },
{ tag = 'argtd', content = 'card id' }
})
:addRow({
{ tag = 'th', content = 'Character' },
{ tag = 'argtd', content = 'character', fn = formatCharacter }
})
:addRow({
{ tag = 'th', content = 'Attribute' },
{ tag = 'argtd', content = 'attribute', fn = formatAttribute }
})
:addRow({
{ tag = 'th', content = 'Rarity' },
{ tag = 'argtd', content = 'rarity', fn = formatRarity }
})
:addRow({
{ tag = 'th', content = 'Unit' },
{ tag = 'argtd', content = 'unit', fn = formatUnit }
})
:addRow(
{
{ tag = 'th', content = 'Support unit' },
{ tag = 'argtd', content = 'support unit', fn = formatUnit }
},
{ hideIfEmpty = { 'support unit' } }
)
:addHeader({ tag = 'th', content = 'Acquisition Information' }, { subheader = true })
:addRow({
{ tag = 'th', content = 'Status' },
{ tag = 'argtd', content = 'status' }
})
:addRow({
{ tag = 'th', content = 'Release date' },
{ tag = 'argtd', content = 'date' }
})
:addRow(
{
{ tag = 'th', content = 'Acquisition method(s)' },
{ tag = 'argtd', content = 'obtain', fn = DisplayFns.list('unbulleted') }
},
{ hideIfEmpty = { 'obtain' } }
)
:addRow(
{
{
tag = 'argth',
content = 'acquire',
fn = DisplayFns.pluralHeader({ 'Acquisition method', 'Acquisition methods' })
},
{
tag = 'argtd',
content = 'acquire',
fn = DisplayFns.list('unbulleted')
}
},
{ hideIfEmpty = { 'acquire' } }
)
:addRow(
{
{ tag = 'th', content = 'Associated event' },
{ tag = 'argtd', content = 'event', fn = DisplayFns.link }
},
{ hideIfEmpty = { 'event' } }
)
:addRow(
{
{ tag = 'th', content = 'Debut gacha' },
{ tag = 'argtd', content = 'banner', fn = DisplayFns.link }
},
{ hideIfEmpty = { 'banner' } }
)
:addRow(
{
{ tag = 'th', content = 'Debut gacha' },
{ tag = 'argtd', content = 'gacha', fn = DisplayFns.link }
},
{ hideIfEmpty = { 'gacha' } }
)
local categories = ''
addHeader('Card Information')
if mw.title.getCurrentTitle().namespace == 0 then
-- addAttribute
categories = '[[Category:Cards]]' .. infobox:getCategories()
addRow('Character', args['character'])
addRow('Release Date', args['date'])
local rawArgs = infobox:getRawArgs()
addRow('Status', args['status'])
VariablesLua.vardefine( 'card id', rawArgs['card id'] )
addRow('Card Debut', args['debut'])
VariablesLua.vardefine( 'rarity', rawArgs['rarity'] )
addRow('Card ID', args['id'])
VariablesLua.vardefine( 'character', rawArgs['character'] )
VariablesLua.vardefine( 'support unit', rawArgs['support unit'] )
addHeader('Side Stories')
VariablesLua.vardefine( 'attribute', rawArgs['attribute'] )
VariablesLua.vardefine( 'date', rawArgs['date'] )
local spacer = root:tag('tr')
VariablesLua.vardefine( 'event id', rawArgs['event id'] )
for i=1,30,1 do
spacer:tag('td')
:attr('colspan', 1)
:css('width', 'calc(100% / 30)')
end
end

return infobox:tostring() .. categories
end
end



Latest revision as of 14:47, 30 June 2024

--------------------------
-- Module for [[Template:Infobox card]]
------------------------
local getArgs      = require('Module:Arguments').getArgs
local QueryBuilder = require('Module:QueryBuilder')
local InfoboxBuilder = require('Module:InfoboxBuilder')
local DisplayFns     = require('Module:DisplayFunctions')
local ProcessingFns  = require('Module:ProcessingFunctions')
local aicon = require('Module:Attribute icon')._main
local cicon = require('Module:Character icon')._main
local ricon = require('Module:Rarity icon')._main
local uicon = require('Module:Unit icon')._main
local VariablesLua = mw.ext.VariablesLua

local p = {}

local function formatAttribute(attribute)
	if attribute and attribute ~= '' then
		return string.format(
			"%s [[%s]]",
			aicon({ attribute, size = '20px' }) or '',
			attribute
		)
	end
	
	return nil
end

local function formatCharacter(character)
	if character and charater ~= '' then
		return string.format(
			"%s [[%s]]",
			cicon({ character, size = '20px' }) or '',
			character
		)
	end
	
	return nil
end

local function formatRarity(rarity)
	if rarity and rarity ~= '' then
		return ricon({ rarity, '20px' })
	end

	return nil
end

local function formatUnit(unit)
	if unit and unit ~= '' then
		return string.format(
			"%s [[%s]]",
			uicon({ unit, size = '20px' }) or '',
			unit
		)
	end
	
	return nil
end

local function formatEventId(id)
	local qb = QueryBuilder.new()
	qb
		:setTables('events')
		:setFields([[
			_pageName,
			event_name,
		]])
		:setGroupBy('_pageName')
        :setLimit(1)
		:addWhere('event_id', '=', id)
		
	local result = qb:query()[1]
	
	if result then
		return string.format('[[%s|%s]]', result._pageName, result.event_name)
	end
	
	return nil
end

local function formatGachaId(id)
	local qb = QueryBuilder.new()
	qb
		:setTables('gachas')
		:setFields([[
			_pageName,
			gacha_name,
		]])
		:setGroupBy('_pageName')
        :setLimit(1)
		:addWhere('gacha_id', '=', id)
		
	local result = qb:query()[1]
	
	if result then
		return string.format('[[%s|%s]]', result._pageName, result.gacha_name)
	end
	
	return nil
end


function p.main(frame)
	local args = getArgs(frame, { wrappers = 'Template:Infobox card' })
	local infobox = InfoboxBuilder.new()
	
	infobox:setName('Infobox card')
		:setParams{
			{ name = 'card id' },
			{ name = 'card name', default = mw.title.getCurrentTitle().text },
			{ name = 'thumbnail' },
			{ name = 'thumbnail trained' },
			{ name = 'japanese' },
			{ name = 'romaji' },
			{ name = 'character' },
			{ name = 'attribute' },
			{ name = 'rarity' },
			{ name = 'unit' },
			{ name = 'support unit' },
			{ name = 'status' },
			{ name = 'date' },
			{ name = 'acquire',	fn = ProcessingFns.stringToArray(',') },
			{ name = 'event id', dFunc = formatEventId },
			{ name = 'gacha id', dFunc = formatGachaId },
			-- Compatability args
			{ name = 'obtain', fn = ProcessingFns.stringToArray(',') },
			{ name = 'event' },
			{ name = 'banner' },
			{ name = 'gacha' },
		}
		:setArgs(args)
		:processArgs()
		:setCategoryMap({
			['character'] = {
				-- VIRTUAL SINGER
				['Hatsune Miku'] = 'Hatsune Miku cards',
				['Kagamine Rin'] = 'Kagamine Rin cards',
				['Kagamine Len'] = 'Kagamine Len cards',
				['Megurine Luka'] = 'Megurine Luka cards',
				['MEIKO'] = 'MEIKO cards',
				['KAITO'] = 'KAITO cards',
				
				-- Leo/need
				['Hoshino Ichika']   = 'Hoshino Ichika cards',
				['Tenma Saki']       = 'Tenma Saki cards',
				['Mochizuki Honami'] = 'Mochizuki Honami cards',
				['Hinomori Shiho']   = 'Hinomori Shiho cards',

				-- MORE MORE JUMP!
				['Hanasato Minori']  = 'Hanasato Minori cards',
				['Kiritani Haruka']  = 'Kiritani Haruka cards',
				['Momoi Airi']       = 'Momoi Airi cards',
				['Hinomori Shizuku'] = 'Hinomori Shizuku cards',
	
				-- Vivid BAD SQUAD
				['Azusawa Kohane']  = 'Azusawa Kohane cards',
				['Shiraishi An']    = 'Shiraishi An cards',
				['Shinonome Akito'] = 'Shinonome Akito cards',
				['Aoyagi Toya']     = 'Aoyagi Toya cards',
	
				-- Wonderlands×Showtime
				['Tenma Tsukasa'] = 'Tenma Tsukasa cards',
				['Otori Emu']     = 'Otori Emu cards',
				['Kusanagi Nene'] = 'Kusanagi Nene cards',
				['Kamishiro Rui'] = 'Kamishiro Rui cards',
	
				-- 25-ji, Night Code de.
				['Yoisaki Kanade'] = 'Yoisaki Kanade cards',
				['Asahina Mafuyu'] = 'Asahina Mafuyu cards',
				['Shinonome Ena']  = 'Shinonome Ena cards',
				['Akiyama Mizuki'] = 'Akiyama Mizuki cards',
			},
			['attribute'] = {
				['Cool']       = 'Cool cards',
				['Cute']       = 'Cute cards',
				['Happy']      = 'Happy cards',
				['Mysterious'] = 'Mysterious cards',
				['Pure']       = 'Pure cards',
			},
			['rarity'] = {
				['1'] = '1☆ cards',
				['2'] = '2☆ cards',
				['3'] = '3☆ cards',
				['4'] = '4☆ cards',
				['Birthday'] = 'Birthday cards',
			},
			['status'] = {
				['Permanent'] = 'Permanent cards',
				['Limited']   = 'Limited cards',
				['Colorful Festival limited'] = 'Colorful Festival limited cards',
				['Bloom Festival limited'] = 'Bloom Festival limited cards',
				['Birthday limited'] = 'Birthday limited cards',
			}
		})

	infobox
		:addHeader({ tag = 'argth', content = 'card name' })
		:addImage({
			{ 
				tag = 'argtd', 
				content = 'thumbnail', 
				tabName = 'Untrained',
				fn = DisplayFns.image('156px')
			},
			{ 
				tag = 'argtd', 
				content = 'thumbnail trained', 
				tabName = 'Trained',
				fn = DisplayFns.image('156px')
			}
		})
		: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 = 'Card Information' }, { subheader = true })
		:addRow({
			{ tag = 'th', content = 'Card ID' },
			{ tag = 'argtd', content = 'card id' }
		})
		:addRow({
			{ tag = 'th', content = 'Character' },
			{ tag = 'argtd', content = 'character', fn = formatCharacter }
		})
		:addRow({
			{ tag = 'th', content = 'Attribute' },
			{ tag = 'argtd', content = 'attribute', fn = formatAttribute }
		})
		:addRow({
			{ tag = 'th', content = 'Rarity' },
			{ tag = 'argtd', content = 'rarity', fn = formatRarity }
		})
		:addRow({
			{ tag = 'th', content = 'Unit' },
			{ tag = 'argtd', content = 'unit', fn = formatUnit }
		})
		:addRow(
			{
				{ tag = 'th', content = 'Support unit' },
				{ tag = 'argtd', content = 'support unit', fn = formatUnit }
			},
			{ hideIfEmpty = { 'support unit' } }
		)
		:addHeader({ tag = 'th', content = 'Acquisition Information' }, { subheader = true })
		:addRow({
			{ tag = 'th', content = 'Status' },
			{ tag = 'argtd', content = 'status' }
		})
		:addRow({
			{ tag = 'th', content = 'Release date' },
			{ tag = 'argtd', content = 'date' }
		})
		:addRow(
			{
				{ tag = 'th', content = 'Acquisition method(s)' },
				{ tag = 'argtd', content = 'obtain', fn = DisplayFns.list('unbulleted') }
			},
			{ hideIfEmpty = { 'obtain' } }
		)
		:addRow(
			{
				{
					tag = 'argth', 
					content = 'acquire',
					fn = DisplayFns.pluralHeader({ 'Acquisition method', 'Acquisition methods' })
				},
				{
					tag = 'argtd', 
					content = 'acquire',
					fn = DisplayFns.list('unbulleted')
				}
			},
			{ hideIfEmpty = { 'acquire' } }
		)
		:addRow(
			{
				{ tag = 'th', content = 'Associated event' },
				{ tag = 'argtd', content = 'event', fn = DisplayFns.link }
			},
			{ hideIfEmpty = { 'event' } }
		)
		:addRow(
			{
				{ tag = 'th', content = 'Debut gacha' },
				{ tag = 'argtd', content = 'banner', fn = DisplayFns.link }
			},
			{ hideIfEmpty = { 'banner' } }
		)
		:addRow(
			{
				{ tag = 'th', content = 'Debut gacha' },
				{ tag = 'argtd', content = 'gacha', fn = DisplayFns.link }
			},
			{ hideIfEmpty = { 'gacha' } }
		)
	
	local categories = ''
	if mw.title.getCurrentTitle().namespace == 0 then
		categories = '[[Category:Cards]]' .. infobox:getCategories()
		
		local rawArgs = infobox:getRawArgs()
		VariablesLua.vardefine( 'card id', rawArgs['card id'] )
		VariablesLua.vardefine( 'rarity', rawArgs['rarity'] )
		VariablesLua.vardefine( 'character', rawArgs['character'] )
		VariablesLua.vardefine( 'support unit', rawArgs['support unit'] )
		VariablesLua.vardefine( 'attribute', rawArgs['attribute'] )
		VariablesLua.vardefine( 'date', rawArgs['date'] )
		VariablesLua.vardefine( 'event id', rawArgs['event id'] )
	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.