Модуль:Карточка — различия между версиями
Материал из Hilarious Wiki
MailGik (обсуждение | вклад) |
Popstop (обсуждение | вклад) м (Добавление поддержки gif и svg изображений (при необходимости)) |
||
(не показана 41 промежуточная версия 2 участников) | |||
Строка 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['название'] or titleObject. | + | local title = args['название'] or titleObject.subpageText |
− | + | local invtitle = args['инвизображение'] or args["инвизображение1"] or args['название'] or titleObject.subpageText | |
− | local imageArea = args[ | + | local modtitle = args['мод'] or titleObject.rootText |
+ | if modtitle == 'нет' then | ||
+ | modification = '' | ||
+ | invmodification = '' | ||
+ | else | ||
+ | modification = ' (' .. modtitle .. ')' | ||
+ | invmodification = modtitle .. ':' | ||
+ | end | ||
+ | |||
+ | local imageArea = args['изображения'] | ||
if not imageArea and imageArea ~= 'none' then | if not imageArea and imageArea ~= 'none' then | ||
local images = {} | local images = {} | ||
Строка 13: | Строка 22: | ||
args["изобр1разм"] = args["изобр1разм"] or args["изобрразм"] | args["изобр1разм"] = args["изобр1разм"] or args["изобрразм"] | ||
args["инвизображение1"] = args["инвизображение1"] or args["инвизображение"] or 'title' | args["инвизображение1"] = args["инвизображение1"] or args["инвизображение"] or 'title' | ||
+ | args["мод"] = args["мод"] | ||
local imgCount = {} | local imgCount = {} | ||
local invImgCount = {} | local invImgCount = {} | ||
− | |||
for k, v in pairs( args ) do | for k, v in pairs( args ) do | ||
if type( k ) == 'string' then | if type( k ) == 'string' then | ||
Строка 36: | Строка 45: | ||
local image = args['изображение' .. v] | local image = args['изображение' .. v] | ||
local size = args['изобр' .. v .. 'разм'] or defaultImageSize | local size = args['изобр' .. v .. 'разм'] or defaultImageSize | ||
− | |||
if image == 'title' then | if image == 'title' then | ||
− | local imageTitle = mw.title.new( 'Файл:' .. title .. | + | oimage = '.png' |
+ | local imageTitle = mw.title.new( 'Файл:' .. title .. modification .. oimage ) | ||
if imageTitle and imageTitle.exists then | if imageTitle and imageTitle.exists then | ||
− | image = '[[Файл:' .. title .. ' | + | image = '[[Файл:' .. title .. modification .. oimage .. '|' .. size .. ']]' |
elseif titleObject.namespace == 0 then | elseif titleObject.namespace == 0 then | ||
− | image = '[[Файл:No image.svg|' .. size .. '|link=Файл:' .. title .. ' | + | image = '[[Файл:No image.svg|' .. size .. '|link=Файл:' .. title .. modification .. oimage .. '|Загрузить' .. title .. modification .. oimage .. ']]' |
else | else | ||
image = '[[Файл:No image.svg|' .. size .. '|link=]]' | image = '[[Файл:No image.svg|' .. size .. '|link=]]' | ||
− | + | end | |
+ | elseif mw.ustring.match(image, 'svg' ) then | ||
+ | oimage = '.svg' | ||
+ | title = mw.ustring.sub(image, 0, -5) | ||
+ | image = '[[Файл:' .. title .. modification .. oimage .. '|' .. size .. ']]' | ||
+ | elseif mw.ustring.match(image, 'gif' ) then | ||
+ | oimage = '.gif' | ||
+ | title = mw.ustring.sub(image, 0, -5) | ||
+ | image = '[[Файл:' .. title .. modification .. oimage .. '|' .. size .. ']]' | ||
elseif mw.ustring.match(image, ';' ) then | elseif mw.ustring.match(image, ';' ) then | ||
if not animate then | if not animate then | ||
Строка 52: | Строка 69: | ||
image = animate{ image, size } | image = animate{ image, size } | ||
else | else | ||
− | image = '[[Файл:' .. image .. '|' .. size .. ']]' | + | oimage = '.png' |
+ | image = '[[Файл:' .. image .. modification .. oimage .. '|' .. size .. ']]' | ||
end | end | ||
Строка 62: | Строка 80: | ||
table.sort( invImgCount ) | table.sort( invImgCount ) | ||
local grid | local grid | ||
+ | local invIds = mw.loadData( [[Модуль:ИнвСпрайт/ID]] )["IDы"] | ||
for k, v in ipairs( invImgCount ) do | for k, v in ipairs( invImgCount ) do | ||
local image = args['инвизображение' .. v] | local image = args['инвизображение' .. v] | ||
if image == 'title' then | if image == 'title' then | ||
− | local imageTitle = mw.title.new( 'Файл:Grid ' .. title .. | + | local imageExists |
− | + | if invIds[title] then | |
+ | imageExists = true | ||
+ | else | ||
+ | local imageTitle = mw.title.new( 'Файл:Grid ' .. title .. modification .. oimage ) | ||
+ | imageExists = imageTitle and imageTitle.exists | ||
+ | end | ||
+ | if imageExists then | ||
image = title | image = title | ||
else | else | ||
Строка 75: | Строка 100: | ||
if image == '----' then | if image == '----' then | ||
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 grid then | if not grid then | ||
− | grid = require( 'Модуль: | + | grid = require( 'Модуль:Инвентарный слот' ).slot |
end | end | ||
− | table.insert( invImages, grid{ | + | table.insert( invImages, grid{ invmodification .. invtitle, ['ссылка'] = 'нет' } ) |
end | end | ||
end | end | ||
Строка 86: | Строка 111: | ||
invImages = '<div class="infobox-invimages"><div>' .. table.concat( invImages, '' ) .. '</div></div>' | invImages = '<div class="infobox-invimages"><div>' .. table.concat( invImages, '' ) .. '</div></div>' | ||
else | else | ||
− | invImages = '' | + | invImages = '[[Файл:No image.svg|link=]]' |
end | end | ||
else | else | ||
Строка 109: | Строка 134: | ||
end | end | ||
+ | local bgcolor = args["цвет"] | ||
+ | if bgcolor then | ||
+ | bgcolor = ' style="background:#' .. bgcolor .. '"' | ||
+ | end | ||
+ | |||
local html = { | local html = { | ||
'<div class="notaninfobox">', | '<div class="notaninfobox">', | ||
− | '<div class="mcwiki-header infobox-title">' .. title .. '</div>', | + | '<div class="mcwiki-header infobox-title"', bgcolor or '', '>' .. title .. '</div>', |
imageArea, | imageArea, | ||
'{| class="infobox-rows" cellspacing="1" cellpadding="4"', | '{| class="infobox-rows" cellspacing="1" cellpadding="4"', |
Текущая версия на 15:19, 3 ноября 2018
Этот модуль реализует шаблон {{Карточка}}. Его следует в общем случае вызывать напрямую в страницах шаблонов, а не использовать шаблон Карточка.
Аргументы родителя автоматически объединяются с аргументами, переданными напрямую (последние перезаписывают первые). Также все аргументы нормализуются (при этом удаляются стоящие в начале и в конце пробелы, а пустые аргументы задаются, как равные nil
).
Зависит от
- Модуль:Анимация (при использовании изображений с анимацией)
- Модуль:Сетка (при использовании инвизображений)
- Модуль:ProcessArgs
Расположенная выше документация включена из Модуль:Карточка/док.
local p = {}
function p.infobox( f )
local args = require( 'Модуль:ProcessArgs' ).merge( true )
local titleObject = mw.title.getCurrentTitle()
local title = args['название'] or titleObject.subpageText
local invtitle = args['инвизображение'] or args["инвизображение1"] or args['название'] or titleObject.subpageText
local modtitle = args['мод'] or titleObject.rootText
if modtitle == 'нет' then
modification = ''
invmodification = ''
else
modification = ' (' .. modtitle .. ')'
invmodification = modtitle .. ':'
end
local imageArea = args['изображения']
if not imageArea and imageArea ~= 'none' then
local images = {}
local invImages = {}
local defaultImageSize = args["умолчразмеризобр"] or '150px'
args["изображение1"] = args["изображение1"] or args["изображение"] or 'title'
args["изобр1разм"] = args["изобр1разм"] or args["изобрразм"]
args["инвизображение1"] = args["инвизображение1"] or args["инвизображение"] or 'title'
args["мод"] = args["мод"]
local imgCount = {}
local invImgCount = {}
for k, v in pairs( args ) do
if type( k ) == 'string' then
local image, num = mw.ustring.match(k, '^(изображение)(%d+)$' )
local invImage, invNum = mw.ustring.match(k, '^(инвизображение)(%d+)$' )
if mw.ustring.lower(v) ~= 'нет' 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['изображение' .. v]
local size = args['изобр' .. v .. 'разм'] or defaultImageSize
if image == 'title' then
oimage = '.png'
local imageTitle = mw.title.new( 'Файл:' .. title .. modification .. oimage )
if imageTitle and imageTitle.exists then
image = '[[Файл:' .. title .. modification .. oimage .. '|' .. size .. ']]'
elseif titleObject.namespace == 0 then
image = '[[Файл:No image.svg|' .. size .. '|link=Файл:' .. title .. modification .. oimage .. '|Загрузить' .. title .. modification .. oimage .. ']]'
else
image = '[[Файл:No image.svg|' .. size .. '|link=]]'
end
elseif mw.ustring.match(image, 'svg' ) then
oimage = '.svg'
title = mw.ustring.sub(image, 0, -5)
image = '[[Файл:' .. title .. modification .. oimage .. '|' .. size .. ']]'
elseif mw.ustring.match(image, 'gif' ) then
oimage = '.gif'
title = mw.ustring.sub(image, 0, -5)
image = '[[Файл:' .. title .. modification .. oimage .. '|' .. size .. ']]'
elseif mw.ustring.match(image, ';' ) then
if not animate then
animate = require( 'Модуль:Анимация' ).animate
end
image = animate{ image, size }
else
oimage = '.png'
image = '[[Файл:' .. image .. modification .. oimage .. '|' .. size .. ']]'
end
table.insert( images, '<div>' .. image .. '</div>' )
end
images = table.concat( images, '\n' )
if #invImgCount > 0 then
table.sort( invImgCount )
local grid
local invIds = mw.loadData( [[Модуль:ИнвСпрайт/ID]] )["IDы"]
for k, v in ipairs( invImgCount ) do
local image = args['инвизображение' .. v]
if image == 'title' then
local imageExists
if invIds[title] then
imageExists = true
else
local imageTitle = mw.title.new( 'Файл:Grid ' .. title .. modification .. oimage )
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 grid then
grid = require( 'Модуль:Инвентарный слот' ).slot
end
table.insert( invImages, grid{ invmodification .. invtitle, ['ссылка'] = 'нет' } )
end
end
if grid and #invImages > 0 then
invImages = '<div class="infobox-invimages"><div>' .. table.concat( invImages, '' ) .. '</div></div>'
else
invImages = '[[Файл:No image.svg|link=]]'
end
else
invImages = ''
end
if images ~= '' or invImages ~= '' then
imageArea = images .. '\n' .. invImages
else
imageArea = 'нет'
end
end
if imageArea and imageArea ~= 'нет' then
imageArea = '<div class="infobox-imagearea">' .. imageArea .. '</div>'
else
imageArea = ''
end
local footer = args["подвал"]
if footer then
footer = '| class="infobox-footer" colspan="2" | ' .. footer
end
local bgcolor = args["цвет"]
if bgcolor then
bgcolor = ' style="background:#' .. bgcolor .. '"'
end
local html = {
'<div class="notaninfobox">',
'<div class="mcwiki-header infobox-title"', bgcolor or '', '>' .. title .. '</div>',
imageArea,
'{| class="infobox-rows" cellspacing="1" cellpadding="4"',
'|-',
args["ряды"] or '',
footer or '',
'|}',
'</div>'
}
return table.concat( html, '\n' )
end
return p