←模块:条目创建状态欢迎来到Undertale社区维基(*`∀´*)ノ亻,如果想要参与条目创建或编辑,请先登录哦因为以下原因,您没有权限编辑本页: 您请求的操作仅限属于该用户组的用户执行:用户 您可以查看和复制此页面的源代码。 local p = {} local b = require("Module:Basic") function p.checkExists(frame) local titles = mw.text.split(frame.args[1], ",") local existCount = 0 local totalCount = #titles local width = b.empty(frame.args.width) local height = b.empty(frame.args.height) local left_text = b.empty(frame.args.left_text) local right_text = b.empty(frame.args.right_text) mw.logObject(frame.args) for i, title in ipairs(titles) do local page = mw.title.new(title) if page.exists then existCount = existCount + 1 end end local progress = existCount / totalCount return p.renderProgressBar(progress,width,height,existCount ,totalCount,left_text,right_text) end function p.renderProgressBar(progress,width,height,existCount ,totalCount, left_text, right_text) local bigBar = mw.html.create('div') :css('display', "flex") local progressBar = mw.html.create('div') :css('width', width or totalCount .. "px") :css('height', height or '20px') :css('background-color', '#ff0000') :css('display', 'inline-block') :css('margin-left', '10px') :css('margin-right', '10px') local bar = mw.html.create('div') :css('width', progress * 100 .. '%') :css('height', height or '20px') :css('background-color', '#ffff00') :css('display', 'inline-block') local left_html = mw.html.create('span') :wikitext(right_text or "") local right_html = mw.html.create('span') :css("font-family", "\"ut-hp-font\",\"Determination Mono\"") :css("font-size", "18px") :wikitext(left_text or (existCount .. " / " .. totalCount)) progressBar:node(bar) bigBar:node(left_html) bigBar:node(progressBar) bigBar:node(right_html) return tostring(bigBar) end return p 本页使用的模板: 模块:条目创建状态/doc(查看源代码)返回模块:条目创建状态。