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
m (temporarily removing cargo calls)
mNo edit summary
Line 68: Line 68:
:addWhere('stamp_id', '=', id)
:addWhere('stamp_id', '=', id)
local result = {}
local result = nil
if result then
if result then

Revision as of 03:15, 13 April 2023

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 = {}
	
	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 result = nil
	
	if result then
		return string.format('[[File:%s|150px|center]]<br>%s<br>(%s)', 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' },
		}
		: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 },
			},
			{ hideIfEmpty = { 'stamp id' } }
		)
		:addHeader(
			{ tag = 'th', content = 'Reward Title' },
			{ hideIfEmpty = { 'title' }, subheader = true }
		)
		:addImage(
			{
				{ tag = 'argtd', content = 'title', fn = DisplayFns.image('150px') },
			},
			{ hideIfEmpty = { 'title' } }
		)

	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.