Module:Infobox/Widget/Tournaments: Difference between revisions
From TwogPedia
            mNo edit summary  | 
				mNo edit summary  | 
				||
| Line 1: | Line 1: | ||
local getArgs = require('Module:Arguments').getArgs  | |||
local cargo = mw.ext.cargo  | local cargo = mw.ext.cargo  | ||
local func = require('Module:Functions')  | |||
local UpcomingMatches = require('Module:Infobox/Widget/Upcoming matches').get  | |||
local Subheader = require('Module:Infobox/Widget/Subheader')  | |||
local Functions = require('Module:Functions')  | local Functions = require('Module:Functions')  | ||
local stringifyDate = Functions.stringifyDate  | |||
local getTeamLogo = Functions.getTeamLogo  | local getTeamLogo = Functions.getTeamLogo  | ||
local timeUntil = Functions.timeUntil  | local timeUntil = Functions.timeUntil  | ||
local   | local colorModeDiv = Functions.colorModeDiv  | ||
local p = {}  | local p = {}  | ||
function p.get(  | function p.get(frame)  | ||
    local args = getArgs(frame)  | |||
    local team = args.team  | |||
	local currentDate = os.date('%Y-%m-%d')  | 	local currentDate = os.date('%Y-%m-%d')  | ||
	-- Get live   | 	-- Get live tournaments  | ||
	local tables = '  | 	local tables = 'Tournaments, Participants'  | ||
	local fields = '_pageName,   | 	local fields = 'Tournaments._pageName=_pageName, Tournaments.start=start, Tournaments.end=end, Tournaments.logoAll=logoAll, Tournaments.logoLight=logoLight, Tournaments.logoDark=logoDark, Tournaments.iconAll=iconAll, Tournaments.iconLight=iconLight, Tournaments.iconDark=iconDark, Participants.team=team'  | ||
	local   | 	local currentPage = mw.title.getCurrentTitle().text  | ||
	local cargoArgs = {  | 	local cargoArgs = {  | ||
		join = 'Tournaments._pageName=Participants._pageName'  | |||
	}  | 	}  | ||
	if not team then  | |||
	local   |     	cargoArgs.where = '(Participants.players HOLDS "' .. currentPage .. '" OR Participants.coaches HOLDS "' .. currentPage .. '" OR Participants.analysts HOLDS "' .. currentPage .. '" OR Participants.managers HOLDS "' .. currentPage .. '") AND (Tournaments.start is NOT NULL AND Tournaments.start <= "' .. currentDate .. '") AND (Tournaments.end IS NOT NULL AND Tournaments.end >= ' .. currentDate .. ')'  | ||
    else   | |||
    	cargoArgs.where = 'Participants.team = "' .. currentPage .. '" AND (Tournaments.start is NOT NULL AND Tournaments.start <= "' .. currentDate .. '") AND (Tournaments.end IS NOT NULL AND Tournaments.end >= ' .. currentDate .. ')'  | |||
    end  | |||
	local playerLiveResults = cargo.query(tables, fields, cargoArgs)  | |||
    local container = mw.html.create('div'):addClass('ib')  | |||
	if #playerLiveResults > 0 then  | |||
		container:node(Subheader.make('Live tournaments')):node(p.tournamentWrapper(playerLiveResults, true))  | |||
	end  | |||
	-- Get upcoming tournaments  | |||
	if not team then  | |||
    	cargoArgs.where = '(Participants.players HOLDS "' .. currentPage .. '" OR Participants.coaches HOLDS "' .. currentPage .. '" OR Participants.analysts HOLDS "' .. currentPage .. '" OR Participants.managers HOLDS "' .. currentPage .. '") AND (Tournaments.start is NOT NULL AND Tournaments.start > "' .. currentDate .. '")'  | |||
    else   | |||
    	cargoArgs.where = 'Participants.team = "' .. currentPage .. '" AND (Tournaments.start is NOT NULL AND Tournaments.start > "' .. currentDate .. '")'  | |||
    end  | |||
	local playerUpcomingResults = cargo.query(tables, fields, cargoArgs)  | |||
	if #playerUpcomingResults > 0 then  | |||
		container:node(Subheader.make('Upcoming tournaments')):node(p.tournamentWrapper(playerUpcomingResults))  | |||
	if #  | |||
	end  | 	end  | ||
	--   | 	if not team and #playerUpcomingResults == 0 and #playerLiveResults == 0 then  | ||
		-- Get live tournaments for talent  | |||
		tables = 'Tournaments, Talent'  | |||
		fields = 'Tournaments._pageName=_pageName, Tournaments.start=start, Tournaments.end=end, Tournaments.logoAll=logoAll, Tournaments.logoLight=logoLight, Tournaments.logoDark=logoDark, Tournaments.iconAll=iconAll, Tournaments.iconLight=iconLight, Tournaments.iconDark=iconDark'  | |||
		cargoArgs = {  | |||
			join = 'Tournaments._pageName=Talent._pageName',  | |||
			where = 'Talent.people HOLDS "' .. currentPage .. '" AND (Tournaments.start is NOT NULL AND Tournaments.start <= "' .. currentDate .. '") AND (Tournaments.end IS NOT NULL AND Tournaments.end >= ' .. currentDate .. ')'  | |||
		}  | |||
		local talentLiveResults = cargo.query(tables, fields, cargoArgs)  | |||
		if #talentLiveResults > 0 then  | |||
			container:node(Subheader.make('Live tournaments')):node(p.tournamentWrapper(talentLiveResults, true))  | |||
		end  | |||
	end  | 	end  | ||
	return container  | 	return container  | ||
end  | end  | ||
function p.  | function p.tournamentWrapper(results, live)  | ||
	local   | 	local wrapper = mw.html.create('div'):attr('style', 'padding: 10px;')  | ||
	for i = 1, #results do  | 	for i = 1, #results do  | ||
		local result = results[i]  | 		local result = results[i]  | ||
		local dateDiv = mw.html.create('div')  | |||
		if live then if result['end'] then dateDiv:wikitext('Until ' ..stringifyDate(result['end']) ) else dateDiv:wikitext('Until TBD') end else dateDiv:wikitext('Starts on ' .. stringifyDate(result.start)) end  | |||
		local logoDiv = mw.html.create('div')  | |||
		local nameDiv = mw.html.create('div'):wikitext('[[' .. result._pageName .. ']]')  | |||
		local tournamentInfo = mw.html.create('div'):attr('style', 'display: flex; gap: 0.5rem; justify-content: center; align-items: center;'):node(dateDiv):node(logoDiv):node(nameDiv)  | |||
		local matches = mw.html.create('div')  | |||
		local tournamentContainer = mw.html.create('div'):node(tournamentInfo):node(matches)  | |||
		local iconSize = '30px'  | |||
		if result.iconAll then  | |||
			logoDiv:node('[[File:' .. result.iconAll .. '|' .. iconSize .. '|link=' .. result._pageName .. ']]')  | |||
		elseif result.iconLight and result.iconDark then  | |||
			logoDiv:node(colorModeDiv('[[File:' .. result.iconLight .. '|' .. iconSize .. '|link=' .. result._pageName .. ']]', '[[File:' .. result.iconDark .. '|' .. iconSize .. '|link=' .. result._pageName .. ']]'))  | |||
		elseif result.logoAll then  | |||
			logoDiv:node('[[File:' .. result.logoAll .. '|' .. iconSize .. '|link=' .. result._pageName .. ']]')  | |||
		elseif result.logoLight and result.logoDark then  | |||
			logoDiv:node(colorModeDiv('[[File:' .. result.logoLight .. '|' .. iconSize .. '|link=' .. result._pageName .. ']]', '[[File:' .. result.logoDark .. '|' .. iconSize .. '|link=' .. result._pageName .. ']]'))  | |||
		else   | |||
			local logo = result.iconLight or result.iconDark or result.logoLight or result.logoDark  | |||
			logoDiv:node('[[File:' .. logo .. '|' .. iconSize .. '|link=' .. result._pageName .. ']]')  | |||
		end  | |||
		-- Check if any upcoming or live matches for this tournament and player  | |||
		tournamentContainer:node(UpcomingMatches(result._pageName, result.team))  | |||
		wrapper:node(tournamentContainer)  | |||
	end  | 	end  | ||
	return wrapper  | |||
end  | end  | ||
return p  | return p  | ||
Revision as of 20:53, 22 October 2023
Documentation for this module may be created at Module:Infobox/Widget/Tournaments/doc
local getArgs = require('Module:Arguments').getArgs
local cargo = mw.ext.cargo
local func = require('Module:Functions')
local UpcomingMatches = require('Module:Infobox/Widget/Upcoming matches').get
local Subheader = require('Module:Infobox/Widget/Subheader')
local Functions = require('Module:Functions')
local stringifyDate = Functions.stringifyDate
local getTeamLogo = Functions.getTeamLogo
local timeUntil = Functions.timeUntil
local colorModeDiv = Functions.colorModeDiv
local p = {}
function p.get(frame)
    local args = getArgs(frame)
    local team = args.team
	local currentDate = os.date('%Y-%m-%d')
	-- Get live tournaments
	local tables = 'Tournaments, Participants'
	local fields = 'Tournaments._pageName=_pageName, Tournaments.start=start, Tournaments.end=end, Tournaments.logoAll=logoAll, Tournaments.logoLight=logoLight, Tournaments.logoDark=logoDark, Tournaments.iconAll=iconAll, Tournaments.iconLight=iconLight, Tournaments.iconDark=iconDark, Participants.team=team'
	local currentPage = mw.title.getCurrentTitle().text
    
	local cargoArgs = {
		join = 'Tournaments._pageName=Participants._pageName'
	}
	if not team then
    	cargoArgs.where = '(Participants.players HOLDS "' .. currentPage .. '" OR Participants.coaches HOLDS "' .. currentPage .. '" OR Participants.analysts HOLDS "' .. currentPage .. '" OR Participants.managers HOLDS "' .. currentPage .. '") AND (Tournaments.start is NOT NULL AND Tournaments.start <= "' .. currentDate .. '") AND (Tournaments.end IS NOT NULL AND Tournaments.end >= ' .. currentDate .. ')'
    else 
    	cargoArgs.where = 'Participants.team = "' .. currentPage .. '" AND (Tournaments.start is NOT NULL AND Tournaments.start <= "' .. currentDate .. '") AND (Tournaments.end IS NOT NULL AND Tournaments.end >= ' .. currentDate .. ')'
    end
	
	local playerLiveResults = cargo.query(tables, fields, cargoArgs)
    local container = mw.html.create('div'):addClass('ib')
	if #playerLiveResults > 0 then
		container:node(Subheader.make('Live tournaments')):node(p.tournamentWrapper(playerLiveResults, true))
	end
	
	-- Get upcoming tournaments
	if not team then
    	cargoArgs.where = '(Participants.players HOLDS "' .. currentPage .. '" OR Participants.coaches HOLDS "' .. currentPage .. '" OR Participants.analysts HOLDS "' .. currentPage .. '" OR Participants.managers HOLDS "' .. currentPage .. '") AND (Tournaments.start is NOT NULL AND Tournaments.start > "' .. currentDate .. '")'
    else 
    	cargoArgs.where = 'Participants.team = "' .. currentPage .. '" AND (Tournaments.start is NOT NULL AND Tournaments.start > "' .. currentDate .. '")'
    end
	
	local playerUpcomingResults = cargo.query(tables, fields, cargoArgs)
	
	if #playerUpcomingResults > 0 then
		container:node(Subheader.make('Upcoming tournaments')):node(p.tournamentWrapper(playerUpcomingResults))
	end
	
	if not team and #playerUpcomingResults == 0 and #playerLiveResults == 0 then
		-- Get live tournaments for talent
		tables = 'Tournaments, Talent'
		fields = 'Tournaments._pageName=_pageName, Tournaments.start=start, Tournaments.end=end, Tournaments.logoAll=logoAll, Tournaments.logoLight=logoLight, Tournaments.logoDark=logoDark, Tournaments.iconAll=iconAll, Tournaments.iconLight=iconLight, Tournaments.iconDark=iconDark'
	
		cargoArgs = {
			join = 'Tournaments._pageName=Talent._pageName',
			where = 'Talent.people HOLDS "' .. currentPage .. '" AND (Tournaments.start is NOT NULL AND Tournaments.start <= "' .. currentDate .. '") AND (Tournaments.end IS NOT NULL AND Tournaments.end >= ' .. currentDate .. ')'
		}
		local talentLiveResults = cargo.query(tables, fields, cargoArgs)
		if #talentLiveResults > 0 then
			container:node(Subheader.make('Live tournaments')):node(p.tournamentWrapper(talentLiveResults, true))
		end
	end
	return container
end
function p.tournamentWrapper(results, live)
	local wrapper = mw.html.create('div'):attr('style', 'padding: 10px;')
	for i = 1, #results do
		local result = results[i]
		
		local dateDiv = mw.html.create('div')
		if live then if result['end'] then dateDiv:wikitext('Until ' ..stringifyDate(result['end']) ) else dateDiv:wikitext('Until TBD') end else dateDiv:wikitext('Starts on ' .. stringifyDate(result.start)) end
		local logoDiv = mw.html.create('div')
		local nameDiv = mw.html.create('div'):wikitext('[[' .. result._pageName .. ']]')
		local tournamentInfo = mw.html.create('div'):attr('style', 'display: flex; gap: 0.5rem; justify-content: center; align-items: center;'):node(dateDiv):node(logoDiv):node(nameDiv)
		local matches = mw.html.create('div')
		local tournamentContainer = mw.html.create('div'):node(tournamentInfo):node(matches)
		local iconSize = '30px'
		if result.iconAll then
			logoDiv:node('[[File:' .. result.iconAll .. '|' .. iconSize .. '|link=' .. result._pageName .. ']]')
		elseif result.iconLight and result.iconDark then
			logoDiv:node(colorModeDiv('[[File:' .. result.iconLight .. '|' .. iconSize .. '|link=' .. result._pageName .. ']]', '[[File:' .. result.iconDark .. '|' .. iconSize .. '|link=' .. result._pageName .. ']]'))
		elseif result.logoAll then
			logoDiv:node('[[File:' .. result.logoAll .. '|' .. iconSize .. '|link=' .. result._pageName .. ']]')
		elseif result.logoLight and result.logoDark then
			logoDiv:node(colorModeDiv('[[File:' .. result.logoLight .. '|' .. iconSize .. '|link=' .. result._pageName .. ']]', '[[File:' .. result.logoDark .. '|' .. iconSize .. '|link=' .. result._pageName .. ']]'))
		else 
			local logo = result.iconLight or result.iconDark or result.logoLight or result.logoDark
			logoDiv:node('[[File:' .. logo .. '|' .. iconSize .. '|link=' .. result._pageName .. ']]')
		end
		
		-- Check if any upcoming or live matches for this tournament and player
		tournamentContainer:node(UpcomingMatches(result._pageName, result.team))
		wrapper:node(tournamentContainer)
	end
	return wrapper
end
return p
No categories