Module:Infobox company: Difference between revisions

From TwogPedia
mNo edit summary
mNo edit summary
 
Line 58: Line 58:
if args.subsidiaries then
if args.subsidiaries then
container:node(RowWidget.make('Subsidiaries', ListWidget.make(args.subsidiaries, 'Companies/')))
container:node(RowWidget.make('Subsidiaries', ListWidget.make(args.subsidiaries, 'Companies/')))
end
    -- Check if there is a "links" argument and then do magic to add them all to arguments
if args.links then
local splitLinks = mw.text.split(args.links, ',')
for i = 1, #splitLinks do
local split = mw.text.split(splitLinks[i], '=')
args[split[1]] = split[2]
end
end
end

Latest revision as of 15:15, 18 April 2024

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

local getArgs = require('Module:Arguments').getArgs
local Links = require('Module:Links')
local Header = require('Module:Infobox/Widget/Header')
local Subheader = require('Module:Infobox/Widget/Subheader')
local LinksWidget = require('Module:Infobox/Widget/Links')
local ListWidget = require('Module:Infobox/Widget/List')
local SponsorsWidget = require('Module:Infobox/Widget/Sponsors')
local LocationWidget = require('Module:Infobox/Widget/Location')
local RowWidget = require('Module:Infobox/Widget/Row')

VariablesLua = mw.ext.VariablesLua

local Flags = require('Module:Flags')
local Infobox = {}

function Infobox.main(frame)
	local args = getArgs(frame)
	local headerNode
	
	if args.logos then
		local logoAll = VariablesLua.varexists( 'logoAll' ) and VariablesLua.var('logoAll') or nil
		local logoLight = VariablesLua.varexists( 'logoLight' ) and VariablesLua.var('logoLight') or nil
		local logoDark = VariablesLua.varexists( 'logoDark' ) and VariablesLua.var('logoDark') or nil
		headerNode = Header.make(args.title or mw.title.getCurrentTitle().text, logoLight, logoDark, logoAll)
	elseif args.logoAll or args.logoLight or args.logoDark then
		 headerNode = Header.make(args.title or mw.title.getCurrentTitle().text, args.logoLight, args.logoDark, args.logoAll)
	end
	
	local container = mw.html.create('div')
		:addClass('ib')
		
	container:node(headerNode):node(Subheader.make('Company Information'))
	
	if args.country then
		container:node(RowWidget.make('Headquarter', LocationWidget.make(args.country, args.city, 'Companies')))
	end
	
	if args.founded then
		container:node(RowWidget.make('Founded', args.founded))
	end
	
	if args.employees then 
		container:node(RowWidget.make('Employees', args.employees))
	end
	
	if args.sponsors then
		container:node(RowWidget.make('Sponsors', SponsorsWidget.make(args.sponsors, frame) ))
	end
	
	if args.type then
		container:node(RowWidget.make('Type', args.type))
	end
	
	if args.parentcompany then
		container:node(RowWidget.make('Parent company', args.parentcompany, frame, 'Companies/'))
	end
	
	if args.subsidiaries then
		container:node(RowWidget.make('Subsidiaries', ListWidget.make(args.subsidiaries, 'Companies/')))
	end

    -- Check if there is a "links" argument and then do magic to add them all to arguments
	if args.links then
		local splitLinks = mw.text.split(args.links, ',')
		for i = 1, #splitLinks do
			local split = mw.text.split(splitLinks[i], '=')
			args[split[1]] = split[2]
		end
	end
	
	local transformedLinks = Links.transform(args)
	local fullLinks = LinksWidget.make(transformedLinks, 'team')
	
	if fullLinks then
		container:node(Subheader.make('Links'))
		container:node(fullLinks)
	end
	return container
end

return Infobox