Module:Political party: Difference between revisions

From TEPwiki, Urth's Encyclopedia
Jump to navigation Jump to search
Content added Content deleted
m (Protected "Module:Political party": High-risk template or module: 13487 transclusions (more info) ([Edit=Require template editor access] (indefinite) [Move=Require template editor access] (indefinite)))
(fix getFirstLetter() so first letter used is uppercase, to match the module names)
Line 11: Line 11:
-- Set index for non-A-Z starts
-- Set index for non-A-Z starts
if string.match(index, '%A') then
if string.match(index, '%A') then
index = '1'
return '1'
end
end
return index
return string.upper(index)
end
end


Line 52: Line 52:


-- Check if database value exists
-- Check if database value exists
-- *Not even in database - return given error or input
-- * Not even in database - return given error or input
-- *No color - return error
-- * No color - return error
-- *No shortname/abbrev - return return first non-blank of abbrev->shortname->input
-- * No shortname/abbrev - return first non-blank of abbrev->shortname->input
if not party_info then
if not party_info then
return args.error or party
return args.error or party

Revision as of 04:18, 19 November 2021

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

local p = {}

local categories = {
	party_not_in_list = '[[Category:Pages using Political party with unknown party]]',
	shortname_not_in_list = '[[Category:Pages using Political party with missing shortname]]',
	color_not_in_list = '[[Category:Pages using Political party with missing color]]',
}

local function getFirstLetter(party)
	index = mw.ustring.sub(party, 1, 1)
	-- Set index for non-A-Z starts
	if string.match(index, '%A') then
		return '1'
	end
	return string.upper(index)
end

local function stripToNil(text)
	-- If text is a string, return its trimmed content, or nil if empty.
	-- Otherwise return text (which may, for example, be nil).
	if type(text) == 'string' then
		text = text:match('(%S.-)%s*$')
	end
	return text
end

-- Example of having all the data - color and names - in one table. Requires one page to be edited instead of two when adding a new party.
function p.fetch(frame)
	-- Initialise and populate variables
	local args = frame.args
 	local party = stripToNil(args[1]) or error('parameter 1 should be a party name')
	local out_type = stripToNil(args[2]) or error('parameter 2 should be the output type')
	local index = getFirstLetter(party)
	
	-- Load data from submodule
	local data = mw.loadData('Module:Political party/' .. index)
	local data_all = data.full

	local party_alt = data.alternate[party]
	local party_info
	if party_alt then
		if data_all[party_alt] then
			party_info = data_all[party_alt]
		else
			index = getFirstLetter(party_alt)
			data = mw.loadData('Module:Political party/' .. index)
			party_info = data.full[party_alt]
		end
	else
		party_info = data_all[party]
	end

	-- Check if database value exists
	-- * Not even in database - return given error or input
	-- * No color - return error
	-- * No shortname/abbrev - return first non-blank of abbrev->shortname->input
	if not party_info then
		return args.error or party
	end
	local return_value = party_info[out_type]
	if return_value == "" then
		if out_type == 'color' then
			return args.error or error('Value not in template. Please request that it be added.')
		elseif out_type == 'abbrev' then
			if party_info['shortname'] ~= "" then
				return party_info['shortname']
			else
				return party
			end
		elseif out_type == 'shortname' then
			if party_info['abbrev'] ~= "" then
				return party_info['abbrev']
			else
				return party
			end
		else
			return party
		end
	end

	if out_type == 'color' and string.find(return_value, '#') then
		return_value = string.gsub(return_value, '#', '#')
	end
	return return_value	
end

return p