Module:Infobox: Difference between revisions
m rebase dev changes onto prod |
|||
| Line 4: | Line 4: | ||
local titleObject = mw.title.getCurrentTitle() | local titleObject = mw.title.getCurrentTitle() | ||
local title = args.title or titleObject.baseText | local title = args.title or titleObject.baseText | ||
local headerArea = '' | |||
local imageArea = args.imagearea | local imageArea = args.imagearea | ||
| Line 13: | Line 14: | ||
args.image1size = args.image1size or args.imagesize | args.image1size = args.image1size or args.imagesize | ||
args.invimage1 = args.invimage1 or args.invimage or 'title' | args.invimage1 = args.invimage1 or args.invimage or 'title' | ||
args.group1 = args.group1 or args.group | |||
args.group1size = args.group1size or args.groupsize | |||
local imgCount = {} | local imgCount = {} | ||
local invImgCount = {} | local invImgCount = {} | ||
local groupCount = {} | |||
local groupImgList = {} | |||
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( '^(image)(%d+)$' ) | local image, num = k:match( '^(image)(%d+)$' ) | ||
local invImage, invNum = k:match( '^(invimage)(%d+)$' ) | local invImage, invNum = k:match( '^(invimage)(%d+)$' ) | ||
local group, groupNum = k:match( '^(group)(%d+)$' ) | |||
local groupImg, groupImgNum = k:match( '^(%d+)-(%d+)$' ) | |||
if v:lower() ~= 'none' then | if v:lower() ~= 'none' then | ||
if image then | if image then | ||
| Line 25: | Line 32: | ||
elseif invImage then | elseif invImage then | ||
table.insert( invImgCount, tonumber( invNum ) ) | table.insert( invImgCount, tonumber( invNum ) ) | ||
elseif group then | |||
table.insert( groupCount, tonumber( groupNum ) ) | |||
if not groupImgList['group' .. groupNum] then | |||
groupImgList['group' .. groupNum] = {} | |||
end | |||
elseif groupImg then | |||
if not groupImgList['group' .. groupImg] then | |||
groupImgList['group' .. groupImg] = {} | |||
end | |||
table.insert( groupImgList['group' .. groupImg], tonumber( groupImgNum ) ) | |||
end | end | ||
end | end | ||
end | end | ||
end | |||
local animate | |||
if #groupCount > 0 then | |||
table.sort( groupCount ) | |||
local tabber = {} | |||
for k, v in ipairs( groupCount ) do | |||
local group = args['group' .. v] | |||
local groupSize = args['group' .. v .. 'size'] or defaultImageSize | |||
local groupImages = {} | |||
table.sort( groupImgList['group' .. v] ) | |||
for _, w in ipairs( groupImgList['group' .. v] ) do | |||
local image = args[v .. '-' .. w] | |||
local size = args[v .. '-' .. w .. 'size'] or groupSize | |||
if string.match( image, 'UNIQ%-%-gallery%-' ) then | |||
image = image | |||
elseif image:match( ';' ) then | |||
if not animate then | |||
animate = require( 'Module:Animate' ).animate | |||
end | |||
image = animate{ image, size } | |||
else | |||
image = '[[File:' .. image .. '|' .. size .. ']]' | |||
end | |||
table.insert( groupImages, '<div>' .. image .. '</div>' ) | |||
end | |||
table.insert( tabber, '|-|' .. group .. '=\n' .. table.concat( groupImages, '\n' ) ) | |||
end | |||
table.insert( images, '<div>' .. f:extensionTag( 'tabber', table.concat( tabber, '\n' ) ) .. '</div>' ) | |||
end | end | ||
table.sort( imgCount ) | table.sort( imgCount ) | ||
for k, v in ipairs( imgCount ) do | for k, v in ipairs( imgCount ) do | ||
local image = args['image' .. v] | local image = args['image' .. v] | ||
| Line 38: | Line 87: | ||
if image == 'title' then | if image == 'title' then | ||
local imageTitle = mw.title.new( 'Media:' .. title .. '.png' ) | local imageTitle = mw.title.new( 'Media:' .. title .. '.png' ) | ||
if imageTitle and imageTitle.exists then | if #groupCount == 0 and imageTitle and imageTitle.exists then | ||
image = '[[File:' .. title .. '.png|' .. size .. ']]' | image = '[[File:' .. title .. '.png|' .. size .. ']]' | ||
else | |||
image = '' | |||
end | |||
--[=[ | |||
elseif titleObject.namespace == 0 then | elseif titleObject.namespace == 0 then | ||
image = '[[File:No image.svg|' .. size .. '|link=File:' .. title .. '.png|Upload ' .. title .. '.png]]' | image = '[[File:No image.svg|' .. size .. '|link=File:' .. title .. '.png|Upload ' .. title .. '.png]]' | ||
| Line 45: | Line 98: | ||
image = '[[File:No image.svg|' .. size .. '|link=]]' | image = '[[File:No image.svg|' .. size .. '|link=]]' | ||
end | end | ||
]=] | |||
elseif string.match( image, 'UNIQ%-%-gallery%-' ) then | |||
image = image | |||
elseif image:match( ';' ) then | elseif image:match( ';' ) then | ||
if not animate then | if not animate then | ||
| Line 56: | Line 112: | ||
table.insert( images, '<div>' .. image .. '</div>' ) | table.insert( images, '<div>' .. image .. '</div>' ) | ||
end | end | ||
images = table.concat( images, '\n' ) | images = table.concat( images, '\n' ) | ||
| Line 101: | Line 158: | ||
imageArea = '<div class="infobox-imagearea animated-container">' .. imageArea .. '</div>' | imageArea = '<div class="infobox-imagearea animated-container">' .. imageArea .. '</div>' | ||
else | else | ||
imageArea = '' | local groupArea = args.grouparea | ||
if groupArea then | |||
imageArea = groupArea | |||
else | |||
imageArea = '' | |||
end | |||
end | |||
local extraText = args.extratext | |||
if extraText and extraText ~= 'none' then | |||
extraText = '<div class="infobox-extratext">'.. extraText ..'</div>' | |||
else | |||
extraText = '' | |||
end | end | ||
headerArea = imageArea.. '' ..extraText | |||
local footer = args.footer | local footer = args.footer | ||
if footer then | if footer then | ||
| Line 112: | Line 183: | ||
'<div class="notaninfobox">', | '<div class="notaninfobox">', | ||
'<div class="mcwiki-header infobox-title">' .. title .. '</div>', | '<div class="mcwiki-header infobox-title">' .. title .. '</div>', | ||
headerArea, | |||
'{| class="infobox-rows" cellspacing="1" cellpadding="4"', | '{| class="infobox-rows" cellspacing="1" cellpadding="4"', | ||
'|-', | '|-', | ||