更多操作
删除的内容 添加的内容
无编辑摘要 |
小 更改debug模式 |
||
(未显示同一用户的4个中间版本) | |||
第3行: | 第3行: | ||
function getArg(args, key, default) |
function getArg(args, key, default) |
||
local val = args[key] |
local val = args[key] |
||
if(val == nil or #val == 0 or val == "{{{" .. key .. "}}}") then |
if (val == nil or #val == 0 or val == "{{{" .. key .. "}}}") then |
||
return default |
return default |
||
else |
else |
||
return val |
return val |
||
end |
end |
||
end |
|||
function p.filterValue(names, values) |
|||
-- 变换数据 |
|||
local newLines = {} |
|||
⚫ | |||
table.insert(newLines, "," .. names) |
|||
end |
|||
local oldLines = mw.text.gsplit(values, "\n") |
|||
for line in oldLines do |
|||
if (line ~= "") then |
|||
table.insert(newLines, line) |
|||
end |
|||
end |
|||
return mw.text.listToText(newLines, '\n', '\n') |
|||
end |
end |
||
第13行: | 第30行: | ||
local size = getArg(frame.args, "size", "320x300") |
local size = getArg(frame.args, "size", "320x300") |
||
local max = getArg(frame.args, "max", "5") |
local max = getArg(frame.args, "max", "5") |
||
local names = getArg(frame.args, "names", " |
local names = getArg(frame.args, "names", "") |
||
local float = getArg(frame.args, "float") |
local float = getArg(frame.args, "float") |
||
local values = getArg(frame.args, "values", "") |
local values = getArg(frame.args, "values", "") |
||
local legend = getArg(frame.args, "legend") |
local legend = getArg(frame.args, "legend", "right") |
||
local isDebug = getArg(frame.args, "debug") |
|||
local html = "" |
local html = "" |
||
if(float ~= nil and float ~= "center") then |
if (float ~= nil and float ~= "center") then |
||
html = html .. "<div class=\"float" .. float .. "\">" |
html = html .. "<div class=\"float" .. float .. "\">" |
||
end |
end |
||
第28行: | 第46行: | ||
filled = "", |
filled = "", |
||
striped = "", |
striped = "", |
||
legend = legend, |
|||
} |
} |
||
if(legend == "true" or legend == "1") then |
if (legend == "true" or legend == "1") then |
||
attributes["legend"] = "" |
attributes["legend"] = "right" |
||
end |
end |
||
-- 变换数据 |
|||
⚫ | |||
local fullValue = p.filterValue(names, values) |
|||
⚫ | |||
⚫ | |||
if (isDebug ~= "true") then |
|||
html = html .. |
|||
frame:extensionTag("pRadar", fullValue, attributes) |
|||
else |
|||
html = html .. "pChart Debug: " |
|||
⚫ | |||
⚫ | |||
⚫ | |||
if (#value ~= 0) then |
|||
⚫ | |||
end |
|||
end |
end |
||
html = html .. ">\n" |
|||
html = html .. fullValue .. "\n" |
|||
html = html .. "</pRadar>" |
|||
end |
end |
||
if (float ~= nil and float ~= "center") then |
|||
⚫ | |||
⚫ | |||
html = html .. "</div>" |
html = html .. "</div>" |
||
end |
end |
2022年4月23日 (六) 14:39的最新版本
此模块的文档可以在模块:PChart/doc创建
local p = {}
function getArg(args, key, default)
local val = args[key]
if (val == nil or #val == 0 or val == "{{{" .. key .. "}}}") then
return default
else
return val
end
end
function p.filterValue(names, values)
-- 变换数据
local newLines = {}
if (names ~= nil and names ~= "") then
table.insert(newLines, "," .. names)
end
local oldLines = mw.text.gsplit(values, "\n")
for line in oldLines do
if (line ~= "") then
table.insert(newLines, line)
end
end
return mw.text.listToText(newLines, '\n', '\n')
end
function p.radar(frame)
local size = getArg(frame.args, "size", "320x300")
local max = getArg(frame.args, "max", "5")
local names = getArg(frame.args, "names", "")
local float = getArg(frame.args, "float")
local values = getArg(frame.args, "values", "")
local legend = getArg(frame.args, "legend", "right")
local isDebug = getArg(frame.args, "debug")
local html = ""
if (float ~= nil and float ~= "center") then
html = html .. "<div class=\"float" .. float .. "\">"
end
local attributes = {
size = size,
ymax = max,
filled = "",
striped = "",
legend = legend,
}
if (legend == "true" or legend == "1") then
attributes["legend"] = "right"
end
-- 变换数据
local fullValue = p.filterValue(names, values)
if (isDebug ~= "true") then
html = html ..
frame:extensionTag("pRadar", fullValue, attributes)
else
html = html .. "pChart Debug: "
html = html .. "<pRadar"
for key, value in pairs(attributes) do
html = html .. " " .. key
if (#value ~= 0) then
html = html .. "=" .. value
end
end
html = html .. ">\n"
html = html .. fullValue .. "\n"
html = html .. "</pRadar>"
end
if (float ~= nil and float ~= "center") then
html = html .. "</div>"
end
return html
end
return p