No edit summary |
No edit summary |
||
Line 9: | Line 9: | ||
local RowWidget = require('Module:Infobox/Widget/Row') | local RowWidget = require('Module:Infobox/Widget/Row') | ||
local cargo = mw.ext.cargo | local cargo = mw.ext.cargo | ||
VariablesLua = mw.ext.VariablesLua | |||
local Flags = require('Module:Flags') | local Flags = require('Module:Flags') | ||
Line 15: | Line 16: | ||
function Infobox.main(frame) | function Infobox.main(frame) | ||
local args = getArgs(frame) | local args = getArgs(frame) | ||
local currentTitle = mw.title.getCurrentTitle().text | |||
local currentTitleSplit = mw.text.split(currentTitle, '/') | |||
local headerNode | |||
if VariablesLua.varexists('logoAll') then | |||
headerNode = Header.make(args.title or currentTitle, nil, nil, VariablesLua.var( 'logoAll' )) | |||
elseif VariablesLua.varexists( 'logoLight' ) or VariablesLua.varexists( 'logoDark') then | |||
headerNode = Header.make(args.title or currentTitle, VariablesLua.var( 'logoLight'), VariablesLua.var( 'logoDark')) | |||
elseif args.org then | |||
local currentDate = os.date('%Y-%m-%d') | |||
local tables = 'TeamImages' | |||
local fields = '_pageName, logoLight, logoDark, logoAll, start, end' | |||
local cargoArgs = { | |||
where = '_pageName="' .. args.org .. '" AND (start is NULL OR start < "' .. currentDate .. '") AND (end is NULL OR end > "' .. currentDate .. '")' | |||
} | |||
local results = cargo.query(tables, fields, cargoArgs) | |||
if #results > 0 then | |||
if ( results[1].logoAll ) then | |||
headerNode = Header.make(args.title or currentTitle, nil, nil, results[1].logoAll) | |||
else | |||
headerNode = Header.make(args.title or currentTitle, results[1].logoLight, results[1].logoDark) | |||
end | |||
end | |||
end | |||
local container = mw.html.create('div') | local container = mw.html.create('div') |
Revision as of 19:52, 27 September 2022
Documentation for this module may be created at Module:Infobox team/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')
local cargo = mw.ext.cargo
VariablesLua = mw.ext.VariablesLua
local Flags = require('Module:Flags')
local Infobox = {}
function Infobox.main(frame)
local args = getArgs(frame)
local currentTitle = mw.title.getCurrentTitle().text
local currentTitleSplit = mw.text.split(currentTitle, '/')
local headerNode
if VariablesLua.varexists('logoAll') then
headerNode = Header.make(args.title or currentTitle, nil, nil, VariablesLua.var( 'logoAll' ))
elseif VariablesLua.varexists( 'logoLight' ) or VariablesLua.varexists( 'logoDark') then
headerNode = Header.make(args.title or currentTitle, VariablesLua.var( 'logoLight'), VariablesLua.var( 'logoDark'))
elseif args.org then
local currentDate = os.date('%Y-%m-%d')
local tables = 'TeamImages'
local fields = '_pageName, logoLight, logoDark, logoAll, start, end'
local cargoArgs = {
where = '_pageName="' .. args.org .. '" AND (start is NULL OR start < "' .. currentDate .. '") AND (end is NULL OR end > "' .. currentDate .. '")'
}
local results = cargo.query(tables, fields, cargoArgs)
if #results > 0 then
if ( results[1].logoAll ) then
headerNode = Header.make(args.title or currentTitle, nil, nil, results[1].logoAll)
else
headerNode = Header.make(args.title or currentTitle, results[1].logoLight, results[1].logoDark)
end
end
end
local container = mw.html.create('div')
:addClass('ib')
container:node(headerNode):node(Subheader.make('Team Information'))
if args.country then
container:node(RowWidget.make('Location', LocationWidget.make(args.country, args.city, currentTitleSplit[1] .. '/Teams')))
end
if args.region then
container:node(RowWidget.make('Region', LocationWidget.make(args.region, nil, currentTitleSplit[1] .. '/Teams')))
end
-- Look up Cargo table for captain, coach and manager
local tables = 'Squads'
local fields = '_pageName, captain, coach, manager'
local cargoArgs = {
where = '_pageName = "' .. mw.title.getCurrentTitle().text .. '"'
}
local results = cargo.query(tables, fields, cargoArgs)
if #results > 0 then
if ( results[1].captain ) then
container:node(RowWidget.make('Captain', results[1].captain, frame))
end
if ( results[1].coach ) then
container:node(RowWidget.make('Coach', results[1].coach, frame))
end
if ( results[1].manager ) then
container:node(RowWidget.make('Manager', results[1].manager, frame))
end
end
if args.founded then
container:node(RowWidget.make('Founded', args.founded))
end
if args.org then
container:node(RowWidget.make('Organization', args.org, frame))
local tables = 'Sponsors'
local fields = 'id, startRef, startRefName, endRef, endRefName'
local cargoArgs = {
where = '_pageName="' ..args.org .. '"'
}
local results = cargo.query(tables, fields, cargoArgs)
if #results > 0 then
container:node(RowWidget.make('Sponsors', SponsorsWidget.make(results, frame)))
end
end
if args.sponsors and args.org == nil then
container:node(RowWidget.make('Sponsors', args.sponsors))
end
if args.gamesponsors then
container:node(RowWidget.make('Game specific sponsors', args.gamesponsors))
end
if args.coach then
container:node(RowWidget.make('Coach', args.coach, frame))
end
if args.manager then
container:node(RowWidget.make('Manager', args.manager, frame))
end
if args.captain then
container:node(RowWidget.make('Captain', args.captain, frame))
end
container:node(Subheader.make('Links'))
local transformedLinks = Links.transform(args)
local fullLinks = LinksWidget.make(transformedLinks, 'team')
container:node(fullLinks)
return container
end
return Infobox