Module:Flaglist: Difference between revisions

From Zoophilia Wiki
Jump to navigationJump to search
meta>SiBr4
(Splitting function)
m (11 revisions imported)
 
(8 intermediate revisions by 5 users not shown)
Line 5: Line 5:


function p.luawidth(size)
function p.luawidth(size)
--For use within Lua
--For use within Lua
 
local w
local w
if string.find(size,"^%d+x%d+px$") then -- width and height (eg. 20x10px)
local h
-- use specified width
 
w = tonumber(string.match(size,"(%d+)x%d+px")) + 2 -- (2px for borders)
if string.match(size,"^%d+x%d+px$") ~= nil then -- width and height (eg. 20x10px)
elseif string.find(size,"^%d+px$") then -- width only (eg. 20px)
  -- use specified width
-- use specified width
  w = string.gsub(size,"(%d+)x%d+px","%1")
w = tonumber(string.match(size,"(%d+)px")) + 2
elseif string.match(size,"^%d+px$") ~= nil then -- width only (eg. 20px)
elseif string.find(size,"^x%d+px$") then -- height only (eg. x10px)
  -- use specified width
-- assume a width based on the height
  w = string.gsub(size,"(%d+)px","%1")
local h = tonumber(string.match(size,"x(%d+)px"))
elseif string.match(size,"^x%d+px$") ~= nil then -- height only (eg. x10px)
w = h * 2.2
  -- assume a width based on the height
w = math.floor(w+0.5) -- round to integer
  h = string.gsub(size,"x(%d+)px","%1")
else -- empty or invalid input
  w = h * 2.2
w = 25 -- default width for flagicons including borders
  w = math.floor(w+0.5) -- round to integer
end
else -- empty or invalid input
return tostring(w)
  w = 23 -- default width for flagicons
end
 
w = w + 7 -- extra whitespace between icon and link
return w
 
end
end


function p.width(frame)
function p.width(frame)
--For external use
--For external use
 
return p.luawidth(frame.args[1])
return p.luawidth(frame["args"][1])
 
end
end


return p
return p

Latest revision as of 02:35, 3 September 2020

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

-- Calculates the width of the span box for [[Template:Flaglist]]
-- based on the specified image size

local p = {}

function p.luawidth(size)
	--For use within Lua
	local w
	if string.find(size,"^%d+x%d+px$") then -- width and height (eg. 20x10px)
		-- use specified width
		w = tonumber(string.match(size,"(%d+)x%d+px")) + 2 -- (2px for borders)
	elseif string.find(size,"^%d+px$") then -- width only (eg. 20px)
		-- use specified width
		w = tonumber(string.match(size,"(%d+)px")) + 2
	elseif string.find(size,"^x%d+px$") then -- height only (eg. x10px)
		-- assume a width based on the height
		local h = tonumber(string.match(size,"x(%d+)px"))
		w = h * 2.2
		w = math.floor(w+0.5) -- round to integer
	else -- empty or invalid input
		w = 25 -- default width for flagicons including borders
	end
	return tostring(w)
end

function p.width(frame)
	--For external use
	return p.luawidth(frame.args[1])
end

return p