Module:Story info: Difference between revisions

From Sekaipedia
Content added Content deleted
(test using functions)
m (Undo revision 36344 by ChaoticShadow (talk))
Tag: Undo
 
(7 intermediate revisions by the same user not shown)
Line 18: Line 18:
return table.concat(resArr, " ")
return table.concat(resArr, " ")
end

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


Line 67: Line 73:
:done()
:done()
:tag('div')
:tag('div')
:wikitext(utils.editIfNil(translators))
:wikitext(utils.editIfNil(translators, formatList))
:done()
:done()
:tag('div')
:tag('div')
Line 74: Line 80:
:done()
:done()
:tag('div')
:tag('div')
:wikitext(utils.editIfNil(sources))
:wikitext(utils.editIfNil(sources, formatList))
:done()
:done()
:done()
:done()
Line 80: Line 86:
return root
return root
end
end



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

function p._main(args)
local image = args['image']
local image = args['image']
local characters = args['character'] or args['characters']
local characters = args['character'] or args['characters']
local title = string.format(
local title = args['title']
"'''%s: %s'''",
utils.editIfNil(args['chapter']),
utils.editIfNil(args['english'])
)
if args['japanese'] or args['romaji'] then
if args['title'] == nil then
title = title .. string.format(
title = string.format(
"<br>'''%s (%s)'''",
"%s: %s",
utils.editIfNil(args['japanese']),
utils.editIfNil(args['chapter']),
utils.editIfNil(args['romaji'])
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
end
Line 106: Line 118:


local root = mw.html.create('div')
local root = mw.html.create('div')
:addClass('story-chapter')
:addClass('story-info-wrapper')
root
root
:node(makeStoryInfo(image, title, characters))
:node(makeStoryInfo(image, title, characters))
:node(makeTranslationInfo(translators, sources))
:node(makeTranslationInfo(translators, sources))
-- local top = root:tag('div')
-- :addClass('chapter-info')
-- :tag('div')
-- :css({
-- ['align-self'] = 'center',
-- ['width'] = '280px',
-- ['text-align'] = 'center'
-- })
-- :wikitext(utils.editIfNil(
-- args['image'],
-- function (img)
-- return string.format(
-- '[[File:%s|280px|center]]',
-- img
-- )
-- end
-- ))
-- :done()
-- :tag('div')
-- :css({
-- ['flex-grow'] = 1,
-- ['text-align'] = 'center',
-- })
-- :tag('div')
-- :css({
-- ['border-bottom'] = '1px solid #00cdba',
-- ['border-top-right-radius'] = '6px',
-- ['padding-bottom'] = '10px'
-- })
-- :wikitext(title)
-- :done()
-- :tag('div')
-- :css({
-- ['line-height'] = '2',
-- ['padding-top'] = '10px'
-- })
-- :wikitext(
-- string.format(
-- "'''Character appearances:'''<br/> %s",
-- utils.editIfNil(
-- args['characters'],
-- formatCharacters
-- )
-- )
-- )
-- :done()
-- :done()
-- :done()
-- local bottom = root:tag('div')
-- :addClass('translation-info')
-- :tag('div')
-- :css('text-align', 'right')
-- :wikitext("'''Translator(s):'''")
-- :done()
-- :tag('div')
-- :wikitext(utils.editIfNil(args['translator']))
-- :done()
-- :tag('div')
-- :css('text-align', 'right')
-- :wikitext("'''Source(s):'''")
-- :done()
-- :tag('div')
-- :wikitext(utils.editIfNil(args['source']))
-- :done()
-- :done()


return
return

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.