模組:政黨
外觀
![]() | 此模組使用Lua語言: |
使用方法
{{#invoke:政黨|fetch|<party>|<value>}}
更新模組
本模組中包含的政黨根據名稱的第一個字元分成按字母順序排列的列表(例如,"Labour Party (UK)" 屬於 /L)。/1 子頁面用於任何不以西方字母 A-Z 開頭的政黨(包括數字和重音字元)。
每個數據子模組內有兩個本地組:local alternate
和 local full
。
備用黨派名稱
備用組(alternate group)用於黨派的備用名稱。以下是 Labour Party (UK) 的備用名稱範例:
local alternate = {
....
["Labour and Co-operative"] = "Labour Party (UK)",
["Labour Co-operative"] = "Labour Party (UK)",
...
}
方括號中的第一個條目是備用名稱,第二個條目(僅在引號中)是 full
組中的名稱,如下所示。請注意,政黨的備用名稱應儲存在相應的基於字母的子頁面中;"Alabama Democratic Party" 列在 /A 中,儘管它是 "Democratic Party (US)"(儲存在 /D)的備用名稱。
表中數值
local full = {
....
["Labour Party (UK)"] = {abbrev = "Lab", color = "#E4003B", shortname = "Labour",},
...
}
每個黨都儲存有三個值:
與黨的主要名稱不同,添加到這些參數中的值與本模組中其他黨的值不必是唯一的。
如果某個黨沒有儲存名稱值,模組在返回輸入之前會嘗試返回另一個簡短名稱變量。因此,如果儲存了縮寫(abbrev
),但沒有儲存簡稱(shortname
),那麼無論詢問哪個值,模組都會返回縮寫值(abbrev
)。
數據頁
local p = {}
local default_color = '#F8F9FA'
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 create_error(error_message)
return string.format('<strong class="error">%s</strong>', error_message)
end
local function getFirstLetter(party)
local 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*$')
local delink = require('Module:Delink2')._delink
text = delink({text, wikilinks = "target"})
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(args)
if not args[1] then
return create_error("parameter 1 should be a party name.")
end
if not args[2] then
return create_error("parameter 2 should be the output type.")
end
local party = stripToNil(args[1])
local out_type = stripToNil(args[2])
if out_type == 'colour' then
out_type = 'color'
end
local index = getFirstLetter(party)
-- Load data from submodule
local data = mw.loadData('Module:政黨/' .. 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:政黨/' .. 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
if out_type == 'color' then
return args.error or default_color
else
return args.error or party
end
end
local return_value = party_info[out_type]
if return_value == "" then
if out_type == 'color' then
return args.error or create_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
function p.fetch(frame)
-- Initialise and populate variables
local getArgs = require("Module:Arguments").getArgs
local args = getArgs(frame)
return p._fetch(args)
end
return p