Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Module:VariantGrid: Difference between revisions

From Piñata Journal
No edit summary
No edit summary
 
(One intermediate revision by the same user not shown)
Line 5: Line 5:
end
end


-- Render single item token into icon + text format
local function renderItem(token)
local function renderItem(token)
token = mw.text.trim(token)
token = mw.text.trim(token)


-- Detect quantity (Apple x2)
local name, qty = token:match("^(.-)%s*x(%d+)$")
local name, qty = token:match("^(.-)%s*x(%d+)$")
if not name then
if not name then
name = token
name = token
Line 17: Line 14:


local icon = string.format(
local icon = string.format(
'[[File:%s icon.png|24px|link=%s]]',
'<span class="vpvg-icon">[[File:%s icon.png|28px|link=%s]]</span>',
name,
name,
name
name
Line 24: Line 21:
local text = string.format('[[%s]]', name)
local text = string.format('[[%s]]', name)


local result = string.format(
local result = icon .. '<span class="vpvg-mini-box">' .. text
'<span class="vpvg-item">%s<span class="vpvg-name">%s</span></span>',
icon,
text
)


if qty then
if qty then
result = result .. '<span class="vpvg-qty">×' .. qty .. '</span>'
result = result .. ' ×' .. qty
end
end
result = result .. '</span>'


return result
return result
end
end


-- Parse multi-item strings separated by +
 
local function renderRequirement(content)
local function renderRequirement(content)
if not notEmpty(content) then
if not notEmpty(content) then
Line 53: Line 48:
end
end


local function gameRow(label, class, content)
local function requirementRow(label, class, content)
if not notEmpty(content) then
if not notEmpty(content) then
return ""
return ""
Line 59: Line 54:


return string.format(
return string.format(
'<div class="vpvg-req %s"><span class="vpvg-game">%s:</span> %s</div>',
'<tr class="vpvg-row %s">' ..
'<td class="vpvg-gamecell">%s</td>' ..
'<td class="vpvg-reqcell">%s</td>' ..
'</tr>',
class,
class,
label,
label,
Line 88: Line 86:
end
end


table.insert(html, gameRow("VP1", "vp1", vp1))
table.insert(html, '<table class="vpvg-reqtable">')
table.insert(html, gameRow("TIP", "tip", tip))
 
table.insert(html, gameRow("PP",  "pp",  pp))
table.insert(html, requirementRow("VP1", "vp1", vp1))
table.insert(html, requirementRow("TIP", "tip", tip))
table.insert(html, requirementRow("PP",  "pp",  pp))


table.insert(html, '</table>')
table.insert(html, '</div>')
table.insert(html, '</div>')



Latest revision as of 13:34, 5 March 2026

Documentation for this module may be created at Module:VariantGrid/doc

local p = {}

local function notEmpty(val)
	return val and val ~= ""
end

local function renderItem(token)
	token = mw.text.trim(token)

	local name, qty = token:match("^(.-)%s*x(%d+)$")
	if not name then
		name = token
	end

	local icon = string.format(
		'<span class="vpvg-icon">[[File:%s icon.png|28px|link=%s]]</span>',
		name,
		name
	)

	local text = string.format('[[%s]]', name)

	local result = icon .. '<span class="vpvg-mini-box">' .. text

	if qty then
		result = result .. ' ×' .. qty
	end

	result = result .. '</span>'

	return result
end


local function renderRequirement(content)
	if not notEmpty(content) then
		return ""
	end

	local parts = mw.text.split(content, "%+")
	local rendered = {}

	for _, part in ipairs(parts) do
		table.insert(rendered, renderItem(part))
	end

	return table.concat(rendered, '<span class="vpvg-plus">+</span>')
end

local function requirementRow(label, class, content)
	if not notEmpty(content) then
		return ""
	end

	return string.format(
		'<tr class="vpvg-row %s">' ..
			'<td class="vpvg-gamecell">%s</td>' ..
			'<td class="vpvg-reqcell">%s</td>' ..
		'</tr>',
		class,
		label,
		renderRequirement(content)
	)
end

local function renderVariant(args, index)
	local title = args["variant" .. index .. "_title"]
	if not notEmpty(title) then
		return ""
	end

	local image = args["variant" .. index .. "_image"] or ""
	local vp1 = args["variant" .. index .. "_vp1"]
	local tip = args["variant" .. index .. "_tip"]
	local pp  = args["variant" .. index .. "_pp"]

	local html = {}

	table.insert(html, '<div class="vpvg-col">')
	table.insert(html, '<div class="vpvg-title">' .. title .. '</div>')

	if notEmpty(image) then
		table.insert(html,
			'<div class="vpvg-image">[[File:' .. image .. '|160px]]</div>'
		)
	end

	table.insert(html, '<table class="vpvg-reqtable">')

	table.insert(html, requirementRow("VP1", "vp1", vp1))
	table.insert(html, requirementRow("TIP", "tip", tip))
	table.insert(html, requirementRow("PP",  "pp",  pp))

	table.insert(html, '</table>')
	table.insert(html, '</div>')

	return table.concat(html)
end

function p.main(frame)
	local args = frame:getParent().args
	local output = {}

	table.insert(output, '<div class="vpvg-grid">')

	for i = 1, 4 do
		table.insert(output, renderVariant(args, i))
	end

	table.insert(output, '</div>')

	return table.concat(output)
end

return p