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

Module:Infobox virtual live: Difference between revisions

From Sekaipedia
Content added Content deleted
mNo edit summary
mNo edit summary
 
(27 intermediate revisions by 2 users not shown)
Line 3: Line 3:
------------------------
------------------------
local getArgs = require('Module:Arguments').getArgs
local getArgs = require('Module:Arguments').getArgs
local InfoboxBuilder = require('Module:InfoboxBuilder new')
local InfoboxBuilder = require('Module:InfoboxBuilder')
local DisplayFns = require('Module:DisplayFunctions')
local ProcessingFns = require('Module:ProcessingFunctions')
local QueryBuilder = require('Module:QueryBuilder')
local QueryBuilder = require('Module:QueryBuilder')
local utils = require('Module:Utilities')
local cicon = require('Module:Character icon')._main
local icons = require('Module:Icons')._main


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


local function splitStringWithDelim(delim)
local function formatCharacters(characters)
if characters == nil then return nil end
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|250px]]", image_name)
end

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

local function formatCharacters(characters)
local characterArr = utils.split(characters, ',')
local resArr = {}
local resArr = {}
for i,v in ipairs(characterArr) do
for i,v in ipairs(characters) do
table.insert(resArr, icons({ v, size = '30px' }))
table.insert(resArr, cicon({ v, size = '30px' }))
end
end
return table.concat(resArr, " ")
return table.concat(resArr, ' ')
end
end


local function formatSongs(song_ids)
local function formatSongs(song_ids)
if song_ids == nil or song_ids == '' then return nil end
local qb = QueryBuilder.new()
local qb = QueryBuilder.new()
qb
qb
:setTables('Songs')
:setTables('songs')
:setFields([[
:setFields([[
_pageName,
_pageName,
Line 85: Line 50:
end
end
return formatList(resArr)
return DisplayFns.list('unbulleted')(resArr)
end
end
Line 94: Line 59:
local qb = QueryBuilder.new()
local qb = QueryBuilder.new()
qb
qb
:setTables('Stamps')
:setTables('stamps')
:setFields([[
:setFields([[
image,
image,
Line 101: Line 66:
]])
]])
:setLimit(1)
:setLimit(1)
:addWhere('id', '=', id)
:addWhere('stamp_id', '=', id)
local result = qb:query()[1]
local results = qb:query()
if result then
if #results > 0 then
local result = results[1]
return string.format('[[File:%s|250px]]<br>%s (%s)', result.image, result.english, result.japanese)
return string.format(
'[[File:%s|125px|center]]<div>%s</div><div>(%s)</div>',
result.image,
result.english,
result.japanese
)
end
end
Line 125: Line 96:
{ name = 'vlive id' },
{ name = 'vlive id' },
{ name = 'vlive name', default = mw.title.getCurrentTitle().text },
{ name = 'vlive name', default = mw.title.getCurrentTitle().text },
{ name = 'image', dFunc = formatImage },
{ name = 'image' },
{ name = 'japanese' },
{ name = 'japanese' },
{ name = 'romaji' },
{ name = 'romaji' },
{ name = 'from' },
{ name = 'from' },
{ name = 'until' },
{ name = 'until' },
{ name = 'characters', dFunc = formatCharacters },
{ name = 'characters', fn = ProcessingFns.stringToArray(';') },
{ name = 'song ids', dFunc = formatSongs },
{ name = 'song ids' },
{ name = 'stamp', dFunc = formatRewardImage },
{ name = 'stamp' },
{ name = 'stamp id', dFunc = formatStampId },
{ name = 'stamp id' },
{ name = 'title', dFunc = formatRewardImage },
{ name = 'title' },
{ name = 'rewards' }
}
}
:setArgs(args)
:setArgs(args)
Line 142: Line 114:
:addHeader({ tag = 'argth', content = 'vlive name' })
:addHeader({ tag = 'argth', content = 'vlive name' })
:addImage({
:addImage({
{ tag = 'argtd', content = 'image' },
{ tag = 'argtd', content = 'image', fn = DisplayFns.image('250px') },
})
})
:addRow(
:addRow(
Line 175: Line 147:
{
{
{ tag = 'th', content = 'Featured characters ' },
{ tag = 'th', content = 'Featured characters ' },
{ tag = 'argtd', content = 'characters' }
{ tag = 'argtd', content = 'characters', fn = formatCharacters }
}
}
)
)
Line 181: Line 153:
{
{
{ tag = 'th', content = 'Featured songs' },
{ tag = 'th', content = 'Featured songs' },
{ tag = 'argtd', content = 'song ids' }
{ tag = 'argtd', content = 'song ids', fn = formatSongs }
}
}
)
)
:addHeader(
:addHeader(
{ tag = 'th', content = 'Reward Stamp' },
{ tag = 'th', content = 'Reward Stamp' },
{ hideIfEmpty = { 'stamp' }, subheader = true }
{ hideIfEmpty = { 'stamp', 'stamp id' }, subheader = true }
)
)
:addImage(
:addImage(
{
{
{ tag = 'argtd', content = 'stamp' },
{ tag = 'argtd', content = 'stamp', fn = DisplayFns.image('150px') },
},
},
{ hideIfEmpty = { 'stamp' } }
{ hideIfEmpty = { 'stamp' } }
Line 196: Line 168:
:addRow(
:addRow(
{
{
{ tag = 'argtd', content = 'stamp id' },
{ tag = 'argtd', content = 'stamp id', fn = formatStampId },
},
},
{
{ hideIfEmpty = { 'stamp id' } }
defaultCss = { ['text-align'] = 'center' },
hideIfEmpty = { 'stamp id' }
}
)
)
:addHeader(
:addHeader(
Line 206: Line 181:
:addImage(
:addImage(
{
{
{ tag = 'argtd', content = 'title' },
{ tag = 'argtd', content = 'title', fn = DisplayFns.image('150px') },
},
},
{ hideIfEmpty = { 'title' } }
{ hideIfEmpty = { 'title' } }
)
:addHeader(
{ tag = 'th', content = 'Additional Rewards' },
{ hideIfEmpty = { 'rewards' }, subheader = true }
)
:addImage(
{
{ tag = 'argtd', content = 'rewards', fn = DisplayFns.image('65px') },
},
{ hideIfEmpty = { 'rewards' } }
)
)


local categories = ""
if mw.title.getCurrentTitle().namespace == 0 then
if mw.title.getCurrentTitle().namespace == 0 then
categories = "[[Category:Virtual lives]]" .. infobox:getCategories()
categories = "[[Category:Virtual lives]]" .. infobox:getCategories()

Latest revision as of 23:03, 7 May 2024

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


--------------------------
-- Module for [[Template:Infobox virtual live]]
------------------------
local getArgs   = require('Module:Arguments').getArgs
local InfoboxBuilder = require('Module:InfoboxBuilder')
local DisplayFns     = require('Module:DisplayFunctions')
local ProcessingFns  = require('Module:ProcessingFunctions')
local QueryBuilder   = require('Module:QueryBuilder')
local cicon  = require('Module:Character icon')._main

local p = {}

local function formatCharacters(characters)
	if characters == nil then return nil end
	
	local resArr = {}
	for i,v in ipairs(characters) do
		table.insert(resArr, cicon({ v, size = '30px' }))
	end
	
	return table.concat(resArr, ' ')
end

local function formatSongs(song_ids)
	if song_ids == nil or song_ids == '' then return nil end
	
	local qb = QueryBuilder.new()
	qb
		:setTables('songs')
		:setFields([[
			_pageName,
			song_name,
		]])
		:setGroupBy('_pageName')
		:addWhereList('song_id', '=', song_ids, ',', 'OR')
	
    local results = qb:query()
	
	if #results > 0 then
		local resArr = {}
		for i,v in ipairs(results) do
			table.insert(
				resArr,
				string.format(
					'[[%s|%s]]',
					v._pageName,
					v.song_name
				)
			)
		end
		
		return DisplayFns.list('unbulleted')(resArr)
	end
	
	return nil
end

local function formatStampId(id)
	local qb = QueryBuilder.new()
	qb
		:setTables('stamps')
		:setFields([[
			image,
			japanese,
			english
		]])
		:setLimit(1)
		:addWhere('stamp_id', '=', id)
	
	local results = qb:query()
	
	if #results > 0 then
		local result = results[1]
		return string.format(
			'[[File:%s|125px|center]]<div>%s</div><div>(%s)</div>',
			result.image,
			result.english,
			result.japanese
		)
	end
	
	return nil
end

local function formatTitleId(id)
	
end


function p.main(frame)
	local args = getArgs(frame)
	local infobox = InfoboxBuilder.new()
	
	infobox:setName('Infobox virtual live')
		:setParams{
			{ name = 'vlive id' },
			{ name = 'vlive name', default = mw.title.getCurrentTitle().text },
			{ name = 'image' },
			{ name = 'japanese' },
			{ name = 'romaji' },
			{ name = 'from' },
			{ name = 'until' },
			{ name = 'characters', fn = ProcessingFns.stringToArray(';') },
			{ name = 'song ids' },
			{ name = 'stamp' },
			{ name = 'stamp id' },
			{ name = 'title' },
            { name = 'rewards' }
		}
		:setArgs(args)
		:processArgs()

	infobox
		:addHeader({ tag = 'argth', content = 'vlive name' })
		:addImage({
			{ tag = 'argtd', content = 'image', fn = DisplayFns.image('250px') },
		})
		: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 = 'Availability Period' }, { subheader = true })
		:addRow(
			{
				{ tag = 'th', content = 'From' },
				{ tag = 'argtd', content = 'from' }
			}
		)
		:addRow(
			{
				{ tag = 'th', content = 'Until' },
				{ tag = 'argtd', content = 'until' }
			}
		)
		:addHeader({ tag = 'th', content = 'Virtual Live Information' }, { subheader = true })
		:addRow(
			{
				{ tag = 'th', content = 'Featured characters ' },
				{ tag = 'argtd', content = 'characters', fn = formatCharacters }
			}
		)
		:addRow(
			{
				{ tag = 'th', content = 'Featured songs' },
				{ tag = 'argtd', content = 'song ids', fn = formatSongs }
			}
		)
		:addHeader(
			{ tag = 'th', content = 'Reward Stamp' },
			{ hideIfEmpty = { 'stamp', 'stamp id' }, subheader = true }
		)
		:addImage(
			{
				{ tag = 'argtd', content = 'stamp', fn = DisplayFns.image('150px') },
			},
			{ hideIfEmpty = { 'stamp' } }
		)
		:addRow(
			{
				{ tag = 'argtd', content = 'stamp id', fn = formatStampId },
			},
			{ 
				defaultCss = { ['text-align'] = 'center' },
				hideIfEmpty = { 'stamp id' }
			}
		)
		:addHeader(
			{ tag = 'th', content = 'Reward Title' },
			{ hideIfEmpty = { 'title' }, subheader = true }
		)
		:addImage(
			{
				{ tag = 'argtd', content = 'title', fn = DisplayFns.image('150px') },
			},
			{ hideIfEmpty = { 'title' } }
		)
		:addHeader(
			{ tag = 'th', content = 'Additional Rewards' },
			{ hideIfEmpty = { 'rewards' }, subheader = true }
		)
		:addImage(
			{
				{ tag = 'argtd', content = 'rewards', fn = DisplayFns.image('65px') },
			},
			{ hideIfEmpty = { 'rewards' } }
		)

	local categories = ""
	if mw.title.getCurrentTitle().namespace == 0 then
		categories = "[[Category:Virtual lives]]" .. infobox:getCategories()
	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.