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
No edit summary
mNo edit summary
 
(18 intermediate revisions by the same user not shown)
Line 2: Line 2:
-- Module for [[Template:Infobox card]]
-- Module for [[Template:Infobox card]]
------------------------
------------------------
local getArgs = require('Module:Arguments').getArgs
local getArgs = require('Module:Arguments').getArgs
local InfoboxBuilder = require('Module:InfoboxBuilder new')
local QueryBuilder = require('Module:QueryBuilder')
local QueryBuilder = require('Module:QueryBuilder')
local InfoboxBuilder = require('Module:InfoboxBuilder')
local constants = require('Module:Constants')
local DisplayFns = require('Module:DisplayFunctions')
local ProcessingFns = require('Module:ProcessingFunctions')
local aicon = require('Module:Attribute icon')._main
local aicon = require('Module:Attribute icon')._main
local cicon = require('Module:Character icon')._main
local cicon = require('Module:Character icon')._main
local ricon = require('Module:Rarity icon')._main
local ricon = require('Module:Rarity icon')._main
local icons = require('Module:Icons')._main
local uicon = require('Module:Unit icon')._main
local VariablesLua = mw.ext.VariablesLua
local VariablesLua = mw.ext.VariablesLua


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

local function splitStringWithDelim(delim)
return function(str)
if str == nil then
return nil
end
local list = mw.text.split(str, delim)
for i=1,#list do
list[i] = mw.text.trim(list[i])
end
return list
end
end

local function formatList(list)
if #list < 2 then
return list[1]
end
local ul = mw.html.create('ul')
for i=1,#list do
ul:tag('li')
:wikitext(list[i])
end
return tostring(ul)
end

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


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


local function formatRarity(rarity)
local function formatRarity(rarity)
if rarity and rarity ~= '' then
if rarity and rarity ~= '' then
if tonumber(rarity) and
return ricon({ rarity, '20px' })
tonumber(rarity) >= 1 and
tonumber(rarity) <= 4 then
return ricon({ rarity, '20px' })
elseif rarity == 'Birthday' then
return ricon({ rarity, '20px' })
end
end
end


Line 94: Line 51:
return string.format(
return string.format(
"%s [[%s]]",
"%s [[%s]]",
icons({ unit, size = '20px' }),
uicon({ unit, size = '20px' }) or '',
constants.get_unit(unit)
unit
)
)
end
end
return nil
return nil
Line 105: Line 62:
local qb = QueryBuilder.new()
local qb = QueryBuilder.new()
qb
qb
:setTables('Events')
:setTables('events')
:setFields([[
:setFields([[
_pageName,
_pageName,
Line 126: Line 83:
local qb = QueryBuilder.new()
local qb = QueryBuilder.new()
qb
qb
:setTables('Gachas')
:setTables('gachas')
:setFields([[
:setFields([[
_pageName,
_pageName,
Line 139: Line 96:
if result then
if result then
return string.format('[[%s|%s]]', result._pageName, result.gacha_name)
return string.format('[[%s|%s]]', result._pageName, result.gacha_name)
end
return nil
end

local function formatBreakCommas(val)
if val then
local split_val = mw.text.split(val, ',')
for i,v in ipairs(split_val) do
split_val[i] = mw.text.trim(v)
end
return table.concat(split_val, "<br>")
end
return nil

end

local function formatToLink(val)
if val and val ~= '' then
return '[[' .. val .. ']]'
end
end
Line 175: Line 110:
{ name = 'card id' },
{ name = 'card id' },
{ name = 'card name', default = mw.title.getCurrentTitle().text },
{ name = 'card name', default = mw.title.getCurrentTitle().text },
{ name = 'thumbnail', dFunc = formatImage },
{ name = 'thumbnail' },
{ name = 'thumbnail trained', dFunc = formatImage },
{ name = 'thumbnail trained' },
{ name = 'japanese' },
{ name = 'japanese' },
{ name = 'romaji' },
{ name = 'romaji' },
{ name = 'character', dFunc = formatCharacter },
{ name = 'character' },
{ name = 'attribute', dFunc = formatAttribute },
{ name = 'attribute' },
{ name = 'rarity', dFunc = formatRarity },
{ name = 'rarity' },
{ name = 'unit', dFunc = formatUnit },
{ name = 'unit' },
{ name = 'support unit' , dFunc = formatUnit},
{ name = 'support unit' },
{ name = 'status' },
{ name = 'status' },
{ name = 'date' },
{ name = 'date' },
{ name = 'obtain', pFunc = splitStringWithDelim(','), dFunc = formatList },
{ name = 'acquire', fn = ProcessingFns.stringToArray(',') },
{ name = 'acquire', pFunc = splitStringWithDelim(','), dFunc = formatList },
{ name = 'event', dFunc = formatToLink },
{ name = 'event id', dFunc = formatEventId },
{ name = 'event id', dFunc = formatEventId },
{ name = 'banner', dFunc = formatToLink },
{ name = 'gacha id', dFunc = formatGachaId },
-- Compatability args
{ name = 'gacha', dFunc = formatToLink },
{ name = 'gacha id', dFunc = formatGachaId }
{ name = 'obtain', fn = ProcessingFns.stringToArray(',') },
{ name = 'event' },
{ name = 'banner' },
{ name = 'gacha' },
}
}
:setArgs(args)
:setArgs(args)
Line 260: Line 196:
infobox
infobox
:addHeader({ tag = 'argth', content = 'card name' })
:addHeader({ tag = 'argth', content = 'card name' })
:addImage(
:addImage({
{
{
{ tag = 'argtd', content = 'thumbnail', tabName = 'Untrained' },
tag = 'argtd',
{ tag = 'argtd', content = 'thumbnail trained', tabName = 'Trained' }
content = 'thumbnail',
tabName = 'Untrained',
fn = DisplayFns.image('156px')
},
{
tag = 'argtd',
content = 'thumbnail trained',
tabName = 'Trained',
fn = DisplayFns.image('156px')
}
}
)
})
:addRow(
:addRow(
{
{
Line 287: Line 231:
:addRow({
:addRow({
{ tag = 'th', content = 'Character' },
{ tag = 'th', content = 'Character' },
{ tag = 'argtd', content = 'character' }
{ tag = 'argtd', content = 'character', fn = formatCharacter }
})
})
:addRow({
:addRow({
{ tag = 'th', content = 'Attribute' },
{ tag = 'th', content = 'Attribute' },
{ tag = 'argtd', content = 'attribute' }
{ tag = 'argtd', content = 'attribute', fn = formatAttribute }
})
})
:addRow({
:addRow({
{ tag = 'th', content = 'Rarity' },
{ tag = 'th', content = 'Rarity' },
{ tag = 'argtd', content = 'rarity' }
{ tag = 'argtd', content = 'rarity', fn = formatRarity }
})
})
:addRow({
:addRow({
{ tag = 'th', content = 'Unit' },
{ tag = 'th', content = 'Unit' },
{ tag = 'argtd', content = 'unit' }
{ tag = 'argtd', content = 'unit', fn = formatUnit }
})
})
:addRow(
:addRow(
{
{
{ tag = 'th', content = 'Support unit' },
{ tag = 'th', content = 'Support unit' },
{ tag = 'argtd', content = 'support unit' }
{ tag = 'argtd', content = 'support unit', fn = formatUnit }
},
},
{ hideIfEmpty = { 'support unit' } }
{ hideIfEmpty = { 'support unit' } }
Line 320: Line 264:
{
{
{ tag = 'th', content = 'Acquisition method(s)' },
{ tag = 'th', content = 'Acquisition method(s)' },
{ tag = 'argtd', content = 'obtain' }
{ tag = 'argtd', content = 'obtain', fn = DisplayFns.list('unbulleted') }
},
},
{ hideIfEmpty = { 'obtain' } }
{ hideIfEmpty = { 'obtain' } }
Line 326: Line 270:
:addRow(
:addRow(
{
{
{
{ tag = 'th', content = 'Acquisition method(s)' },
{ tag = 'argtd', content = 'acquire' }
tag = 'argth',
content = 'acquire',
fn = DisplayFns.pluralHeader({ 'Acquisition method', 'Acquisition methods' })
},
{
tag = 'argtd',
content = 'acquire',
fn = DisplayFns.list('unbulleted')
}
},
},
{ hideIfEmpty = { 'acquire' } }
{ hideIfEmpty = { 'acquire' } }
Line 334: Line 286:
{
{
{ tag = 'th', content = 'Associated event' },
{ tag = 'th', content = 'Associated event' },
{ tag = 'argtd', content = 'event' }
{ tag = 'argtd', content = 'event', fn = DisplayFns.link }
},
},
{ hideIfEmpty = { 'event' } }
{ hideIfEmpty = { 'event' } }
Line 341: Line 293:
{
{
{ tag = 'th', content = 'Debut gacha' },
{ tag = 'th', content = 'Debut gacha' },
{ tag = 'argtd', content = 'banner' }
{ tag = 'argtd', content = 'banner', fn = DisplayFns.link }
},
},
{ hideIfEmpty = { 'banner' } }
{ hideIfEmpty = { 'banner' } }
Line 348: Line 300:
{
{
{ tag = 'th', content = 'Debut gacha' },
{ tag = 'th', content = 'Debut gacha' },
{ tag = 'argtd', content = 'gacha' }
{ tag = 'argtd', content = 'gacha', fn = DisplayFns.link }
},
},
{ hideIfEmpty = { 'gacha' } }
{ hideIfEmpty = { 'gacha' } }
)
)
local categories = ''
if mw.title.getCurrentTitle().namespace == 0 then
if mw.title.getCurrentTitle().namespace == 0 then
categories = "[[Category:Cards]]" .. infobox:getCategories()
categories = '[[Category:Cards]]' .. infobox:getCategories()
local rawArgs = infobox:getRawArgs()
local rawArgs = infobox:getRawArgs()
VariablesLua.vardefine( 'card id', rawArgs['card id'] )
VariablesLua.vardefine( 'rarity', rawArgs['rarity'] )
VariablesLua.vardefine( 'rarity', rawArgs['rarity'] )
VariablesLua.vardefine( 'character', rawArgs['character'] )
VariablesLua.vardefine( 'character', rawArgs['character'] )
VariablesLua.vardefine( 'support unit', rawArgs['support unit'] )
VariablesLua.vardefine( 'support unit', rawArgs['support unit'] )
VariablesLua.vardefine( 'attribute', rawArgs['attribute'] )
VariablesLua.vardefine( 'attribute', rawArgs['attribute'] )
VariablesLua.vardefine( 'date', rawArgs['date'] )
VariablesLua.vardefine( 'event id', rawArgs['event id'] )
end
end



Latest revision as of 02:40, 29 April 2023

--------------------------
-- 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',
				['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.