MCBBS Wiki欢迎您共同参与编辑!在参与编辑之前请先阅读Wiki方针。
如果在编辑的过程中遇到了什么问题,可以去讨论板提问。
为了您能够无阻碍地参与编辑 未验证/绑定过邮箱的用户,请尽快绑定/验证。
MCBBS Wiki GitHub群组已上线!
您可以在回声洞中发表吐槽!
服务器状态监控。点击进入
本站由MCBBS用户自行搭建,与MCBBS及东银河系漫游指南(北京)科技有限公司没有从属关系。点此了解 MCBBS Wiki 不是什么>>
模块:Navbox
可在模块:Navbox/doc创建此模块的帮助文档
local p = {}
local function wvar(frame,arg,def)
if(frame.args[arg]) then
return frame.args[arg]
else
return def
end
end
local function wif(arg,a,b)
if(arg) then
return a
else
return b
end
end
local function wifeq(x,y,a,b)
if(x==y) then
return a
else
return b
end
end
local function switchstate(frame)
local state=wvar(frame,'state','')
if (state==plain or state==off) then
return ''
else
return 'mw-collapsible '
.. wif(wvar(frame,'state',''),state,'autocollapse')
end
end
local function border(frame)
local arg=wvar(frame,'border',wvar(frame,1,''))
if(arg=="subgroup" or arg=="child")
then
return "</div>"
elseif(arg=="none")
then
return ""
else
return '<table class="navbox '
.. wvar(frame,'class','')
.. '" cellspacing="0" style="'
.. wvar(frame,'bodystyle','')
..';'
.. wvar(frame,'style','')
.. '"><tr><td style="padding:2px;">'
end
end
local function switchborder(frame)
local border=wvar(frame,'border',wvar(frame,1,''))
if(border == 'subgroup' or border == 'child' or border == 'none') then
return 'navbox-subgroup" style="display:table;width:100%;'
.. wvar(frame,'bodystyle','')
.. ';'
.. wvar(frame,'style','')
else
return ' style="display:table;width:100%;background:transparent;color:inherit'
end
end
-- '<table cellspacing="0" class="nowraplinks {{#if:{{{title|}}}|{{#switch:{{{state|}}}|plain|off=|#default=mw-collapsible {{#if:{{{state|}}}|{{{state}}}|autocollapse}}}}}} {{#switch:{{{border|{{{1|}}}}}}|subgroup|child|none=navbox-subgroup" style="display:table;width:100%;{{{bodystyle|}}};{{{style|}}}|#default=" style="display:table;width:100%;background:transparent;color:inherit}};{{{innerstyle|}}};">'
local function tablestart(frame)
return '<table cellspacing="0" class="nowraplinks '
.. wif(wvar(frame,'title',''),switchstate(frame),'')
.. ' '
.. switchborder(frame)
.. wvar(frame,'innerstyle','')
end
function p.navbox(frame)
mw.logObject(mw.dumpObject(frame.args))
return border(frame) .. tablestart(frame)
end
return p