Module:multiple images

Hello, you have come here looking for the meaning of the word Module:multiple images. In DICTIOUS you will not only get to know all the dictionary meanings for the word Module:multiple images, but we will also tell you about its etymology, its characteristics and you will know how to say Module:multiple images in singular and plural. Everything you need to know about the word Module:multiple images you have here. The definition of the word Module:multiple images will help you to be more precise and correct when speaking or writing your texts. Knowing the definition ofModule:multiple images, as well as those of other words, enriches your vocabulary and provides you with more and better linguistic resources.

Called by {{multiple images}}. Do not use directly.


-- implements ]
local p = {}

local autoscaledimages
local nonautoscaledimages

local function isnotempty(s)
	return s and s:match("^%s*(.-)%s*$") ~= ""
end

local function removepx(s)
	return tostring(s or ""):match("^(.*)%s*$") or s
end

local function getdimensions(s, w, h)
	if tonumber(w) and tonumber(h) then
		nonautoscaledimages = true
		return tonumber(w), tonumber(h)
	end
	local file = s and mw.title.new("File:" .. mw.uri.decode(mw.ustring.gsub(s, "%|.*$", ""), "WIKI"))
	file = file and file.file or { width = 0, height = 0 }
	w = tonumber(file.width) or 0
	h = tonumber(file.height) or 0
	autoscaledimages = true
	return w, h
end

local function renderImageCell(image, width, height, link, alt, thumbtime, caption, textalign, istyle)
	local root = mw.html.create("")

	local altstr = "|alt=" .. (alt or "")
	local linkstr = link and ("|link=" .. link) or ""
	local widthstr = "|" .. tostring(width) .. "px"
	local thumbtimestr = ""

	if widthstr == "|-nanpx" then
		widthstr = ""
	end
	if isnotempty(thumbtime) then
		thumbtimestr = "|thumbtime=" .. thumbtime
	end

	local imagediv = root:tag("div")
	imagediv:addClass("thumbimage")
	imagediv:cssText(istyle)
	if height then
		imagediv:css("height", tostring(height) .. "px")
		imagediv:css("overflow", "hidden")
	end
	imagediv:wikitext("]")
	if isnotempty(caption) then
		local captiondiv = root:tag("div")
		captiondiv:addClass("thumbcaption")
		if isnotempty(textalign) then
			captiondiv:addClass("text-align-" .. textalign)
		end
		captiondiv:wikitext(caption)
	end
	return tostring(root)
end

local function getWidth(w1, w2)
	local w
	if isnotempty(w1) then
		w = tonumber(w1)
	elseif isnotempty(w2) then
		w = tonumber(w2)
	end
	return w or 250
end

local function getPerRow(pstr, ic)
	-- split string into array using any non-digit as a dilimiter
	local pr = mw.text.split(pstr or "", "*")
	-- if split failed, assume a single row
	if #pr < 1 then
		pr = { tostring(ic) }
	end
	-- convert the array of strings to an array of numbers,
	-- adding any implied/missing numbers at the end of the array
	local r = 1
	local thisrow = tonumber(pr or ic) or ic
	local prownum = {}
	while ic > 0 do
		prownum = thisrow
		ic = ic - thisrow
		r = r + 1
		-- use the previous if the next is missing and
		-- make sure we don't overstep the number of images
		thisrow = math.min(tonumber(pr or thisrow) or ic, ic)
	end
	return prownum
end

local function renderMultipleImages(frame)
	local pargs = frame:getParent().args
	local args = frame.args
	local width = removepx(pargs or "")
	local dir = pargs or "vertical"
	local border = pargs or args or ""
	local align = pargs or args or (border == "infobox" and "center" or "")
	local capalign = pargs or args or ""
	local totalwidth = removepx(pargs or args or "")
	local imgstyle = pargs or args
	local header = pargs or pargs or ""
	local footer = pargs or ""
	local imagegap = tonumber(pargs or "1") or 1
	local perrow = nil
	local thumbclass = {
		 = "tleft",
		 = "tnone",
		 = "tnone",
		 = "tnone",
		 = "tright",
	}

	-- find all the nonempty images
	local imagenumbers = {}
	local imagecount = 0
	for k, v in pairs(pargs) do
		local i = tonumber(tostring(k):match("^%s*image(+)%s*$") or "0")
		if i > 0 and isnotempty(v) then
			table.insert(imagenumbers, i)
			imagecount = imagecount + 1
		end
	end

	-- sort the imagenumbers
	table.sort(imagenumbers)
	
	if pargs and not pargs then
		dir = "horizontal"
	end

	-- create an array with the number of images per row
	perrow = getPerRow(dir == "vertical" and "1" or pargs, imagecount)

	-- compute the number of rows
	local rowcount = #perrow

	-- store the image widths and compute row widths and maximum row width
	local heights = {}
	local widths = {}
	local widthmax = 0
	local widthsum = {}
	local k = 0
	for r = 1, rowcount do
		widthsum = 0
		for c = 1, perrow do
			k = k + 1
			if k <= imagecount then
				local i = imagenumbers
				if isnotempty(totalwidth) then
					widths, heights =
						getdimensions(pargs, pargs, pargs)
				else
					widths = getWidth(width, pargs)
				end
				widthsum = widthsum + widths
			end
		end
		widthmax = math.max(widthmax, widthsum)
	end

	-- make sure the gap is non-negative
	if imagegap < 0 then
		imagegap = 0
	end

	-- if total_width has been specified, rescale the image widths
	if isnotempty(totalwidth) then
		totalwidth = tonumber(totalwidth)
		widthmax = 0
		local k = 0
		for r = 1, rowcount do
			local koffset = k
			local tw = totalwidth - (3 + imagegap) * (perrow - 1) - 12
			local ar = {}
			local arsum = 0
			for j = 1, perrow do
				k = k + 1
				if k <= imagecount then
					local i = imagenumbers
					local h = heights or 0
					if h > 0 then
						ar = widths / h
						heights = h
					else
						ar = widths / 100
					end
					arsum = arsum + ar
				end
			end
			local ht = tw / arsum
			local ws = 0
			k = koffset
			for j = 1, perrow do
				k = k + 1
				if k <= imagecount then
					local i = imagenumbers
					widths = math.floor(ar * ht + 0.5)
					ws = ws + widths
					if heights then
						heights = math.floor(ht)
					end
				end
			end
			widthsum = ws
			widthmax = math.max(widthmax, widthsum)
		end
	end

	-- start building the array of images, if there are images
	if imagecount > 0 then
		-- compute width of outer div
		local bodywidth = 0
		for r = 1, rowcount do
			if widthmax == widthsum then
				bodywidth = widthmax + (3 + imagegap) * (perrow - 1) + 12
			end
		end
		-- The body has a min-width of 100, which needs to be taken into account on specific widths
		bodywidth = math.max(100, bodywidth - 8)

		local bg = pargs or ""
		-- create the array of images
		local root = mw.html.create("div")
		root:addClass("thumb")
		root:addClass("tmulti")
		-- root:addClass('tmulti-sandbox')
		root:addClass(thumbclass or "tright")

		if align == "center" or align == "centre" then
			root:addClass("center")
		end
		if bg ~= "" then
			root:css("background-color", bg)
		end

		local div = root:tag("div")
		div:addClass("thumbinner multiimageinner")
		div:css("width", tostring(bodywidth) .. "px"):css("max-width", tostring(bodywidth) .. "px")
		if bg ~= "" then
			div:css("background-color", bg)
		end
		if border == "infobox" or border == "none" then
			div:css("border", "none")
		end
		-- add the header
		if isnotempty(header) then
			div:tag("div")
				:addClass("trow")
				:tag("div")
				:addClass("theader")
				:css("text-align", pargs)
				:css("background-color", (pargs ~= "") and pargs or nil)
				:wikitext(header)
		end
		-- loop through the images
		local k = 0
		for r = 1, rowcount do
			local rowdiv = div:tag("div"):addClass("trow")
			for j = 1, perrow do
				k = k + 1
				if k <= imagecount then
					local imagediv = rowdiv:tag("div")
					imagediv:addClass("tsingle")
					if bg ~= "" then
						imagediv:css("background-color", bg)
					end
					if (imagegap > 1) and (j < perrow) then
						imagediv:css("margin-right", tostring(imagegap) .. "px")
					end
					local i = imagenumbers
					local img = pargs
					local w = widths
					imagediv:css("width", tostring(2 + w) .. "px"):css("max-width", tostring(2 + w) .. "px")
					imagediv:wikitext(
						renderImageCell(
							img,
							w,
							heights,
							pargs,
							pargs,
							pargs,
							pargs,
							capalign,
							imgstyle
						)
					)
				end
			end
		end
		-- add the footer
		if isnotempty(footer) then
			local falign = string.lower(pargs or args or "left")
			falign = (falign == "centre") and "center" or falign
			div:tag("div")
				:addClass("trow")
				:css("display", (falign ~= "left") and "flow-root" or "flex")
				:tag("div")
				:addClass("thumbcaption")
				:css("text-align", (falign ~= "left") and falign or nil)
				:css("background-color", (pargs ~= "") and pargs or nil)
				:wikitext(footer)
		end
		return tostring(root)
	end
	return ""
end

function p.render(frame)
	autoscaledimages = false
	nonautoscaledimages = false

	return frame:extensionTag("templatestyles", nil, {src = "multiple images/styles.css", wrapper = ".tmulti"})
	    .. renderMultipleImages(frame)
	    .. (autoscaledimages and "]" or "")
	    .. (nonautoscaledimages and "]" or "")
end

return p