Zeroclanzhang(讨论 | 贡献) 无编辑摘要 |
Zeroclanzhang(讨论 | 贡献) 无编辑摘要 |
||
| 第1行: | 第1行: | ||
-- Module: | -- Module:NavplateSMWRow | ||
local p = {} | local p = {} | ||
local mw = require('mw') | local mw = require('mw') | ||
function p.navplateSmwRow(frame) | |||
local args = frame:getParent().args | |||
local category = args[1] | |||
function p. | local property = args[2] | ||
local | local text = args[3] | ||
local property = | local icon = args[4] | ||
local text = | |||
local icon = | |||
-- 使用缓存结果,减少查询 | -- 使用缓存结果,减少查询 | ||
local cacheKey = category .. property | local cacheKey = category .. (property or '') .. (text or '') | ||
if cache[cacheKey] then | if p.cache[cacheKey] then | ||
return cache[cacheKey] | return p.cache[cacheKey] | ||
end | end | ||
| 第36行: | 第28行: | ||
-- 缓存查询结果 | -- 缓存查询结果 | ||
cache[cacheKey] = results | p.cache[cacheKey] = results | ||
-- 格式化输出 | -- 格式化输出 | ||
| 第53行: | 第45行: | ||
end | end | ||
p.cache = {} | |||
return p | return p | ||
2024年1月24日 (三) 15:05的版本
可在模块:Navplate SMW row/doc创建此模块的帮助文档
-- Module:NavplateSMWRow
local p = {}
local mw = require('mw')
function p.navplateSmwRow(frame)
local args = frame:getParent().args
local category = args[1]
local property = args[2]
local text = args[3]
local icon = args[4]
-- 使用缓存结果,减少查询
local cacheKey = category .. (property or '') .. (text or '')
if p.cache[cacheKey] then
return p.cache[cacheKey]
end
-- 构建查询
local query = '[[Category:' .. category .. ']]'
if property and property:find("::") then
local propertyParts = mw.text.split(property, "::")
query = query .. '[[Category:' .. propertyParts[1] .. ']]'
query = query .. '[[' .. propertyParts[2] .. '::SubCategory]]'
end
-- 执行查询
local results = frame:extensionTag('ask', query .. '|format=list')
-- 缓存查询结果
p.cache[cacheKey] = results
-- 格式化输出
return mw.html.create('div')
:addClass('template-navplate-item')
:node(mw.html.create('div')
:addClass('template-navplate-item__label')
:wikitext(icon and '[[File:' .. icon .. '|20px|link=]]' or '')
:wikitext(text)
)
:node(mw.html.create('div')
:addClass('template-navplate-item__list')
:wikitext(results)
)
:allDone()
end
p.cache = {}
return p