Module:Story info

From Sekaipedia

Documentation for this module may be created at Module:Story info/doc

local getArgs   = require('Module:Arguments').getArgs
local cicon     = require('Module:Character icon')._main
local utils     = require('Module:Utilities')

local p = {}

local function formatCharacters(characters)
	local characterArr = utils.splitWithDelim(',')(characters)
	local charArr = utils.splitWithDelim(';')(characters)
	
	local resArr = {}
	for _,v in ipairs(characterArr) do
		table.insert(resArr, cicon({ v, size = '40px' }))
	end
	for _,v in ipairs(charArr) do
		table.insert(resArr, cicon({ v, size = '40px' }))
	end
	
	return table.concat(resArr, " ")
end

local function formatList(str)
	local list = utils.splitWithDelim(',')(str)
	
	return table.concat(list, '<br>')
end

local function makeStoryInfo(image, title, characters)
	local root = mw.html.create('div')
		:addClass('story-info')
		
	local image = mw.html.create('div')
		:addClass('image')
		:wikitext(utils.editIfNil(
			image,
			function (image)
				return string.format(
					'[[File:%s|280px|center]]',
					image
				)
			end
		))
		:done()
			
	local info = mw.html.create('div')
		:addClass('info')
		:tag('div')
			:addClass('title')
			:wikitext(title)
			:done()
		:tag('div')
			:addClass('characters')
			:wikitext(string.format(
				"'''Character appearances:'''<br/> %s",
				utils.editIfNil(characters, formatCharacters)
			))
			:done()
		:done()
		
	root
		:node(image)
		:node(info)
		
	return root
end

local function makeTranslationInfo(translators, sources)
	local root = mw.html.create('div')
		:addClass('translation-info')
		:tag('div')
			:css('text-align', 'right')
			:wikitext("'''Translator(s):'''")
			:done()
		:tag('div')
			:wikitext(utils.editIfNil(translators, formatList))
			:done()
		:tag('div')
			:css('text-align', 'right')
			:wikitext("'''Source(s):'''")
			:done()
		:tag('div')
			:wikitext(utils.editIfNil(sources, formatList))
			:done()
		:done()
		
	return root
end

function p.main(frame)
	local args = getArgs(frame)
	return p._main(args)
end

function p._main(args)
	local image = args['image']
	local characters = args['character'] or args['characters']
	
	local title = args['title']
	
	if args['title'] == nil then
		title = string.format(
			"%s: %s",
			utils.editIfNil(args['chapter']),
			utils.editIfNil(args['english'])
		)
		
		if args['japanese'] or args['romaji'] then
			title = title .. string.format(
				"<br>%s (%s)",
				utils.editIfNil(args['japanese']),
				utils.editIfNil(args['romaji'])
			)
		end
	end
	
	local translators = args['translator'] or args['translators']
	local sources = args['source'] or args['sources']

	local root = mw.html.create('div')
		:addClass('story-info-wrapper')
	
	root
		:node(makeStoryInfo(image, title, characters))
		:node(makeTranslationInfo(translators, sources))

	return 
		mw.getCurrentFrame():extensionTag{
			name = 'templatestyles',
			args = { src = 'Template:Story info/styles.css' }
		} .. tostring(root)
end

return p
Cookies help us deliver our services. By using our services, you agree to our use of cookies.