Module:Infobox/Widget/Location: Difference between revisions

From TwogPedia
No edit summary
No edit summary
Line 5: Line 5:
local Location = {}
local Location = {}


function Location.make(countries, cities, title)
function Location.make(countries, cities, game)
local container = mw.html.create('div')
local container = mw.html.create('div')
local countryList = mw.text.split(countries, ',')
local countryList = mw.text.split(countries, ',')
Line 14: Line 14:
local currentTitle = mw.title.getCurrentTitle().text
local currentTitle = mw.title.getCurrentTitle().text
local gameCategory = mw.text.split(currentTitle, '/')[1]
local gameCategory = mw.text.split(currentTitle, '/')[1]
local flag = Flags.icon(country, gameCategory)
local flag = Flags.icon(country, game or gameCategory)
local div = mw.html.create('div')
local div = mw.html.create('div')
:wikitext(flag)
:wikitext(flag)

Revision as of 09:16, 2 September 2022

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

local CountryData = mw.loadData('Module:Localisation/Data')
local Flags = require('Module:Flags')
local String = require('Module:StringUtils')

local Location = {}

function Location.make(countries, cities, game)
	local container = mw.html.create('div')
	local countryList = mw.text.split(countries, ',')
	
	for i, v in ipairs(countryList) do
		v = mw.text.trim(v)
		local country = CountryData[string.upper(v)]
		local currentTitle = mw.title.getCurrentTitle().text
		local gameCategory = mw.text.split(currentTitle, '/')[1]
		local flag = Flags.icon(country, game or gameCategory)
		local div = mw.html.create('div')
			:wikitext(flag)
		if cities then
			div:wikitext(mw.text.trim(mw.text.split(cities, ',')[i]))
		else 
			div:wikitext(country)
		end
			
		container:node(div)
	end
	
	return container
end

return Location