Модуль:Карточка — различия между версиями
Материал из Hilarious Wiki
MailGik (обсуждение | вклад) |
MailGik (обсуждение | вклад) |
||
Строка 3: | Строка 3: | ||
local args = require( 'Модуль:ProcessArgs' ).merge( true ) | local args = require( 'Модуль:ProcessArgs' ).merge( true ) | ||
local titleObject = mw.title.getCurrentTitle() | local titleObject = mw.title.getCurrentTitle() | ||
− | local title = args | + | local title = args.title or titleObject.baseText |
− | local imageArea = args | + | local imageArea = args.imagearea |
if not imageArea and imageArea ~= 'none' then | if not imageArea and imageArea ~= 'none' then | ||
local images = {} | local images = {} | ||
local invImages = {} | local invImages = {} | ||
− | local defaultImageSize = args | + | local defaultImageSize = args.defaultimagesize or '150px' |
− | args | + | args.image1 = args.image1 or args.image or 'title' |
− | args | + | args.image1size = args.image1size or args.imagesize |
− | args | + | args.invimage1 = args.invimage1 or args.invimage or 'title' |
local imgCount = {} | local imgCount = {} | ||
Строка 18: | Строка 18: | ||
for k, v in pairs( args ) do | for k, v in pairs( args ) do | ||
if type( k ) == 'string' then | if type( k ) == 'string' then | ||
− | local image, num = k:match( '^( | + | local image, num = k:match( '^(image)(%d+)$' ) |
− | local invImage, invNum = k:match( '^( | + | local invImage, invNum = k:match( '^(invimage)(%d+)$' ) |
− | if v:lower() ~= ' | + | if v:lower() ~= 'none' then |
if image then | if image then | ||
table.insert( imgCount, tonumber( num ) ) | table.insert( imgCount, tonumber( num ) ) | ||
Строка 33: | Строка 33: | ||
local animate | local animate | ||
for k, v in ipairs( imgCount ) do | for k, v in ipairs( imgCount ) do | ||
− | local image = args[' | + | local image = args['image' .. v] |
− | local size = args[' | + | local size = args['image' .. v .. 'size'] or defaultImageSize |
if image == 'title' then | if image == 'title' then | ||
− | local imageTitle = mw.title.new( ' | + | local imageTitle = mw.title.new( 'File:' .. title .. '.png' ) |
if imageTitle and imageTitle.exists then | if imageTitle and imageTitle.exists then | ||
− | image = '[[ | + | image = '[[File:' .. title .. '.png|' .. size .. ']]' |
elseif titleObject.namespace == 0 then | elseif titleObject.namespace == 0 then | ||
− | image = '[[ | + | image = '[[File:No image.svg|' .. size .. '|link=File:' .. title .. '.png|Upload ' .. title .. '.png]]' |
else | else | ||
− | image = '[[ | + | image = '[[File:No image.svg|' .. size .. '|link=]]' |
end | end | ||
elseif image:match( ';' ) then | elseif image:match( ';' ) then | ||
Строка 51: | Строка 51: | ||
image = animate{ image, size } | image = animate{ image, size } | ||
else | else | ||
− | image = '[[ | + | image = '[[File:' .. image .. '|' .. size .. ']]' |
end | end | ||
Строка 60: | Строка 60: | ||
if #invImgCount > 0 then | if #invImgCount > 0 then | ||
table.sort( invImgCount ) | table.sort( invImgCount ) | ||
− | local | + | local slot |
− | local invIds = mw.loadData( | + | local invIds = mw.loadData( 'Модуль:ИнвСпрайт/ID' )['IDы'] |
for k, v in ipairs( invImgCount ) do | for k, v in ipairs( invImgCount ) do | ||
− | local image = args[' | + | local image = args['invimage' .. v] |
if image == 'title' then | if image == 'title' then | ||
local imageExists | local imageExists | ||
Строка 69: | Строка 69: | ||
imageExists = true | imageExists = true | ||
else | else | ||
− | local imageTitle = mw.title.new( ' | + | local imageTitle = mw.title.new( 'File:Grid ' .. title .. '.png' ) |
imageExists = imageTitle and imageTitle.exists | imageExists = imageTitle and imageTitle.exists | ||
end | end | ||
Строка 82: | Строка 82: | ||
table.insert( invImages, '</div><div style="padding-top:.5em">' ) | table.insert( invImages, '</div><div style="padding-top:.5em">' ) | ||
elseif image then | elseif image then | ||
− | if not | + | if not slot then |
− | + | slot = require( 'Модуль:Инвентарный слот' ).slot | |
end | end | ||
− | table.insert( invImages, | + | table.insert( invImages, slot{ image, link = 'none' } ) |
end | end | ||
end | end | ||
− | if | + | if slot and #invImages > 0 then |
invImages = '<div class="infobox-invimages"><div>' .. table.concat( invImages, '' ) .. '</div></div>' | invImages = '<div class="infobox-invimages"><div>' .. table.concat( invImages, '' ) .. '</div></div>' | ||
else | else | ||
Строка 101: | Строка 101: | ||
imageArea = images .. '\n' .. invImages | imageArea = images .. '\n' .. invImages | ||
else | else | ||
− | imageArea = ' | + | imageArea = 'none' |
end | end | ||
end | end | ||
− | if imageArea and imageArea ~= ' | + | if imageArea and imageArea ~= 'none' then |
imageArea = '<div class="infobox-imagearea">' .. imageArea .. '</div>' | imageArea = '<div class="infobox-imagearea">' .. imageArea .. '</div>' | ||
else | else | ||
Строка 110: | Строка 110: | ||
end | end | ||
− | local footer = args | + | local footer = args.footer |
if footer then | if footer then | ||
footer = '| class="infobox-footer" colspan="2" | ' .. footer | footer = '| class="infobox-footer" colspan="2" | ' .. footer | ||
Строка 121: | Строка 121: | ||
'{| class="infobox-rows" cellspacing="1" cellpadding="4"', | '{| class="infobox-rows" cellspacing="1" cellpadding="4"', | ||
'|-', | '|-', | ||
− | args[ | + | args['ряды'] or '', |
footer or '', | footer or '', | ||
'|}', | '|}', |
Версия 21:45, 11 августа 2016
Этот модуль реализует шаблон {{Карточка}}. Его следует в общем случае вызывать напрямую в страницах шаблонов, а не использовать шаблон Карточка.
Аргументы родителя автоматически объединяются с аргументами, переданными напрямую (последние перезаписывают первые). Также все аргументы нормализуются (при этом удаляются стоящие в начале и в конце пробелы, а пустые аргументы задаются, как равные nil
).
Зависит от
- Модуль:Анимация (при использовании изображений с анимацией)
- Модуль:Сетка (при использовании инвизображений)
- Модуль:ProcessArgs
Расположенная выше документация включена из Модуль:Карточка/док.
local p = {}
function p.infobox( f )
local args = require( 'Модуль:ProcessArgs' ).merge( true )
local titleObject = mw.title.getCurrentTitle()
local title = args.title or titleObject.baseText
local imageArea = args.imagearea
if not imageArea and imageArea ~= 'none' then
local images = {}
local invImages = {}
local defaultImageSize = args.defaultimagesize or '150px'
args.image1 = args.image1 or args.image or 'title'
args.image1size = args.image1size or args.imagesize
args.invimage1 = args.invimage1 or args.invimage or 'title'
local imgCount = {}
local invImgCount = {}
for k, v in pairs( args ) do
if type( k ) == 'string' then
local image, num = k:match( '^(image)(%d+)$' )
local invImage, invNum = k:match( '^(invimage)(%d+)$' )
if v:lower() ~= 'none' then
if image then
table.insert( imgCount, tonumber( num ) )
elseif invImage then
table.insert( invImgCount, tonumber( invNum ) )
end
end
end
end
table.sort( imgCount )
local animate
for k, v in ipairs( imgCount ) do
local image = args['image' .. v]
local size = args['image' .. v .. 'size'] or defaultImageSize
if image == 'title' then
local imageTitle = mw.title.new( 'File:' .. title .. '.png' )
if imageTitle and imageTitle.exists then
image = '[[File:' .. title .. '.png|' .. size .. ']]'
elseif titleObject.namespace == 0 then
image = '[[File:No image.svg|' .. size .. '|link=File:' .. title .. '.png|Upload ' .. title .. '.png]]'
else
image = '[[File:No image.svg|' .. size .. '|link=]]'
end
elseif image:match( ';' ) then
if not animate then
animate = require( 'Модуль:Анимация' ).animate
end
image = animate{ image, size }
else
image = '[[File:' .. image .. '|' .. size .. ']]'
end
table.insert( images, '<div>' .. image .. '</div>' )
end
images = table.concat( images, '\n' )
if #invImgCount > 0 then
table.sort( invImgCount )
local slot
local invIds = mw.loadData( 'Модуль:ИнвСпрайт/ID' )['IDы']
for k, v in ipairs( invImgCount ) do
local image = args['invimage' .. v]
if image == 'title' then
local imageExists
if invIds[title] then
imageExists = true
else
local imageTitle = mw.title.new( 'File:Grid ' .. title .. '.png' )
imageExists = imageTitle and imageTitle.exists
end
if imageExists then
image = title
else
image = false
end
end
if image == '----' then
table.insert( invImages, '</div><div style="padding-top:.5em">' )
elseif image then
if not slot then
slot = require( 'Модуль:Инвентарный слот' ).slot
end
table.insert( invImages, slot{ image, link = 'none' } )
end
end
if slot and #invImages > 0 then
invImages = '<div class="infobox-invimages"><div>' .. table.concat( invImages, '' ) .. '</div></div>'
else
invImages = ''
end
else
invImages = ''
end
if images ~= '' or invImages ~= '' then
imageArea = images .. '\n' .. invImages
else
imageArea = 'none'
end
end
if imageArea and imageArea ~= 'none' then
imageArea = '<div class="infobox-imagearea">' .. imageArea .. '</div>'
else
imageArea = ''
end
local footer = args.footer
if footer then
footer = '| class="infobox-footer" colspan="2" | ' .. footer
end
local html = {
'<div class="notaninfobox">',
'<div class="mcwiki-header infobox-title">' .. title .. '</div>',
imageArea,
'{| class="infobox-rows" cellspacing="1" cellpadding="4"',
'|-',
args['ряды'] or '',
footer or '',
'|}',
'</div>'
}
return table.concat( html, '\n' )
end
return p