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

Module:Infobox album: Difference between revisions

From Sekaipedia
Content added Content deleted
mNo edit summary
Tag: Reverted
m (Undo revision 99319 by Rixxy (talk))
Tag: Undo
 
(16 intermediate revisions by 3 users not shown)
Line 3: Line 3:
------------------------
------------------------
local getArgs = require('Module:Arguments').getArgs
local getArgs = require('Module:Arguments').getArgs
local builder = require('Module:InfoboxBuilder new')
local InfoboxBuilder = require('Module:InfoboxBuilder')
local DisplayFns = require('Module:DisplayFunctions')
local constants = require('Module:Constants')
local constants = require('Module:Constants')
local utils = require('Module:Utilities')


local p = {}
local p = {}

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

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


local function formatUnit(unit_name)
local function formatUnit(unit_name)
Line 51: Line 32:
return '? Information'
return '? Information'
end

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


Line 76: Line 44:
function p.main(frame)
function p.main(frame)
local args = getArgs(frame, { wrappers = 'Template:Infobox album' })
local args = getArgs(frame, { wrappers = 'Template:Infobox album' })
local infobox = builder.new()
local infobox = InfoboxBuilder.new()
infobox:setName('Infobox album')
infobox:setName('Infobox album')
:setParams{
:setParams{
{ name = 'type', dFunc = formatType, default = '' },
{ name = 'type', default = '' },
{ name = 'album name', default = mw.title.getCurrentTitle().text },
{ name = 'album name', default = mw.title.getCurrentTitle().text },
{ name = 'image', dFunc = formatImage, default = 'Dummyalbumart.png' },
{ name = 'image', default = 'Dummyalbumart.png' },
{ name = 'japanese' },
{ name = 'japanese' },
{ name = 'romaji' },
{ name = 'romaji' },
{ name = 'english' },
{ name = 'english' },
{ name = 'unit', dFunc = formatUnit },
{ name = 'unit' },
{ name = 'price', dFunc = formatPrice },
{ name = 'price' },
{ name = 'label' },
{ name = 'label' },
{ name = 'product number', pFunc = utils.splitWithDelim(';') },
{ name = 'product number' },
{ name = 'date' },
{ name = 'date' },
}
}
Line 103: Line 71:
infobox
infobox
:addHeader({ tag = 'argth', content = 'album name' })
:addHeader({ tag = 'argth', content = 'album name' })
:addImage(
:addImage({
{ tag = 'argtd', content = 'image', fn = DisplayFns.image('220px') }
{
})
{ tag = 'argtd', content = 'image', title = 'Original' }
}
)
:addRow(
:addRow(
{
{
Line 135: Line 101:
:addImage(
:addImage(
{
{
{ tag = 'argtd', content = 'unit' }
{ tag = 'argtd', content = 'unit', fn = formatUnit }
},
},
{ hideIfEmpty = { 'unit' } }
{ hideIfEmpty = { 'unit' } }
)
)
:addHeader({ tag = 'argth', content = 'type' }, { subheader = true })
:addHeader({ tag = 'argth', content = 'type', fn = formatType }, { subheader = true })
:addRow(
:addRow(
{
{
{ tag = 'th', content = 'Price' },
{ tag = 'th', content = 'Price' },
{ tag = 'argtd', content = 'price' }
{ tag = 'argtd', content = 'price', fn = formatPrice }
}
}
)
)

Latest revision as of 22:14, 29 January 2024

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


--------------------------
-- Module for [[Template:Infobox Album]]
------------------------
local getArgs   = require('Module:Arguments').getArgs
local InfoboxBuilder = require('Module:InfoboxBuilder')
local DisplayFns     = require('Module:DisplayFunctions')
local constants = require('Module:Constants')

local p = {}

local function formatUnit(unit_name)
	local unit = constants.get_unit(unit_name)
	local unit_image = constants.get_unit_image(unit)
	
	if unit and unit_image then
		return string.format(
			"[[File:%s|150px|link=%s]]",
			unit_image,
			unit
		)
	end
	
	return nil
end

local function formatType(val)
	if val == 'Album' then
		return 'Album Information'
	elseif val == 'Single' then
		return 'Single Information'
	end
	
	return '? Information'
end

local function formatPrice(price)
	if price then
		return string.format('¥%s (before tax)', price)
	end
	return price
end


function p.main(frame)
	local args = getArgs(frame, { wrappers = 'Template:Infobox album' })
	local infobox = InfoboxBuilder.new()
	
	infobox:setName('Infobox album')
		:setParams{
			{ name = 'type', default = '' },
			{ name = 'album name', default = mw.title.getCurrentTitle().text },
			{ name = 'image', default = 'Dummyalbumart.png' },
			{ name = 'japanese' },
			{ name = 'romaji' },
			{ name = 'english' },
			{ name = 'unit' },
			{ name = 'price' },
			{ name = 'label' },
			{ name = 'product number' },
			{ name = 'date' },
		}
		:setArgs(args)
		:processArgs()
		:setCategoryMap({
			['type'] = {
				['Album']  = 'Albums',
				['Single'] = 'Singles'
			}
		})

	infobox
		:addHeader({ tag = 'argth', content = 'album name' })
		:addImage({
			{ tag = 'argtd', content = 'image', fn = DisplayFns.image('220px') }
		})
		:addRow(
			{
				{ tag = 'th', content = 'Japanese' },
				{ tag = 'argtd', content = 'japanese' }
			},
			{ hideIfEmpty = { 'japanese' } }
		)
		:addRow(
			{
				{ tag = 'th', content = 'Romaji' },
				{ tag = 'argtd', content = 'romaji' }
			},
			{ hideIfEmpty = { 'romaji' } }
		)
		:addRow(
			{
				{ tag = 'th', content = 'English' },
				{ tag = 'argtd', content = 'english' }
			},
			{ hideIfEmpty = { 'english' } }
		)
		:addHeader(
			{ tag = 'th', content = 'Unit' }, 
			{ hideIfEmpty = { 'unit' }, subheader = true }
		)
		:addImage(
			{
				{ tag = 'argtd', content = 'unit', fn = formatUnit }
			},
			{ hideIfEmpty = { 'unit' } }
		)
		:addHeader({ tag = 'argth', content = 'type', fn = formatType }, { subheader = true })
		:addRow(
			{
				{ tag = 'th', content = 'Price' },
				{ tag = 'argtd', content = 'price', fn = formatPrice }
			}
		)
		:addRow(
			{
				{ tag = 'th', content = 'Label' },
				{ tag = 'argtd', content = 'label' }
			}
		)
		:addRow(
			{
				{ tag = 'th', content = 'Product number' },
				{ tag = 'argtd', content = 'product number' }
			}
		)
		:addRow(
			{
				{ tag = 'th', content = 'Release date' },
				{ tag = 'argtd', content = 'date' }
			}
		)
	
	local categories = ""
	if mw.title.getCurrentTitle().namespace == 0 then
		categories = "[[Category:Albums and singles]]" .. 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.