More actions
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
local p = {} | local p = {} | ||
function p.renderImageGrid(frame) | function p.renderImageGrid(frame) | ||
local args = frame:getParent().args | local args = frame:getParent().args | ||
local images = args['images'] or '' | local images = args['images'] or '' | ||
local texts = args['texts'] or '' | local texts = args['texts'] or '' | ||
local imageList = mw.text.split(images, ',') | local imageList = mw.text.split(images, ',') | ||
local textList = mw.text.split(texts, ',') | local textList = mw.text.split(texts, ',') | ||
local html = mw.html.create('div'):addClass('image-grid-container') | local html = mw.html.create('div'):addClass('image-grid-container') | ||
for i = 1, math.max(#imageList, #textList) do | for i = 1, math.max(#imageList, #textList) do | ||
local image = mw.text.trim(imageList[i] or 'Noimg.png') | |||
local image = mw.text.trim(imageList[i] or 'Noimg.png') | local text = mw.text.trim(textList[i] or '') | ||
local text = mw.text.trim(textList[i] or '') | |||
local imageWrapper = html:tag('div'):addClass('image-wrapper') | local imageWrapper = html:tag('div'):addClass('image-wrapper') | ||
imageWrapper:wikitext(string.format('[[File:%s|200px]]', image)) | imageWrapper:wikitext(string.format('[[File:%s|200px]]', image)) | ||
if text ~= '' then | if text ~= '' then | ||
imageWrapper:tag('div'):addClass('image-text'):wikitext(text) | imageWrapper:tag('div'):addClass('image-text'):wikitext(text) | ||
Line 33: | Line 24: | ||
end | end | ||
return tostring(html) | return tostring(html) | ||
end | end | ||
return p | return p |
Revision as of 02:49, 17 September 2024
Documentation for this module may be created at Module:ImageGrid/doc
local p = {}
function p.renderImageGrid(frame)
local args = frame:getParent().args
local images = args['images'] or ''
local texts = args['texts'] or ''
local imageList = mw.text.split(images, ',')
local textList = mw.text.split(texts, ',')
local html = mw.html.create('div'):addClass('image-grid-container')
for i = 1, math.max(#imageList, #textList) do
local image = mw.text.trim(imageList[i] or 'Noimg.png')
local text = mw.text.trim(textList[i] or '')
local imageWrapper = html:tag('div'):addClass('image-wrapper')
imageWrapper:wikitext(string.format('[[File:%s|200px]]', image))
if text ~= '' then
imageWrapper:tag('div'):addClass('image-text'):wikitext(text)
end
end
return tostring(html)
end
return p