မေႃႇၵျူး:Table empty cell
Appearance
Uses Lua: |
Module:Table empty cell is used to create an empty table cell with alt and title texts.
Parameter list
[မႄးထတ်းငဝ်ႈငႃႇ]Parameter | Explanation | Status |
---|---|---|
|
The text which will be written in the cell. | optional |
|
The text which will be shown when hovering over the cell. | optional |
လၢႆးၸႂ်ႉတိုဝ်း
[မႄးထတ်းငဝ်ႈငႃႇ]{{#invoke:Table empty cell|main}}
{{#invoke:Table empty cell|main|alt_text= }}
{{#invoke:Table empty cell|main|alt_text= |titleText= }}
ၽိုၼ်ၵႅမ်မိုဝ်းလၢႆးၸႂ်ႉတိုဝ်း (documentation)တီႈၽၢႆႇၼိူဝ်ၼႆႉ လုၵ်ႉတီႈ မေႃႇၵျူး:Table empty cell/doc သေ ၶၢႆႉသႂ်ႇၶဝ်ႈ (ႁဵတ်း transclude ဝႆႉၶႃႈဢေႃႈ။ (မႄးထတ်း | ပိုၼ်း) ၽူႈၸိူဝ်းမႄးထတ်းၶဝ် ၸၢင်ႈၸၢမ်းတူၺ်းလႆႈ ၸိူဝ်းပဵၼ်ၼႃႈလိၵ်ႈ sandbox (သၢင်ႈ | ငဝ်းမိူၼ်) လႄႈ testcases (သၢင်ႈ) ႁင်း မေႃႇၵျူးဢၼ်ၼႆႉ လႆႈယူႇၶႃႈ။ ၼႃႈလိၵ်ႈၽႄ ႁင်း မေႃႇၵျူး ဢၼ်ၼႆႉ။. |
local p = {}
-- List of default title texts.
local defaultTitleTextlist = {
["TBA"] = "To be announced",
["TBD"] = "To be determined",
["N/A"] = "Not available"
}
-- 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 = "TBA"
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><span style=\"color: #2C2C2C\" title=\"" .. titleText .. "\">" .. altText .. "</span></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