Module:NewsItem: Difference between revisions

From TwogPedia
No edit summary
mNo edit summary
 
(5 intermediate revisions by the same user not shown)
Line 11: Line 11:
container:node(date)
container:node(date)
end
end
 
if args.lang then
if args._pageName then
container:node(Flags.icon(args.lang))
container:wikitext(' [[' .. args._pageName .. ']]')
else
container:node(Flags.icon('usuk'))
end
if args.url then
if args.title and args.trans_title then
container:wikitext('[' .. args.url .. ' ' .. args.title .. '] (' .. args.trans_title .. ')')
elseif args.title then
container:wikitext('[' .. args.url .. ' ' .. args.title .. ']')
else
container:wikitext('[' .. args.url .. ']')
end
end
if args.author then
local link = args.authorlink == nil and args.author or args.author .. '|' .. args.authorlink
container:wikitext(' by [[' ..link .. ']]')
end
if args.source then
container:wikitext(' on [[' .. args.source .. ']]')
end
if args.event then
container:wikitext(' at [[' .. args.event .. ']]')
end
if args.trans_lang then
if args.translator then
container:wikitext(' (translated into ' .. Flags.icon(args.trans_lang) .. 'by [[' .. args.translator .. ']])')
else
container:wikitext(' (translated into ' .. Flags.icon(args.trans_lang) .. ')')
end
end
end
if args.note then
--if args.author then
container:node(mw.html.create('small'):wikitext(' (Note: ' .. args.note .. ')'))
-- local link = args.authorlink == nil and args.author or args.author .. '|' .. args.authorlink
end
-- container:wikitext(' by [[' ..link .. ']]')
--end
return container
return container

Latest revision as of 21:42, 23 February 2024

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

local getArgs = require('Module:Arguments').getArgs
local Flags = require('Module:Flags')
local NewsItem = {}

function NewsItem.main(frame)
	local args = getArgs(frame)
	local container = mw.html.create('span'):addClass('newsItem')
	
	if args.date then
		local date = mw.html.create('span'):addClass('news-date'):wikitext(mw.text.split(args.date, ' ')[1])
		container:node(date)
	end

	if args._pageName then
		container:wikitext(' [[' .. args._pageName .. ']]')
	end
	
	--if args.author then
	--	local link = args.authorlink == nil and args.author or args.author .. '|' .. args.authorlink
	--	container:wikitext(' by [[' ..link .. ']]')
	--end
	
	return container
end

return NewsItem