“模块:设定页v2”的版本间的差异
跳到导航
跳到搜索
(未显示同一用户的39个中间版本) | |||
第2行: | 第2行: | ||
local PageName = require("Module:PageName") | local PageName = require("Module:PageName") | ||
local p = {} | local p = {} | ||
+ | |||
+ | function p.display_title(frame) | ||
+ | local pagename = mw.title.getCurrentTitle().text | ||
+ | local node = mw.html.create(nil) | ||
+ | local type_flag, group_name, page_name | ||
+ | local parent, name | ||
+ | base, sub = PageName.split(pagename) | ||
+ | if base then | ||
+ | node:wikitext(sub) | ||
+ | node:tag("span"):addClass("ifw-basepagename"):wikitext(" ("..base..")") | ||
+ | else | ||
+ | node:wikitext(page_name) | ||
+ | end | ||
+ | local code = node:done() | ||
+ | return code | ||
+ | end | ||
function renderMaintainers(frame, maintainers, other_creators) | function renderMaintainers(frame, maintainers, other_creators) | ||
local node = mw.html.create(nil) | local node = mw.html.create(nil) | ||
− | + | local content = "" | |
+ | content = content .. "创作者: " | ||
+ | local l = {} | ||
+ | local il = 1 | ||
for i, m in ipairs(maintainers) do | for i, m in ipairs(maintainers) do | ||
− | + | local n = m:match("^用户:(.+)$") | |
− | + | local s = "" | |
− | + | s = s .. "[[用户:"..n.."|"..n.."]]" | |
+ | s = s .. "[[Category:由"..n.."维护的条目]]" | ||
+ | s = s .. "[[Category:由"..n.."创作的条目]]" | ||
+ | l[il] = s | ||
+ | il = il + 1 | ||
mw.smw.set({ | mw.smw.set({ | ||
− | ['Editable by user'] = 'User:'.. | + | ['Editable by user'] = 'User:'..n |
}) | }) | ||
end | end | ||
for i, m in ipairs(other_creators) do | for i, m in ipairs(other_creators) do | ||
− | + | local n = m:match("^创作者:(.+)$") | |
− | + | local s = "" | |
+ | s = s .. "[[创作者:"..n.."|"..n.."]]" | ||
+ | s = s .. "[[Category:由"..n.."创作的条目]]" | ||
+ | l[il] = s | ||
+ | il = il + 1 | ||
end | end | ||
− | + | content = content .. mw.text.listToText(l) | |
− | local args = {image = 'Copyright.svg', content = | + | local args = {image = 'Copyright.svg', content = content} |
return frame:expandTemplate{title = "LiteInfoBox", args = args} | return frame:expandTemplate{title = "LiteInfoBox", args = args} | ||
end | end | ||
第28行: | 第55行: | ||
}) | }) | ||
return frame:expandTemplate{title = "本页面仅允许维护者编辑", args = {}} | return frame:expandTemplate{title = "本页面仅允许维护者编辑", args = {}} | ||
+ | end | ||
+ | |||
+ | function renderLiteInfoBox(frame, image, content) | ||
+ | local args = { | ||
+ | image = image, | ||
+ | content = content | ||
+ | } | ||
+ | return frame:expandTemplate{title = "LiteInfoBox", args = args} | ||
+ | end | ||
+ | |||
+ | function renderStage(frame, stage) | ||
+ | return frame:expandTemplate{title = "创作阶段", args = {["创作阶段"]=stage}} | ||
+ | end | ||
+ | |||
+ | function getParentProps(base, props) | ||
+ | return SMWUtils.query_page_properties("[["..base.."]]", props)[1]["properties"] | ||
+ | end | ||
+ | |||
+ | function renderType(frame, isIndexPage, type, relGroup) | ||
+ | local pagename = PageName.getPageName() | ||
+ | local parent, name | ||
+ | base, sub = PageName.split(pagename) | ||
+ | local out = "" | ||
+ | if isIndexPage or not base then | ||
+ | mw.smw.set({['设定集'] = pagename}) | ||
+ | if type == "世界观设定" then | ||
+ | mw.smw.set({['设定类型'] = "世界观设定"}) | ||
+ | out = out .. (renderLiteInfoBox(frame, "WorldItem.svg", "世界观介绍页")) | ||
+ | out = out .. "[[Category:世界观介绍页]]" | ||
+ | out = out .. "[[Category:世界观设定]]" | ||
+ | elseif type == "联动设定" then | ||
+ | local text = "" | ||
+ | out = out .. (renderLiteInfoBox(frame, "联动.svg", "联动介绍页")) | ||
+ | mw.smw.set({['设定类型'] = "联动设定"}) | ||
+ | out = out .. "[[Category:联动介绍页]]" | ||
+ | out = out .. "[[Category:联动设定]]" | ||
+ | elseif type == "公共设定" then | ||
+ | out = out .. (renderLiteInfoBox(frame, "SharedItem.svg", "公共设定页")) | ||
+ | mw.smw.set({['设定类型'] = "公共设定"}) | ||
+ | out = out .. "[[Category:公共设定]]" | ||
+ | else -- 共享文档页 | ||
+ | out = out .. (renderLiteInfoBox(frame, "SharedItem.svg", "共享资源页")) | ||
+ | mw.smw.set({['设定类型'] = "共享资源"}) | ||
+ | out = out .. "[[Category:共享资源]]" | ||
+ | end | ||
+ | else -- base must exist | ||
+ | local parent = getParentProps(base, {"设定集", "设定类型"}) | ||
+ | local parentGroup = parent["设定集"][1] | ||
+ | if parentGroup then | ||
+ | mw.smw.set({['设定集'] = parentGroup}) | ||
+ | end | ||
+ | local parentType = parent["设定类型"][1] or "公共设定" | ||
+ | mw.smw.set({['设定类型'] = parentType}) | ||
+ | if parentType == "世界观设定" then | ||
+ | out = out .. (renderLiteInfoBox(frame, "WorldItem.svg", "本页面属于世界观: [[" .. base .. "]]")) | ||
+ | out = out .. "[[Category:世界观设定]]" | ||
+ | elseif parentType == "联动设定" then | ||
+ | local text = "" | ||
+ | out = out .. (renderLiteInfoBox(frame, "联动.svg", "本页面属于联动: [["..base.."]]")) | ||
+ | out = out .. "[[Category:联动设定]]" | ||
+ | else -- 公共设定 | ||
+ | out = out .. (renderLiteInfoBox(frame, "SharedItem.svg", "公共设定页")) | ||
+ | out = out .. "[[Category:公共设定]]" | ||
+ | end | ||
+ | end | ||
+ | return out | ||
+ | end | ||
+ | |||
+ | -- function p.test() | ||
+ | -- mw.logObject(getParentProps("测试设定", {"设定集", "设定类型"})) | ||
+ | -- end | ||
+ | |||
+ | function renderEditButton(frame) | ||
+ | local title = PageName.getPageName() | ||
+ | local args = { | ||
+ | image = 'Settings.svg', | ||
+ | link = 'https://wiki.ifworlds.org/wiki/特殊:编辑表格/设定页v2/'..title | ||
+ | } | ||
+ | return frame:expandTemplate{title = "LinkButtonBox", args = args} | ||
end | end | ||
function p.renderCreator(frame) | function p.renderCreator(frame) | ||
+ | local root = mw.html.create("div") | ||
local title = PageName.getPageName() | local title = PageName.getPageName() | ||
− | local prop_names = {"维护者", "创作者", " | + | local prop_names = {"维护者", "创作者", "输入设定类型", "设定集核心页", "依赖设定集", "仅允许维护者编辑", "创作阶段", "上级概念", "前置条件", "事后效果"} |
− | local | + | local page = SMWUtils.query_page_properties("[["..title.."]]", prop_names)[1] |
− | + | if page == nil then | |
− | + | return root:done() | |
− | if | ||
− | |||
end | end | ||
+ | local props = page["properties"] | ||
+ | root:attr("style", "display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, auto)); width: 100%") | ||
+ | local maintainerTemp = renderMaintainers(frame, props["维护者"], props["创作者"]) | ||
+ | |||
+ | root:wikitext(maintainerTemp) | ||
+ | if props["仅允许维护者编辑"][1] == "t" then | ||
+ | root:wikitext(renderLockedPage(frame)) | ||
+ | end | ||
+ | local isIndexPage = props["设定集核心页"][1] == 't' | ||
+ | local typeNode = renderType(frame, isIndexPage, props["输入设定类型"][1] or "公共设定", props["依赖设定集"]) | ||
+ | root:wikitext(typeNode) | ||
+ | local stage = frame.args["创作阶段"] or "空白" | ||
+ | root:wikitext(renderStage(frame, stage)) | ||
+ | |||
+ | |||
+ | root:wikitext(renderEditButton(frame)) | ||
return root:done() | return root:done() | ||
end | end | ||
+ | |||
+ | |||
return p | return p |
2023年10月21日 (六) 02:04的最新版本
此模块的文档可以在模块:设定页v2/doc创建
local SMWUtils = require("Module:SMWUtils") local PageName = require("Module:PageName") local p = {} function p.display_title(frame) local pagename = mw.title.getCurrentTitle().text local node = mw.html.create(nil) local type_flag, group_name, page_name local parent, name base, sub = PageName.split(pagename) if base then node:wikitext(sub) node:tag("span"):addClass("ifw-basepagename"):wikitext(" ("..base..")") else node:wikitext(page_name) end local code = node:done() return code end function renderMaintainers(frame, maintainers, other_creators) local node = mw.html.create(nil) local content = "" content = content .. "创作者: " local l = {} local il = 1 for i, m in ipairs(maintainers) do local n = m:match("^用户:(.+)$") local s = "" s = s .. "[[用户:"..n.."|"..n.."]]" s = s .. "[[Category:由"..n.."维护的条目]]" s = s .. "[[Category:由"..n.."创作的条目]]" l[il] = s il = il + 1 mw.smw.set({ ['Editable by user'] = 'User:'..n }) end for i, m in ipairs(other_creators) do local n = m:match("^创作者:(.+)$") local s = "" s = s .. "[[创作者:"..n.."|"..n.."]]" s = s .. "[[Category:由"..n.."创作的条目]]" l[il] = s il = il + 1 end content = content .. mw.text.listToText(l) local args = {image = 'Copyright.svg', content = content} return frame:expandTemplate{title = "LiteInfoBox", args = args} end function renderLockedPage(frame) mw.smw.set({ ['Editable by'] = 'whitelist' }) return frame:expandTemplate{title = "本页面仅允许维护者编辑", args = {}} end function renderLiteInfoBox(frame, image, content) local args = { image = image, content = content } return frame:expandTemplate{title = "LiteInfoBox", args = args} end function renderStage(frame, stage) return frame:expandTemplate{title = "创作阶段", args = {["创作阶段"]=stage}} end function getParentProps(base, props) return SMWUtils.query_page_properties("[["..base.."]]", props)[1]["properties"] end function renderType(frame, isIndexPage, type, relGroup) local pagename = PageName.getPageName() local parent, name base, sub = PageName.split(pagename) local out = "" if isIndexPage or not base then mw.smw.set({['设定集'] = pagename}) if type == "世界观设定" then mw.smw.set({['设定类型'] = "世界观设定"}) out = out .. (renderLiteInfoBox(frame, "WorldItem.svg", "世界观介绍页")) out = out .. "[[Category:世界观介绍页]]" out = out .. "[[Category:世界观设定]]" elseif type == "联动设定" then local text = "" out = out .. (renderLiteInfoBox(frame, "联动.svg", "联动介绍页")) mw.smw.set({['设定类型'] = "联动设定"}) out = out .. "[[Category:联动介绍页]]" out = out .. "[[Category:联动设定]]" elseif type == "公共设定" then out = out .. (renderLiteInfoBox(frame, "SharedItem.svg", "公共设定页")) mw.smw.set({['设定类型'] = "公共设定"}) out = out .. "[[Category:公共设定]]" else -- 共享文档页 out = out .. (renderLiteInfoBox(frame, "SharedItem.svg", "共享资源页")) mw.smw.set({['设定类型'] = "共享资源"}) out = out .. "[[Category:共享资源]]" end else -- base must exist local parent = getParentProps(base, {"设定集", "设定类型"}) local parentGroup = parent["设定集"][1] if parentGroup then mw.smw.set({['设定集'] = parentGroup}) end local parentType = parent["设定类型"][1] or "公共设定" mw.smw.set({['设定类型'] = parentType}) if parentType == "世界观设定" then out = out .. (renderLiteInfoBox(frame, "WorldItem.svg", "本页面属于世界观: [[" .. base .. "]]")) out = out .. "[[Category:世界观设定]]" elseif parentType == "联动设定" then local text = "" out = out .. (renderLiteInfoBox(frame, "联动.svg", "本页面属于联动: [["..base.."]]")) out = out .. "[[Category:联动设定]]" else -- 公共设定 out = out .. (renderLiteInfoBox(frame, "SharedItem.svg", "公共设定页")) out = out .. "[[Category:公共设定]]" end end return out end -- function p.test() -- mw.logObject(getParentProps("测试设定", {"设定集", "设定类型"})) -- end function renderEditButton(frame) local title = PageName.getPageName() local args = { image = 'Settings.svg', link = 'https://wiki.ifworlds.org/wiki/特殊:编辑表格/设定页v2/'..title } return frame:expandTemplate{title = "LinkButtonBox", args = args} end function p.renderCreator(frame) local root = mw.html.create("div") local title = PageName.getPageName() local prop_names = {"维护者", "创作者", "输入设定类型", "设定集核心页", "依赖设定集", "仅允许维护者编辑", "创作阶段", "上级概念", "前置条件", "事后效果"} local page = SMWUtils.query_page_properties("[["..title.."]]", prop_names)[1] if page == nil then return root:done() end local props = page["properties"] root:attr("style", "display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, auto)); width: 100%") local maintainerTemp = renderMaintainers(frame, props["维护者"], props["创作者"]) root:wikitext(maintainerTemp) if props["仅允许维护者编辑"][1] == "t" then root:wikitext(renderLockedPage(frame)) end local isIndexPage = props["设定集核心页"][1] == 't' local typeNode = renderType(frame, isIndexPage, props["输入设定类型"][1] or "公共设定", props["依赖设定集"]) root:wikitext(typeNode) local stage = frame.args["创作阶段"] or "空白" root:wikitext(renderStage(frame, stage)) root:wikitext(renderEditButton(frame)) return root:done() end return p