模块:Infobox/item/image:修订间差异

来自Cookie☆Wiki
无编辑摘要
(test)
第1行: 第1行:
-- <nowiki>
local p = {}
local p = {}


第11行: 第12行:
return '<span style="font-size: 24px; font-weight: bold; color: red">'
return '<span style="font-size: 24px; font-weight: bold; color: red">'
.. '请更新画廊的语法: "<gallery>(换行)文件名|标签页名(换行)…</gallery>" '
.. '请更新画廊的语法: "<gallery>(换行)文件名|标签页名(换行)…</gallery>" '
.. '→ "gallery:(换行)文件名:标签页名(换行)…" </span>'
.. '→ "gallery:(换行)文件名 :: 标签页名(换行)…" </span>'
.. '[[Category: 含有在信息框中使用了旧的画廊语法的页面]]'
.. '[[Category: 含有在信息框中使用了旧的画廊语法的页面]]'
end
end
第24行: 第25行:
images = {}
images = {}
for image_line in arg:gmatch('[^\r\n]+') do
for image_line in arg:gmatch('[^\r\n]+') do

-- table.insert(lines, line)
local sep = image_line:find(':')
local sep = image_line:find('::')
-- 文件名
local file_name = string.sub(image_line, 1, sep-1)
local remain = string.sub(image_line, sep+2, -1)

-- 标签名
local tab_name = ''
-- 图注
local caption = ''
sep = remain:find('::')
if sep == nil then
tab_name = remain
else
tab_name = string.sub(remain, 1, sep-1)
caption = string.sub(remain, sep+2, -1)
end

table.insert(images, {
table.insert(images, {
file = string.sub(image_line, 1, sep-1),
file_name = mw.text.trim(file_name),
title = string.sub(image_line, sep+1, -1)
tab_name = mw.text.trim(tab_name),
caption = mw.text.trim(caption)
})
})
end
end
第35行: 第53行:
local image_divs = ''
local image_divs = ''
for i, image in pairs(images) do
for i, image in pairs(images) do

local current = ''
local current = ''
if i == 1 then current = 'current' end
if i == 1 then current = 'current' end

tab_lis = tab_lis .. string.format('<li class="pi-tab-link '
tab_lis = tab_lis .. string.format('<li class="pi-tab-link '
.. 'pi-item-spacing %s" data-pi-tab="pi-tab-%d">',
.. 'pi-item-spacing %s" data-pi-tab="pi-tab-%d">',
current, (i-1)) .. image['title'] .. '</li>'
current, (i-1)) .. image['tab_name'] .. '</li>'


local image = frame:expandTemplate{ title = 'Infobox/item/single image', args = {
local image = frame:expandTemplate{ title = 'Infobox/item/single image', args = {
image = image['file']
image = image['file_name'],
caption = image['caption']
} }
} }


第53行: 第74行:
.. tab_lis .. '</ul>'
.. tab_lis .. '</ul>'


return '<div class="pi-image-collection">'
return '[[Category: 含有包含画廊的信息框的页面]]<div class="pi-image-collection">'
.. tabs_ul .. image_divs .. '</div>'
.. tabs_ul .. image_divs .. '</div>'
end
end


return p
return p

-- </nowiki>

2019年2月2日 (六) 16:35的版本

可在模块:Infobox/item/image/doc创建此模块的帮助文档

-- <nowiki>
local p = {}

function p.make()
    local frame = mw.getCurrentFrame()
    local parent = frame:getParent()
    local arg = parent.args['image']

    local gallery_mark_index = arg:find('gallery:')
    if gallery_mark_index ~= 1 then --< 单张图片
        if string.byte(arg, 1) == 127 then
            return '<span style="font-size: 24px; font-weight: bold; color: red">'
                .. '请更新画廊的语法: "<gallery>(换行)文件名|标签页名(换行)…</gallery>" '
                .. '→ "gallery:(换行)文件名 :: 标签页名(换行)…" </span>'
                .. '[[Category: 含有在信息框中使用了旧的画廊语法的页面]]'
        end
        return frame:expandTemplate{ title = 'Infobox/item/single image', args = {
            image = arg, caption = parent.args['caption']
        } }
    end

    -- 去掉 'gallery:'
    arg = string.sub(arg, 9, -1)

    images = {}
    for image_line in arg:gmatch('[^\r\n]+') do

        local sep = image_line:find('::')
        -- 文件名
        local file_name = string.sub(image_line, 1, sep-1)
        local remain = string.sub(image_line, sep+2, -1)

        -- 标签名
        local tab_name = ''
        -- 图注
        local caption = ''
        sep = remain:find('::')
        if sep == nil then
            tab_name = remain
        else
            tab_name = string.sub(remain, 1, sep-1)
            caption = string.sub(remain, sep+2, -1)
        end

        table.insert(images, {
            file_name = mw.text.trim(file_name),
            tab_name = mw.text.trim(tab_name),
            caption = mw.text.trim(caption)
        })
    end

    local tab_lis = ''
    local image_divs = ''
    for i, image in pairs(images) do

        local current = ''
        if i == 1 then current = 'current' end

        tab_lis = tab_lis .. string.format('<li class="pi-tab-link '
            .. 'pi-item-spacing %s" data-pi-tab="pi-tab-%d">',
            current, (i-1)) .. image['tab_name'] .. '</li>'

        local image = frame:expandTemplate{ title = 'Infobox/item/single image', args = {
            image = image['file_name'],
            caption = image['caption']
        } }

        image_divs = image_divs .. string.format(
            '<div class="pi-image-collection-tab-content %s" id="pi-tab-%s">',
            current, (i-1)) .. image .. '</div>'
    end

    local tabs_ul = '<ul class="pi-image-collection-tabs">'
        .. tab_lis .. '</ul>'

    return '[[Category: 含有包含画廊的信息框的页面]]<div class="pi-image-collection">'
        .. tabs_ul .. image_divs .. '</div>'
end

return p

-- </nowiki>