Zeroclanzhang(讨论 | 贡献) 无编辑摘要 |
Zeroclanzhang(讨论 | 贡献) 无编辑摘要 |
||
第50行: | 第50行: | ||
p.cache[cacheKey] = results | p.cache[cacheKey] = results | ||
-- | -- 解析查询结果并添加图标 | ||
local parsedResults = {} | local parsedResults = {} | ||
for | for pageName in string.gmatch(results, 'title="([^"]+)"') do | ||
local | local trimmedPageName = trim(pageName) | ||
local nodeicon = getnodeicon( | local nodeicon = getnodeicon(trimmedPageName, frame) -- 获取页面的nodeicon属性 | ||
local iconMarkup = '' | local iconMarkup = '' | ||
if nodeicon and nodeicon ~= '' then | if nodeicon and nodeicon ~= '' then | ||
iconMarkup = '[[File:' .. mw.text.encode(nodeicon) .. '|20px|link=]] ' | -- 用图标形式展示nodeicon | ||
iconMarkup = '[[File:' .. mw.text.encode(nodeicon) .. '|20px|link=' .. trimmedPageName .. ']] ' | |||
end | end | ||
table.insert(parsedResults, iconMarkup .. | -- 将图标和页面名称结合 | ||
table.insert(parsedResults, iconMarkup .. trimmedPageName) | |||
end | end | ||
2024年1月26日 (五) 23:12的版本
可在模块: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:[[' .. pageName .. ']]|?nodeicon|mainlabel=-}}'
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
-- 解析查询结果并添加图标
local parsedResults = {}
for pageName in string.gmatch(results, 'title="([^"]+)"') do
local trimmedPageName = trim(pageName)
local nodeicon = getnodeicon(trimmedPageName, frame) -- 获取页面的nodeicon属性
local iconMarkup = ''
if nodeicon and nodeicon ~= '' then
-- 用图标形式展示nodeicon
iconMarkup = '[[File:' .. mw.text.encode(nodeicon) .. '|20px|link=' .. trimmedPageName .. ']] '
end
-- 将图标和页面名称结合
table.insert(parsedResults, iconMarkup .. trimmedPageName)
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