Module:TV: Difference between revisions

From Terra Invicta Official Wiki
Redwah (talk | contribs)
No edit summary
Redwah (talk | contribs)
No edit summary
Line 7: Line 7:


local slower = string.lower
local slower = string.lower
local spanSettings = {'<span style="white-space: nowrap; border: 2px solid', '; border-radius: 7px; padding: 0px 4px 2px; background-color: black; color: white;">'}
local spanSettings = {'<span style="white-space: nowrap; border: 2px solid ', '; border-radius: 7px; padding: 0px 4px 2px; background-color: black; color: white;">'}


local categoryColors = {
local categoryColors = {

Revision as of 22:01, 11 February 2026

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

-- This is a LUA version of the Template:TV page.
-- The idea is to standardize how Type-Value pairs are presented.

local p = {}

local TVData = mw.loadData('Module:TV/data')

local slower = string.lower
local spanSettings = {'<span style="white-space: nowrap; border: 2px solid ', '; border-radius: 7px; padding: 0px 4px 2px; background-color: black; color: white;">'}

local categoryColors = {
	-- 1: Resource
	'powderblue', 
	-- 2: Space Related
	'blue', 
	-- 3: Nation Related
	'orange', 
	-- 4: Nation Priority
	'green', 
	-- 5: Tech Category
	'purple', 
	-- 6: Councilor Related
	'red', 
}

function p.TV( frame )
	local TVtype = frame.args[1]
	local TVvalue = frame.args[2]
	local TVshort = frame.args[3]
	if not TVtype then
		return 'ERROR: No type specified for [[Module:TV/data|TV Module]]'
	end
	TVtype = slower(TVtype)
	TVtype = mw.text.trim(TVtype)
	if not TVData[TVtype] then
		return 'ERROR: Unknown value type ' .. TVtype .. ' for [[Module:TV/data|TV Module]]'
	end
	
	local returnString = spanSettings[1] .. categoryColors[TVData[TVtype][3]] .. spanSettings[2]
	if TVvalue and mw.text.trim(TVvalue) ~= '' then
		returnString = returnString .. TVvalue .. ' '
	end
	returnString = returnString .. TVData[TVtype][1]
	if TVshort ~= 'true' then
		returnString = returnString .. TVData[TVtype][2]
	end
	returnString = returnString .. '</span>'
	return returnString
end

return p