Difference between revisions of "Module:For nowiki/sandbox"
Jump to navigation
Jump to search
blackwiki>Pppery (Sync) |
blackwiki>Pppery (Rewrite hooking for less duplicate code) |
||
| Line 1: | Line 1: | ||
local p = {} | local p = {} | ||
| − | local function doLoop(frame, | + | local function doLoop(frame, values, config, offset, argstosub) |
| + | local code | ||
| + | if config.code then | ||
| + | offset = offset or 1 | ||
| + | code = config.code | ||
| + | else | ||
| + | offset = offset or 2 | ||
| + | code = config[2] | ||
| + | end | ||
| + | |||
local result = {} | local result = {} | ||
code = mw.text.unstripNoWiki(code) | code = mw.text.unstripNoWiki(code) | ||
| Line 17: | Line 26: | ||
function p.main(frame) | function p.main(frame) | ||
local args = frame:getParent().args | local args = frame:getParent().args | ||
| − | |||
| − | |||
| − | |||
local argstosub = {} | local argstosub = {} | ||
for key, value in pairs(args) do | for key, value in pairs(args) do | ||
| − | if not tonumber(key) and key ~= "i" and key ~= "count" then | + | if not tonumber(key) and key ~= "i" and key ~= "count" and key ~= "code" then |
argstosub[key] = value | argstosub[key] = value | ||
end | end | ||
| Line 29: | Line 35: | ||
if countArg then | if countArg then | ||
offset = 0 | offset = 0 | ||
| − | + | values = {} | |
for i = 1, countArg do | for i = 1, countArg do | ||
| − | + | values[i] = i | |
end | end | ||
| + | else | ||
| + | values = args | ||
end | end | ||
| − | return doLoop(frame, args, | + | return doLoop(frame, values, frame.args, nil, argstosub) |
end | end | ||
function p.template(frame) | function p.template(frame) | ||
| − | |||
| − | |||
local offset = tonumber(frame.args.offset) or 0 | local offset = tonumber(frame.args.offset) or 0 | ||
| − | return doLoop(frame:getParent(), frame:getParent().args, | + | return doLoop(frame:getParent(), frame:getParent().args, frame.args, offset, {}) |
end | end | ||
return p | return p | ||
Revision as of 21:15, 14 October 2018
Documentation for this module may be created at Module:For nowiki/sandbox/doc
local p = {}
local function doLoop(frame, values, config, offset, argstosub)
local code
if config.code then
offset = offset or 1
code = config.code
else
offset = offset or 2
code = config[2]
end
local result = {}
code = mw.text.unstripNoWiki(code)
for i, value in ipairs(args) do
if i > offset then
argstosub["i"] = i - offset
argstosub["1"] = value
local actualCode = code:gsub("{{{([^{}|]*)|?[^{}]*}}}", argstosub)
table.insert(result, frame:preprocess(actualCode))
end
end
return table.concat(result, sep)
end
function p.main(frame)
local args = frame:getParent().args
local argstosub = {}
for key, value in pairs(args) do
if not tonumber(key) and key ~= "i" and key ~= "count" and key ~= "code" then
argstosub[key] = value
end
end
local countArg = args.count and tonumber(args.count);
if countArg then
offset = 0
values = {}
for i = 1, countArg do
values[i] = i
end
else
values = args
end
return doLoop(frame, values, frame.args, nil, argstosub)
end
function p.template(frame)
local offset = tonumber(frame.args.offset) or 0
return doLoop(frame:getParent(), frame:getParent().args, frame.args, offset, {})
end
return p