打开/关闭菜单
切换首选项菜单
打开/关闭个人菜单
未登录
未登录用户的IP地址会在进行任意编辑后公开展示。

模块:PChart:修订间差异

来自异世界百科
删除的内容 添加的内容
落雨枫留言 | 贡献
增加debug模式
落雨枫留言 | 贡献
更改debug模式
 
(未显示同一用户的7个中间版本)
第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 = {}
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
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", "Data")
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") == true
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
第29行: 第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
-- 变换数据
if(not isDebug) then
local fullValue = p.filterValue(names, values)
if (isDebug ~= "true") then
html = html ..
html = html ..
frame:extensionTag("pRadar", "," .. names .. "\n" .. values, attributes)
frame:extensionTag("pRadar", fullValue, attributes)
else
else
html = html .. "pChart Debug: "
html = html .. "<pRadar"
html = html .. "<pRadar"
for key, value in pairs(attributes) do
for key, value in pairs(attributes) do
html = html .. " " .. key
html = html .. " " .. key
if(#value ~= 0) then
if (#value ~= 0) then
html = html .. "=" .. value
html = html .. "=" .. value
end
end
end
end
html = html .. " />"
html = html .. ">\n"
html = html .. fullValue .. "\n"
html = html .. "</pRadar>"
end
end
if(float ~= nil and float ~= "center") then
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