Modül:Tablo boş hücre

Vikipedi, özgür ansiklopedi
Modül belgelemesi[gör] [değiştir] [geçmiş] [temizle]

Bu modül, açıklamasıyla birlikte tablo hücresinde bilgilendirme metni oluşturmak için kullanılır.

Parametreler[kaynağı değiştir]

Parametre Açıklama Durum
  • hücremetni
  • 1
Hücrede yazacak olan metin. İsteğe bağlı
  • açıklamametni
  • 2
İmleç hücre üzerinde gezdirilirken gösterilecek metin. İsteğe bağlı

Kullanımı[kaynağı değiştir]

  • {{#invoke:Tablo boş hücre|main}}
  • {{#invoke:Tablo boş hücre|main|hücremetni= }}
  • {{#invoke:Tablo boş hücre|main|hücremetni= |açıklamametni= }}
local p = {}

-- List of default title texts.
local defaultTitleTextlist = {
	["TBA"] = "Henüz duyurulmadı",
	["TBD"] = "Henüz belirlenmedi",
	["N/A"] = "Mevcut değil"	
}

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

	-- 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"] or args["hücremetni"]
	
	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('Modül:Bağımsız değişkenler').getArgs;
	local args = getArgs(frame);
	return p._main(args)
end

return p