Module:Infobox company: Difference between revisions

From TwogPedia
(Created page with "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 Flags = require('Module:Flags') local Infobox = {} function Infobox.main(frame) local args = getArgs(frame) local currentTitleSplit = mw.text.split(mw.title.getCurrentTitle().text, '/') local head...")
 
No edit summary
 
(24 intermediate revisions by one other user not shown)
Line 4: Line 4:
local Subheader = require('Module:Infobox/Widget/Subheader')
local Subheader = require('Module:Infobox/Widget/Subheader')
local LinksWidget = require('Module:Infobox/Widget/Links')
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 Flags = require('Module:Flags')
Line 10: Line 16:
function Infobox.main(frame)
function Infobox.main(frame)
local args = getArgs(frame)
local args = getArgs(frame)
 
local headerNode
local currentTitleSplit = mw.text.split(mw.title.getCurrentTitle().text, '/')
local headerNode = Header.make(args.title or currentTitleSplit[2], args.image or '')
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')
local container = mw.html.create('div')
:addClass('ib')
:addClass('ib')
container:node(headerNode):node(Subheader.make(args.variant .. ' Information'))
container:node(headerNode):node(Subheader.make('Company Information'))
if args.country then
container:node(RowWidget.make('Headquarters', LocationWidget.make(args.country, args.city, 'Companies')))
end
if args.location then
if args.founded then
local countryName = Flags.CountryName(args.location)
container:node(RowWidget.make('Founded', args.founded))
local flag = Flags.icon(args.location, currentTitleSplit[1])
local location = mw.html.create('div')
:addClass('ib-row')
local link = ':Category:' .. currentTitleSplit[1]  .. '/' .. countryName
local locationName = mw.html.create('span')
:wikitext('[[' .. link .. '|' .. countryName .. ']]')
local name = mw.html.create('div')
:addClass('ib-rowName')
:wikitext('Location: ')
local value = mw.html.create('div')
:wikitext(flag)
:node(locationName)
if args.location2 then
countryName = Flags.CountryName(args.location2)
flag = Flags.icon(args.location2, currentTitleSplit[1])
link = ':Category:' .. currentTitleSplit[1]  .. '/' .. countryName
local location2Name = mw.html.create('span')
:wikitext('[[' .. link .. '|' .. countryName .. ']]')
local location2 = mw.html.create('div')
:wikitext(flag)
:node(location2Name)
value:wikitext('<br>'):node(location2)
end
container:node(location:node(name):node(value))
end
end
if args.region then
if args.employees then  
local countryName = Flags.CountryName(args.region)
container:node(RowWidget.make('Employees', args.employees))
local flag = Flags.icon(args.region, currentTitleSplit[1])
local region = mw.html.create('div')
:addClass('ib-row')
local link = ':Category:' .. currentTitleSplit[1]  .. '/' .. countryName
local regionName = mw.html.create('span')
:wikitext('[[' .. link .. '|' .. countryName .. ']]')
local name = mw.html.create('div')
:addClass('ib-rowName')
:wikitext('Region: ')
local value = mw.html.create('div')
:wikitext(flag)
:node(regionName)
container:node(region:node(name):node(value))
end
end
if args.founded then
if args.sponsors then
local founded = mw.html.create('div')
container:node(RowWidget.make('Sponsors', SponsorsWidget.make(args.sponsors, frame) ))
:addClass('ib-row')
local name = mw.html.create('div')
:addClass('ib-rowName')
:wikitext('Founded: ')
local value = mw.html.create('div')
:wikitext(args.founded)
container:node(founded:node(name):node(value))
end
end
if args.coach then
if args.type then
local coach = mw.html.create('div')
container:node(RowWidget.make('Type', args.type))
:addClass('ib-row')
local name = mw.html.create('div')
:addClass('ib-rowName')
:wikitext('Coach: ')
local value = mw.html.create('div')
local pageExists = frame:callParserFunction('#ifexist', args.coach, 'yes', 'no' )
if ( pageExists == 'yes' ) then
value:wikitext('<span>[[' .. args.coach .. '|' .. args.coach .. ']]</span>')
else
value:wikitext(args.coach)
end
container:node(coach:node(name):node(value))
end
end
if args.manager then
if args.parentcompany then
local manager = mw.html.create('div')
container:node(RowWidget.make('Parent company', args.parentcompany, frame, 'Companies/'))
:addClass('ib-row')
local name = mw.html.create('div')
:addClass('ib-rowName')
:wikitext('Manager: ')
local value = mw.html.create('div')
local pageExists = frame:callParserFunction('#ifexist', args.manager, 'yes', 'no' )
if ( pageExists == 'yes' ) then
value:wikitext('<span>[[' .. args.manager .. '|' .. args.manager .. ']]</span>')
else
value:wikitext(args.manager)
end
container:node(manager:node(name):node(value))
end
end
if args.captain then
if args.subsidiaries then
local captain = mw.html.create('div')
container:node(RowWidget.make('Subsidiaries', ListWidget.make(args.subsidiaries, 'Companies/')))
:addClass('ib-row')
end
local name = mw.html.create('div')
 
:addClass('ib-rowName')
    -- Check if there is a "links" argument and then do magic to add them all to arguments
:wikitext('Manager: ')
if args.links then
local splitLinks = mw.text.split(args.links, ',')
local value = mw.html.create('div')
for i = 1, #splitLinks do
local pageExists = frame:callParserFunction('#ifexist', args.captain, 'yes', 'no' )
local split = mw.text.split(splitLinks[i], '=')
if ( pageExists == 'yes' ) then
args[split[1]] = split[2]
value:wikitext('<span>[[' .. args.captain .. '|' .. args.captain .. ']]</span>')
else
value:wikitext(args.captain)
end
end
container:node(captain:node(name):node(value))
end
end
container:node(Subheader.make('Links'))
local transformedLinks = Links.transform(args)
local transformedLinks = Links.transform(args)
local fullLinks = LinksWidget.make(transformedLinks, 'team')
local fullLinks = LinksWidget.make(transformedLinks, 'team')
container:node(fullLinks)
if fullLinks then
container:node(Subheader.make('Links'))
container:node(fullLinks)
end
return container
return container
end
end


return Infobox
return Infobox

Latest revision as of 19:04, 28 May 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('Headquarters', 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