Difference between revisions of "Module:Rail-interchange multi"

From blackwiki
Jump to navigation Jump to search
blackwiki>MusikAnimal
m (Protected "Module:Rail-interchange multi": High-risk module ([Edit=Require template editor access] (indefinite)))
m (55 revisions imported)
 
(5 intermediate revisions by one other user not shown)
Line 2: Line 2:
  
 
function p.row(frame)
 
function p.row(frame)
local somelist = frame.args[1]
+
local data = frame.args[1]
 
local div = frame.args['div']
 
local div = frame.args['div']
local result, para1, para2, para3, para4, para1_1, para1_empty, sep
+
local result, sep, default = '', ''
result = ''
+
local args = {}
para1 = ''
+
data = mw.text.split(data, '+')
para2 = ''
+
for i1, v1 in ipairs(data) do
para3 = ''
+
args = {}
para4 = ''
+
if v1 ~= '' and v1 ~= '\\' then
para1_1 = ''
+
local tmp = mw.text.split(v1, '\\')
para1_empty = false
+
if i1 == 1 then
sep = ''
+
default = tmp[1]
for k1, v1 in ipairs(mw.text.split(somelist, '+')) do
+
else
for k2, v2 in ipairs(mw.text.split(v1 .. '\\', '\\')) do
+
sep = ' '
if k2 > 4 then break
+
end
elseif k2 == 1 then
+
for i2, v2 in ipairs(tmp) do
if para1 == '' then
+
if i2 < 5 then
para1_1 = v2
+
if i2 == 1 then
else sep = ' '
+
args[i2] = (string.find((v2 or ''), '^%s*$') and default or v2)
end
 
if v2 == nil or v2 == '' then
 
para1 = para1_1
 
para1_empty = true
 
else
 
para1 = v2
 
para1_empty = false
 
end
 
elseif k2 == 2 then
 
if v2 == nil or v2 == '' then
 
para2 = nil
 
else
 
para2 = v2
 
end
 
elseif k2 == 3 then
 
if v2 == nil or v2 == '' then
 
para3 = nil
 
 
else
 
else
para3 = v2
+
args[i2] = (string.find((v2 or ''), '^%s*$') and nil or v2)
 
end
 
end
elseif k2 == 4 then
 
if v2 == nil or v2 == '' then
 
para4 = nil
 
else
 
para4 = v2
 
end
 
if para1_empty == true and para2 == nil then
 
else result = result .. sep .. frame:expandTemplate{ title = 'Rail-interchange', args = { para1, para2, para3, para4 } }
 
 
end
 
end
 +
end
 +
if args[1] or args[2] then
 +
result = result .. sep .. frame:expandTemplate{ title = 'Rail-interchange', args = args }
 
end
 
end
 
end
 
end
 
end
 
end
if div == 'yes' or div == 'y' then result = '<div style="display: table-cell; vertical-align: middle; padding-left: 3px; white-space: nowrap;">' .. result .. '</div>'
+
if div == 'yes' or div == 'y' then result = '<div style="display:table-cell;vertical-align:middle;padding-left:3px;white-space:nowrap">' .. result .. '</div>' end
end
 
 
return result
 
return result
 
end
 
end
  
 
function p.doublerow(frame)
 
function p.doublerow(frame)
local somelist = frame.args[1]
+
local data = frame.args[1]
local result, para1, para2, para3, para4, para1_1, para1_empty, sep
+
local result, sep, default = '', ''
result = ''
+
local args = {}
para1 = ''
+
local sep_code = {
para2 = ''
+
[0] = '<br/>',
para3 = ''
+
[1] = '</div><div style="display:table-cell;vertical-align:middle;padding-left:3px;white-space:nowrap">'
para4 = ''
+
}
para1_1 = ''
+
data = mw.text.split(data, '+')
para1_empty = false
+
for i1, v1 in ipairs(data) do
sep = ''
+
args = {}
for k1, v1 in ipairs(mw.text.split(somelist, '+')) do
+
if v1 ~= '' and v1 ~= '\\' then
for k2, v2 in ipairs(mw.text.split(v1 .. '\\', '\\')) do
+
local tmp = mw.text.split(v1, '\\')
if k2 > 4 then break
+
if i1 == 1 then
elseif k2 == 1 then
+
default = tmp[1]
if para1 == '' then
+
else
para1 = v2
+
sep = sep_code[i1 % 2]
para1_1 = v2
+
end
 +
for i2, v2 in ipairs(tmp) do
 +
if i2 < 5 then
 +
if i2 == 1 then
 +
args[i2] = (string.find((v2 or ''), '^%s*$') and default or v2)
 
else
 
else
if v2 == nil or v2 == '' then
+
args[i2] = (string.find((v2 or ''), '^%s*$') and nil or v2)
para1 = para1_1
 
para1_empty = true
 
else
 
para1 = v2
 
para1_empty = false
 
end
 
if (k1 % 2 == 1) then sep = '</div><div style="display: table-cell; vertical-align: middle; padding-left: 3px; white-space: nowrap;">'
 
else sep = '<br/>'
 
end
 
 
end
 
end
elseif k2 == 2 then
 
if v2 == nil or v2 == '' then
 
para2 = nil
 
else
 
para2 = v2
 
end
 
elseif k2 == 3 then
 
if v2 == nil or v2 == '' then
 
para3 = nil
 
else
 
para3 = v2
 
end
 
elseif k2 == 4 then
 
if v2 == nil or v2 == '' then
 
para4 = nil
 
else
 
para4 = v2
 
end
 
if para1_empty == true and para2 == nil then result = result .. sep
 
else result = result .. sep .. frame:expandTemplate{ title = 'Rail-interchange', args = { para1, para2, para3, para4 } }
 
 
end
 
end
 +
end
 +
if args[1] or args[2] then
 +
result = result .. sep .. frame:expandTemplate{ title = 'Rail-interchange', args = args }
 
end
 
end
 
end
 
end
 
end
 
end
result = '<div style="display: table-cell; vertical-align: middle; padding-left: 3px; white-space: nowrap;">' .. result .. '</div>'
+
result = '<div style="display:table-cell;vertical-align:middle;padding-left:3px;white-space:nowrap">' .. result .. '</div>'
 
return result
 
return result
 
end
 
end
+
 
 
return p
 
return p

Latest revision as of 08:30, 27 September 2020

This module displays multiple transclusions of {{Rail-interchange}} (or {{rint}}).

Usage

This module only takes one numbered parameter and one named parameter |div=. Each transclusion of {{rint}} is separated by a plus sign +, and there is a backslash \ between each (up to 4) parameter of each symbol. If the first parameter of an icon is the same as the first parameter of the first icon (and it takes more than one parameter) then it can be omitted.

If only two parameters are passed for a symbol, add a backslash after the second parameter (two if only one parameter is passed); otherwise, the template will not work.

One row of icons

If |div=yes then a <div> tag will be wrapped around the symbols.

{{#invoke:Rail-interchange multi|row|div=...|location1\symbol1\+location2\symbol2\+...}}

Two rows of icons (with <div> tags)

|div= does not do anything here, as the display is reliant upon using <div> tags.

{{#invoke:Rail-interchange multi|doublerow|location1\symbol1\+location2\symbol2\+location3\symbol3\+location4\symbol4\+...}}

Examples

Script error: No such module "Template:PAGENAMETDOC". {{#invoke:Rail-interchange multi|row|paris\m\1+\r\b+\t\3+\i\n}} (equivalent to {{rint|paris|m|1}} {{rint|paris|r|b}} {{rint|paris|t|3}} {{rint|paris|i|n}})

Script error: No such module "Template:PAGENAMETDOC". {{#invoke:Rail-interchange multi|doublerow|paris\m\1+\r\b+\t\3+\i\n}}


local p = {}

function p.row(frame)
	local data = frame.args[1]
	local div = frame.args['div']
	local result, sep, default = '', ''
	local args = {}
	data = mw.text.split(data, '+')
	for i1, v1 in ipairs(data) do
		args = {}
		if v1 ~= '' and v1 ~= '\\' then
			local tmp = mw.text.split(v1, '\\')
			if i1 == 1 then
				default = tmp[1]
			else
				sep = ' '
			end
			for i2, v2 in ipairs(tmp) do
				if i2 < 5 then
					if i2 == 1 then
						args[i2] = (string.find((v2 or ''), '^%s*$') and default or v2)
					else
						args[i2] = (string.find((v2 or ''), '^%s*$') and nil or v2)
					end
				end
			end
			if args[1] or args[2] then
				result = result .. sep .. frame:expandTemplate{ title = 'Rail-interchange', args = args }
			end
		end
	end
	if div == 'yes' or div == 'y' then result = '<div style="display:table-cell;vertical-align:middle;padding-left:3px;white-space:nowrap">' .. result .. '</div>' end
	return result
end

function p.doublerow(frame)
	local data = frame.args[1]
	local result, sep, default = '', ''
	local args = {}
	local sep_code = {
		[0] = '<br/>',
		[1] = '</div><div style="display:table-cell;vertical-align:middle;padding-left:3px;white-space:nowrap">'
	}
	data = mw.text.split(data, '+')
	for i1, v1 in ipairs(data) do
		args = {}
		if v1 ~= '' and v1 ~= '\\' then
			local tmp = mw.text.split(v1, '\\')
			if i1 == 1 then
				default = tmp[1]
			else
				sep = sep_code[i1 % 2]
			end
			for i2, v2 in ipairs(tmp) do
				if i2 < 5 then
					if i2 == 1 then
						args[i2] = (string.find((v2 or ''), '^%s*$') and default or v2)
					else
						args[i2] = (string.find((v2 or ''), '^%s*$') and nil or v2)
					end
				end
			end
			if args[1] or args[2] then
				result = result .. sep .. frame:expandTemplate{ title = 'Rail-interchange', args = args }
			end
		end
	end
	result = '<div style="display:table-cell;vertical-align:middle;padding-left:3px;white-space:nowrap">' .. result .. '</div>'
	return result
end

return p