Zeroclanzhang(讨论 | 贡献) 无编辑摘要 |
Zeroclanzhang(讨论 | 贡献) 无编辑摘要 |
||
第11行: | 第11行: | ||
-- 新增函数用于获取页面的nodeicon属性 | -- 新增函数用于获取页面的nodeicon属性 | ||
local function getnodeicon(pageName, frame) | local function getnodeicon(pageName, frame) | ||
local ask = '{{#ask:[[' .. pageName .. ']]|?nodeicon|mainlabel=-}}' | local ask = '{{#ask:[[' .. pageName .. ']]|?nodeicon|mainlabel=-}}' | ||
local result = frame:preprocess(ask) | local result = frame:preprocess(ask) | ||
第33行: | 第32行: | ||
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 .. '[[Has property::' .. mw.text.encode(property) .. ']]' | query = query .. '[[Has property::' .. mw.text.encode(property) .. ']]' | ||
end | end | ||
第52行: | 第50行: | ||
p.cache[cacheKey] = results | p.cache[cacheKey] = results | ||
-- | -- 提取页面名称并添加图标 | ||
local parsedResults = {} | local parsedResults = {} | ||
for page in string.gmatch(results, "[^ | for page in string.gmatch(results, 'title="([^"]+)"') do | ||
local trimmedPage = trim(page) | local trimmedPage = trim(page) | ||
local nodeicon = getnodeicon(trimmedPage, frame) | local nodeicon = getnodeicon(trimmedPage, frame) | ||
local iconMarkup = '' | local iconMarkup = '' | ||
if nodeicon and nodeicon ~= '' then | if nodeicon and nodeicon ~= '' then | ||
第79行: | 第77行: | ||
-- tostring之后进行修剪 | -- tostring之后进行修剪 | ||
local finalHtml = tostring(itemDiv:allDone()) | local finalHtml = tostring(itemDiv:allDone()) | ||
finalHtml = trim(finalHtml) | finalHtml = trim(finalHtml) | ||
2024年1月26日 (五) 23:04的版本
可在模块: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 page in string.gmatch(results, 'title="([^"]+)"') do
local trimmedPage = trim(page)
local nodeicon = getnodeicon(trimmedPage, frame)
local iconMarkup = ''
if nodeicon and nodeicon ~= '' then
iconMarkup = '[[File:' .. mw.text.encode(nodeicon) .. '|20px|link=]] '
end
table.insert(parsedResults, iconMarkup .. trimmedPage)
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