(replace match with mw.text.trim) |
No edit summary |
||
Line 51: | Line 51: | ||
local id = args[1] | local id = args[1] | ||
if id == nil then | if id == nil then | ||
error('1st unnamed param must be move id') | |||
end | end | ||
id = mw.text.trim(id) -- whitespace is stripped only from named params | id = mw.text.trim(id) -- whitespace is stripped only from named params | ||
Line 57: | Line 57: | ||
local result = cargo.query(tables, p.fields, { where = "id = '" .. id .. "'" })[1] | local result = cargo.query(tables, p.fields, { where = "id = '" .. id .. "'" })[1] | ||
if result == nil then | if result == nil then | ||
error("move with id = '" .. id .. "' not found") | |||
end | end | ||
Revision as of 16:00, 24 August 2023
Documentation for this module may be created at Module:Move7/doc
local p = {};
local cargo = mw.ext.cargo
local tables = 'MoveDataCargoTest'
p.fields = 'id,name,input,target,damage,reach,tracksLeft,tracksRight,startup,recv,tot,crush,block,hit,ch,notes'
p.display = function(frame)
local function appendFrom(dst, src)
for k, v in pairs(src) do
dst[k] = v
end
end
local function getLeads(parentId)
local leads = {}
while (parentId ~= nil and parentId ~= '') do
local parent = cargo.query(tables, 'input,target,damage,parent', { where = "id='" .. parentId .. "'" })[1]
if parent == nil then
error('Error: parent = "' .. parentId .. '" not found')
end
parentId = parent['parent']
parent['parent'] = nil
for k, v in pairs(parent) do
local leadName = k .. 'Lead'
if leads[leadName] == nil then
leads[leadName] = ''
end
leads[leadName] = v .. leads[leadName]
end
end
return leads
end
local leads = getLeads(frame:getParent().args['parent'])
if next(leads) == nil then
return frame:expandTemplate{ title = 'MoveData', args = frame:getParent().args }
end
local args = {}
appendFrom(args, frame:getParent().args)
appendFrom(args, leads)
return frame:expandTemplate{ title = 'MoveData', args = args }
end
p.query = function(frame)
local args = frame:getParent().args
local id = args[1]
if id == nil then
error('1st unnamed param must be move id')
end
id = mw.text.trim(id) -- whitespace is stripped only from named params
local result = cargo.query(tables, p.fields, { where = "id = '" .. id .. "'" })[1]
if result == nil then
error("move with id = '" .. id .. "' not found")
end
for k, v in pairs(result) do
local override = args[k]
if override ~= nil then
result[k] = override
end
end
return frame:expandTemplate{ title = 'MoveDataCargoTest/Display', args = result }
end
return p