Zeroclanzhang(讨论 | 贡献) 无编辑摘要 |
Zeroclanzhang(讨论 | 贡献) 无编辑摘要 |
||
(未显示同一用户的12个中间版本) | |||
第10行: | 第10行: | ||
-- 新增函数用于获取页面的nodeicon属性 | -- 新增函数用于获取页面的nodeicon属性 | ||
local function | local function getnodeicon(pageName, frame) | ||
local ask = '{{#ask:[[' .. pageName .. ']]|? | local ask = '{{#ask:[[nodename::' .. pageName .. ']]|?nodeicon' .. | ||
'|format=list' .. | |||
'|link=all' .. | |||
'|headers=hide' .. | |||
'|searchlabel=' .. | |||
'|class=smwlist' .. | |||
'|sep=,}}' -- 使用逗号作为分隔符 | |||
local result = frame:preprocess(ask) | local result = frame:preprocess(ask) | ||
return trim(result) | return trim(result) | ||
第32行: | 第38行: | ||
local query = '[[Category:' .. mw.text.encode(categoryName) .. ']]' | local query = '[[Category:' .. mw.text.encode(categoryName) .. ']]' | ||
if property and property ~= '' then | if property and property ~= '' then | ||
query = query .. '[[' .. mw.text.encode(property) .. ']]' | query = query .. '[[Has property::' .. mw.text.encode(property) .. ']]' | ||
end | end | ||
第41行: | 第47行: | ||
'|searchlabel=' .. | '|searchlabel=' .. | ||
'|class=smwlist' .. | '|class=smwlist' .. | ||
'|sep=, | '|sep=,}}' -- 使用逗号作为分隔符 | ||
-- 执行查询 | -- 执行查询 | ||
第50行: | 第55行: | ||
p.cache[cacheKey] = results | p.cache[cacheKey] = results | ||
-- | -- 解析查询结果并处理nodeicon | ||
local parsedResults = {} | local parsedResults = {} | ||
for | for pageName in string.gmatch(results, '%[%[(.-)%]%]') do | ||
local | local trimmedPageName = trim(pageName) | ||
local | local nodeicon = getnodeicon(trimmedPageName, frame) -- 获取页面的nodeicon属性 | ||
local | local formattedPageName = nodeicon .. ' [[' .. trimmedPageName .. ']]' | ||
table.insert(parsedResults, formattedPageName) | |||
table.insert(parsedResults, | |||
end | end | ||
第77行: | 第79行: | ||
-- tostring之后进行修剪 | -- tostring之后进行修剪 | ||
local finalHtml = tostring(itemDiv:allDone()) | local finalHtml = tostring(itemDiv:allDone()) | ||
finalHtml = trim(finalHtml) | finalHtml = trim(finalHtml) | ||
2024年1月27日 (六) 01:36的最新版本
可在模块:Navplate SMW row display all/doc创建此模块的帮助文档
-- 自定义的trim函数
local function trim(s)
return (s:gsub("^%s*(.-)%s*$", "%1"))
end
local p = {}
local mw = require('mw')
p.cache = {} -- 初始化缓存
-- 新增函数用于获取页面的nodeicon属性
local function getnodeicon(pageName, frame)
local ask = '{{#ask:[[nodename::' .. pageName .. ']]|?nodeicon' ..
'|format=list' ..
'|link=all' ..
'|headers=hide' ..
'|searchlabel=' ..
'|class=smwlist' ..
'|sep=,}}' -- 使用逗号作为分隔符
local result = frame:preprocess(ask)
return trim(result)
end
function p.navplateSmwRow(frame)
local args = frame:getParent().args
local categoryName = args[1]
local property = args[2]
local text = args[3]
local icon = args[4]
-- 使用缓存结果,减少查询
local cacheKey = categoryName .. (property or '') .. (text or '')
if p.cache[cacheKey] then
return p.cache[cacheKey]
end
-- 构建查询
local query = '[[Category:' .. mw.text.encode(categoryName) .. ']]'
if property and property ~= '' then
query = query .. '[[Has property::' .. mw.text.encode(property) .. ']]'
end
local ask = '{{#ask:' .. query ..
'|format=list' ..
'|link=all' ..
'|headers=hide' ..
'|searchlabel=' ..
'|class=smwlist' ..
'|sep=,}}' -- 使用逗号作为分隔符
-- 执行查询
local results = frame:preprocess(ask)
-- 缓存查询结果
p.cache[cacheKey] = results
-- 解析查询结果并处理nodeicon
local parsedResults = {}
for pageName in string.gmatch(results, '%[%[(.-)%]%]') do
local trimmedPageName = trim(pageName)
local nodeicon = getnodeicon(trimmedPageName, frame) -- 获取页面的nodeicon属性
local formattedPageName = nodeicon .. ' [[' .. trimmedPageName .. ']]'
table.insert(parsedResults, formattedPageName)
end
-- 格式化输出
local itemDiv = mw.html.create('div'):addClass('template-navplate-item')
local metadataAndTextDiv = mw.html.create('div'):addClass('template-navplate-item__label')
local metadata = mw.html.create('span'):addClass('metadata'):wikitext('[[File:' .. mw.text.encode(icon) .. '|20px|link=]] ' .. mw.text.encode(text))
metadataAndTextDiv:node(metadata)
local listDiv = mw.html.create('div'):addClass('template-navplate-item__list'):wikitext(table.concat(parsedResults, ', '))
itemDiv
:node(metadataAndTextDiv)
:node(listDiv)
-- tostring之后进行修剪
local finalHtml = tostring(itemDiv:allDone())
finalHtml = trim(finalHtml)
return finalHtml
end
return p