Module:Story info: Difference between revisions

From Sekaipedia
Content added Content deleted
(Created page with "local getArgs = require('Module:Arguments').getArgs local icons = require('Module:Icons')._main local p = {} function p.main(frame) local root = mw.html.create() l...")
 
m (Undo revision 36344 by ChaoticShadow (talk))
Tag: Undo
 
(46 intermediate revisions by 2 users not shown)
Line 1: Line 1:
local getArgs = require('Module:Arguments').getArgs
local getArgs = require('Module:Arguments').getArgs
local icons = require('Module:Icons')._main
local cicon = require('Module:Character icon')._main
local utils = require('Module:Utilities')


local p = {}
local p = {}


function p.main(frame)
local function formatCharacters(characters)
local characterArr = utils.splitWithDelim(',')(characters)
local charArr = utils.splitWithDelim(';')(characters)
local root = mw.html.create()
local resArr = {}
for _,v in ipairs(characterArr) do
local box_css = {
table.insert(resArr, cicon({ v, size = '40px' }))
['color'] = '#424362',
end
['margin'] = '3px',
for _,v in ipairs(charArr) do
['margin-left'] = '0px',
table.insert(resArr, cicon({ v, size = '40px' }))
['border'] = '2px solid #00cdba',
end
['border-radius'] = '10px',
['box-shadow'] = '2px 3px #00cdba',
['padding'] = '10px'
}
return table.concat(resArr, " ")
local top = root:tag('div')
end
:css(box_css)

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')
:tag('div')
:addClass('title')
:wikitext('[[File:Stella2020 logo.png|280px]]')
:wikitext(title)
:done()
:done()
:tag('div')
:tag('div')
:tag('div')
:addClass('characters')
:wikitext(string.format(
:css({
"'''Character appearances:'''<br/> %s",
['border-bottom'] = '1px solid #00cdba',
utils.editIfNil(characters, formatCharacters)
['padding'] = '15px',
))
['border-top-right-radius'] = '6px',
['text-align'] = 'center',
['color'] = '#424362'
})
:wikitext("'''{{{Chapter}}}: <br />{{{English Title}}}<br />{{{Japanese Title}}}'''")
:done()
:tag('div')
:css({
['color'] = '#424362',
['padding'] = '10px',
['line-height'] = '2'
})
:wikitext("'''Characters that appear:'''<br/> {{{Charas}}}")
:done()
:done()
:done()
:done()
local bottom = root:tag('div')
root
:css(box_css)
:node(image)
:node(info)
return root
end

local function makeTranslationInfo(translators, sources)
local root = mw.html.create('div')
:addClass('translation-info')
:tag('div')
:tag('div')
:wikitext("'''Translator:'''")
:css('text-align', 'right')
:wikitext("'''{{{Translator}}}'''")
:wikitext("'''Translator(s):'''")
:done()
:done()
:tag('div')
:tag('div')
:wikitext("'''Source:'''")
:wikitext(utils.editIfNil(translators, formatList))
:wikitext("'''{{{Source}}}'''")
:done()
: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 tostring(root)
return
mw.getCurrentFrame():extensionTag{
name = 'templatestyles',
args = { src = 'Template:Story info/styles.css' }
} .. tostring(root)
end
end



Latest revision as of 08:17, 16 April 2022

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.