模块:Navplate SMW row display all:修订间差异

来自决策链云智库
无编辑摘要
无编辑摘要
 
(未显示同一用户的6个中间版本)
第11行: 第11行:
-- 新增函数用于获取页面的nodeicon属性
-- 新增函数用于获取页面的nodeicon属性
local function getnodeicon(pageName, frame)
local function getnodeicon(pageName, frame)
     local ask = '{{#ask:[[' .. pageName .. ']]|?nodeicon|mainlabel=-}}'
     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)
第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 pageName in string.gmatch(results, 'title="([^"]+)"') do
     for pageName in string.gmatch(results, '%[%[(.-)%]%]') do
         local trimmedPageName = trim(pageName)
         local trimmedPageName = trim(pageName)
         local nodeicon = getnodeicon(trimmedPageName, frame) -- 获取页面的nodeicon属性
         local nodeicon = getnodeicon(trimmedPageName, frame) -- 获取页面的nodeicon属性
         if nodeicon and nodeicon ~= '' then
         local formattedPageName = nodeicon .. ' [[' .. trimmedPageName .. ']]'
            -- 创建包含图标的metadata span元素
         table.insert(parsedResults, formattedPageName)
            local iconSpan = mw.html.create('span')
                :addClass('metadata')
                :wikitext('[[File:' .. mw.text.encode(nodeicon) .. '|20px|link=]] ')
            local itemSpan = mw.html.create('span')
                :wikitext(trimmedPageName)
            -- 将图标和页面名称结合
            table.insert(parsedResults, tostring(iconSpan) .. ' ' .. tostring(itemSpan))
         else
            -- 如果没有nodeicon,只添加页面名称
            table.insert(parsedResults, trimmedPageName)
        end
     end
     end



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