Module:Infobox: Difference between revisions
m rebase dev changes onto prod |
No edit summary |
||
| (11 intermediate revisions by 2 users not shown) | |||
| 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 template = f:getParent():getTitle():lower():gsub( 'template:', '' ):gsub( 'infobox ', '' ) | |||
local headerArea = '' | local headerArea = '' | ||
local json = { | |||
images = {}, | |||
invimages = {}, | |||
rows = {}, | |||
} | |||
local imageArea = args.imagearea | local imageArea = args.imagearea | ||
| Line 11: | Line 18: | ||
local invImages = {} | local invImages = {} | ||
local defaultImageSize = args.defaultimagesize or '150px' | local defaultImageSize = args.defaultimagesize or '150px' | ||
local defaultImageClass = args.defaultimageclass | |||
args.image1 = args.image1 or args.image or 'title' | args.image1 = args.image1 or args.image or 'title' | ||
args.image1size = args.image1size or args.imagesize | args.image1size = args.image1size or args.imagesize | ||
args.invimage1 = args.invimage1 or args.invimage or ' | args.image1class = args.image1class or args.imageclass | ||
args.image1caption = args.image1caption or args.imagecaption or '' | |||
args.invimage1 = args.invimage1 or args.invimage or 'none' | |||
args.group1 = args.group1 or args.group | args.group1 = args.group1 or args.group | ||
args.group1size = args.group1size or args.groupsize | args.group1size = args.group1size or args.groupsize | ||
args.group1class = args.group1class or args.groupclass | |||
args.group1caption = args.group1caption or args.groupcaption or '' | |||
local imgCount = {} | local imgCount = {} | ||
| Line 54: | Line 66: | ||
local group = args['group' .. v] | local group = args['group' .. v] | ||
local groupSize = args['group' .. v .. 'size'] or defaultImageSize | local groupSize = args['group' .. v .. 'size'] or defaultImageSize | ||
local groupClass = args['group' .. v .. 'class'] or defaultImageClass | |||
local groupCaption = args['group' .. v .. 'caption'] or '' | |||
local groupImages = {} | local groupImages = {} | ||
| Line 60: | Line 74: | ||
local image = args[v .. '-' .. w] | local image = args[v .. '-' .. w] | ||
local size = args[v .. '-' .. w .. 'size'] or groupSize | local size = args[v .. '-' .. w .. 'size'] or groupSize | ||
local class = args[v .. '-' .. w .. 'class'] or groupClass | |||
local caption = args[v .. '-' .. w .. 'caption'] or '' | |||
if string.match( image, 'UNIQ%-%-gallery%-' ) then | if string.match( image, 'UNIQ%-%-gallery%-' ) then | ||
| Line 67: | Line 83: | ||
animate = require( 'Module:Animate' ).animate | animate = require( 'Module:Animate' ).animate | ||
end | end | ||
image = animate{ image, size } | image = animate{ image, size, class = class } | ||
else | else | ||
image = '[[File:' .. image .. '|' .. size .. ']]' | json.images[#json.images + 1] = image | ||
local altText = image .. ': Infobox image for ' .. title .. ' the ' .. template .. ' in Minecraft' | |||
image = '[[File:' .. image .. '|' .. size .. '|class=' .. ( class or '' ) .. '|alt=' .. altText .. ']]' | |||
end | end | ||
table.insert( groupImages, '<div>' .. image .. '</div>' ) | if caption ~= '' then | ||
caption = '<div class="infobox-imagecaption">\n' .. caption .. '\n</div>' | |||
end | |||
table.insert( groupImages, '<div>' .. image .. caption .. '</div>' ) | |||
end | |||
if groupCaption ~= '' then | |||
groupCaption = '<div class="infobox-imagecaption">\n' .. groupCaption .. '\n</div>' | |||
end | end | ||
table.insert( tabber, '|-|' .. group .. '=\n' .. table.concat( groupImages, '\n' ) ) | table.insert( tabber, '|-|' .. group .. '=\n' .. table.concat( groupImages, '\n' ) .. groupCaption ) | ||
end | end | ||
table.insert( images, '<div>' .. f:extensionTag( 'tabber', table.concat( tabber, '\n' ) ) .. '</div>' ) | table.insert( images, '<div>' .. f:extensionTag( 'tabber', table.concat( tabber, '\n' ) ) .. '</div>' ) | ||
| Line 84: | Line 110: | ||
local image = args['image' .. v] | local image = args['image' .. v] | ||
local size = args['image' .. v .. 'size'] or defaultImageSize | local size = args['image' .. v .. 'size'] or defaultImageSize | ||
local class = args['image' .. v .. 'class'] or defaultImageClass | |||
local caption = args['image' .. v .. 'caption'] or '' | |||
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 #groupCount == 0 and imageTitle and imageTitle.exists then | if #groupCount == 0 and imageTitle and imageTitle.exists then | ||
image = '[[File:' .. title .. '.png|' .. size .. ']]' | json.images[#json.images + 1] = title .. '.png' | ||
local altText = title .. '.png: Infobox image for ' .. title .. ' the ' .. template .. ' in Minecraft' | |||
image = '[[File:' .. title .. '.png|' .. size .. '|class=' .. ( class or '' ) .. '|alt=' .. altText .. ']]' | |||
else | else | ||
image = '' | image = '' | ||
| Line 105: | Line 135: | ||
animate = require( 'Module:Animate' ).animate | animate = require( 'Module:Animate' ).animate | ||
end | end | ||
image = animate{ image, size } | image = animate{ image, size, class = class } | ||
else | else | ||
image = '[[File:' .. image .. '|' .. size .. ']]' | json.images[#json.images + 1] = image | ||
local altText = image .. ': Infobox image for ' .. title .. ' the ' .. template .. ' in Minecraft' | |||
image = '[[File:' .. image .. '|' .. size .. '|class=' .. ( class or '' ) .. '|alt=' .. altText .. ']]' | |||
end | end | ||
table.insert( images, '<div>' .. image .. '</div>' ) | if caption ~= '' then | ||
caption = '<div class="infobox-imagecaption">\n' .. caption .. '\n</div>' | |||
end | |||
if image ~= '' or caption ~= '' then | |||
table.insert( images, '<div>' .. image .. caption .. '</div>' ) | |||
end | |||
end | end | ||
| Line 118: | Line 156: | ||
table.sort( invImgCount ) | table.sort( invImgCount ) | ||
local slot | local slot | ||
local | local invTitle = mw.title.new( 'Media:Invicon ' .. title .. '.png' ) | ||
local invAliases = mw.loadData( 'Module:Inventory slot/Aliases' ) | local invAliases = mw.loadData( 'Module:Inventory slot/Aliases' ) | ||
for k, v in ipairs( invImgCount ) do | for k, v in ipairs( invImgCount ) do | ||
local image = args['invimage' .. v] | local image = args['invimage' .. v] | ||
if image == 'title' then | if image == 'title' then | ||
if | if invTitle and invTitle.exists or invAliases[title] then | ||
image = title | image = title | ||
else | else | ||
| Line 136: | Line 174: | ||
slot = require( 'Module:Inventory slot' ).slot | slot = require( 'Module:Inventory slot' ).slot | ||
end | end | ||
json.invimages[#json.invimages + 1] = image | |||
table.insert( invImages, slot{ image, link = 'none' } ) | table.insert( invImages, slot{ image, link = 'none' } ) | ||
end | end | ||
| Line 169: | Line 208: | ||
if extraText and extraText ~= 'none' then | if extraText and extraText ~= 'none' then | ||
json.extratext = extraText | |||
extraText = '<div class="infobox-extratext">'.. extraText ..'</div>' | extraText = '<div class="infobox-extratext">'.. extraText ..'</div>' | ||
else | else | ||
| Line 177: | Line 217: | ||
local footer = args.footer | local footer = args.footer | ||
if footer then | if footer then | ||
json.footer = footer | |||
footer = '| class="infobox-footer" colspan="2" | ' .. footer | footer = '| class="infobox-footer" colspan="2" | ' .. footer | ||
end | end | ||
json.title = title | |||
local repl = function( label, field ) | |||
json.rows[#json.rows + 1] = { | |||
label = mw.text.jsonDecode( label:gsub( '\n', '\\n' ) ), | |||
field = mw.text.jsonDecode( field:gsub( '\n', '\\n' ) ) | |||
} | |||
return '' | |||
end | |||
args.rows = string.gsub( args.rows or '', '<code class="history%-json">{"label": (".-"), "field": (".-")}</code>\n', repl ) | |||
args.rows2 = string.gsub( args.rows2 or '', '<code class="history%-json">{"label": (".-"), "field": (".-")}</code>\n', repl ) | |||
local html = { | local html = { | ||
'<div class="notaninfobox">', | '<div class="notaninfobox">', | ||
| Line 187: | Line 239: | ||
'|-', | '|-', | ||
args.rows or '', | args.rows or '', | ||
args.rows2 or '', | |||
footer or '', | footer or '', | ||
'|}', | '|}', | ||
'</div>' | '</div>', | ||
f:callParserFunction( '#tag', { 'pre', class = 'history-json noexcerpt navigation-not-searchable', | |||
mw.text.jsonEncode( json, mw.text.JSON_PRETTY ) | |||
} ) | |||
} | } | ||