跳转到内容

模組:Table empty cell

被永久保护的模块
维基百科,自由的百科全书
文档图示 模块文档[查看] [编辑] [历史] [清除缓存]

Module:Table empty cell is used to create an empty table cell with alt and title texts.

Parameter list

Parameter Explanation Status
  • alt_text
  • 1
The text which will be written in the cell. optional
  • titleText
  • 2
The text which will be shown when hovering over the cell. optional

Usage

  • {{#invoke:Table empty cell|main}}
  • {{#invoke:Table empty cell|main|alt_text= }}
  • {{#invoke:Table empty cell|main|alt_text= |titleText= }}

local p = {}

-- List of default title texts.
local defaultTitleTextlist = {
	["TBA"] = "待公佈",
	["TBD"] = "待定",
	["N/A"] = "不適用",
	["待公佈"] = "表格內此處信息尚未公開或尚未正式發佈。",
	["待定"] = "表格內此處信息仍不確定。",
	["不適用"] = "表格內此處不適用。"		
}

-- Local function which is used to retrieve the title text.
local function getTitleText(args, altText)
	local titleText = args[2] or args["title_text"]

	-- If the title text was manually added, return it.
	if (titleText) then
		return titleText
	end
	
	-- The title text was not set, get the correct default text which corresponds to the alt text.
	for k, v in pairs(defaultTitleTextlist) do
		if (altText == k) then
			return v
		end
	end
end

-- Local function which is used to retrieve the alt text.
local function getAltText(args)
	local altText = args[1] or args["alt_text"]
	
	if (altText == nil) then
		altText = "待公佈"
	end
	
	return altText
end

-- Local function which does the actual main process.
function p._main(args)
	local altText = getAltText(args)
	local titleText = getTitleText(args, altText)

	return "<small style=\"color: #2C2C2C\" title=\"" .. titleText .. "\">" .. altText .. "</small>"
end

--[[
Public function which is used to create information for an empty text cell.

Parameters:
	-- |1= or |alt_text=		— optional; The text which will be written in the cell.
	-- |2= or |title_text=		— optional; The text which will be shown when hovering over the cell.
--]]
function p.main(frame)
	local getArgs = require('Module:Arguments').getArgs;
	local args = getArgs(frame);
	return p._main(args)
end

return p