Difference between revisions of "Module:Side box"

From annadreambrush.com/wiki
Jump to navigation Jump to search
imported>Mr. Stradivarius
(create Lua version of Template:Side box)
 
imported>WOSlinker
(add newline before end of table)
 
(11 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 
-- This module implements {{side box}}.
 
-- This module implements {{side box}}.
 +
 +
local yesno = require('Module:Yesno')
  
 
local p = {}
 
local p = {}
Line 25: Line 27:
 
-- Main table classes
 
-- Main table classes
 
data.classes = {}
 
data.classes = {}
if args.metadata and args.metadata:lower() ~= 'no' then
+
if yesno(args.metadata) ~= false then
 
table.insert(data.classes, 'metadata')
 
table.insert(data.classes, 'metadata')
 
end
 
end
Line 34: Line 36:
 
end
 
end
 
table.insert(data.classes, args.class)
 
table.insert(data.classes, args.class)
 +
 +
-- Image
 +
if args.image and args.image ~= 'none' then
 +
data.image = args.image
 +
end
  
 
-- Copy over data that doesn't need adjusting
 
-- Copy over data that doesn't need adjusting
Line 47: Line 54:
 
-- Body row
 
-- Body row
 
'text',
 
'text',
'image',
 
 
'imageright',
 
'imageright',
  
Line 65: Line 71:
 
-- Table root
 
-- Table root
 
local root = mw.html.create('table')
 
local root = mw.html.create('table')
 +
root:attr('role', 'presentation')
 
for i, class in ipairs(data.classes or {}) do
 
for i, class in ipairs(data.classes or {}) do
 
root:addClass(class)
 
root:addClass(class)
 
end
 
end
root:css{border = '1px solid #aaa', ['background-color'] = '#f9f9f9'}
+
root:css{border = '1px solid #aaa', ['background-color'] = '#f9f9f9', color = '#000'}
 
if data.style then
 
if data.style then
 
root:cssText(data.style)
 
root:cssText(data.style)
Line 75: Line 82:
 
-- The "above" row
 
-- The "above" row
 
if data.above then
 
if data.above then
local aboveCell = root:tag('tr'):tag('td')
+
local aboveCell = root:newline():tag('tr'):tag('td')
 
aboveCell
 
aboveCell
 
:attr('colspan', data.imageright and 3 or 2)
 
:attr('colspan', data.imageright and 3 or 2)
Line 85: Line 92:
 
aboveCell:cssText(data.abovestyle)
 
aboveCell:cssText(data.abovestyle)
 
end
 
end
aboveCell:wikitext(data.above)
+
aboveCell
 +
:newline()
 +
:wikitext(data.above)
 
end
 
end
  
 
-- The body row
 
-- The body row
local bodyRow = root:tag('tr')
+
local bodyRow = root:newline():tag('tr'):newline()
 
if data.image then
 
if data.image then
 
bodyRow:tag('td')
 
bodyRow:tag('td')
Line 97: Line 106:
 
bodyRow:tag('td'):css('width', '1px')
 
bodyRow:tag('td'):css('width', '1px')
 
end
 
end
local textCell = bodyRow:tag('td')
+
local textCell = bodyRow:newline():tag('td')
 
textCell:addClass('mbox-text plainlist')
 
textCell:addClass('mbox-text plainlist')
 
if data.textstyle then
 
if data.textstyle then
Line 104: Line 113:
 
textCell:wikitext(data.text)
 
textCell:wikitext(data.text)
 
if data.imageright then
 
if data.imageright then
bodyRow:tag('td')
+
bodyRow:newline():tag('td')
 
:addClass('mbox-imageright')
 
:addClass('mbox-imageright')
 
:wikitext(data.imageright)
 
:wikitext(data.imageright)
Line 111: Line 120:
 
-- The below row
 
-- The below row
 
if data.below then
 
if data.below then
local belowCell = root:tag('tr'):tag('td')
+
local belowCell = root:newline():tag('tr'):tag('td')
 
belowCell
 
belowCell
 
:attr('colspan', data.imageright and 3 or 2)
 
:attr('colspan', data.imageright and 3 or 2)
Line 121: Line 130:
 
end
 
end
  
 +
root:newline()
 
return tostring(root)
 
return tostring(root)
 
end
 
end
  
 
return p
 
return p

Latest revision as of 13:24, 29 May 2019

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

-- This module implements {{side box}}.

local yesno = require('Module:Yesno')

local p = {}

function p.main(frame)
	local origArgs = frame:getParent().args
	local args = {}
	for k, v in pairs(origArgs) do
		v = v:match('%s*(.-)%s*$')
		if v ~= '' then
			args[k] = v
		end
	end
	return p._main(args)
end

function p._main(args)
	local data = p.makeData(args)
	return p.renderSidebox(data)
end

function p.makeData(args)
	local data = {}

	-- Main table classes
	data.classes = {}
	if yesno(args.metadata) ~= false then
		table.insert(data.classes, 'metadata')
	end
	if args.position and args.position:lower() == 'left' then
		table.insert(data.classes, 'mbox-small-left')
	else
		table.insert(data.classes, 'mbox-small')
	end
	table.insert(data.classes, args.class)
	
	-- Image
	if args.image and args.image ~= 'none' then
		data.image = args.image
	end

	-- Copy over data that doesn't need adjusting
	local argsToCopy = {
		-- Styles
		'style',
		'textstyle',

		-- Above row
		'above',
		'abovestyle',

		-- Body row
		'text',
		'imageright',

		-- Below row
		'below',
	}
	for i, key in ipairs(argsToCopy) do
		data[key] = args[key]
	end

	return data
end

function p.renderSidebox(data)
	-- Renders the sidebox HTML.

	-- Table root
	local root = mw.html.create('table')
	root:attr('role', 'presentation')
	for i, class in ipairs(data.classes or {}) do
		root:addClass(class)
	end
	root:css{border = '1px solid #aaa', ['background-color'] = '#f9f9f9', color = '#000'}
	if data.style then
		root:cssText(data.style)
	end

	-- The "above" row
	if data.above then
		local aboveCell = root:newline():tag('tr'):tag('td')
		aboveCell
			:attr('colspan', data.imageright and 3 or 2)
			:addClass('mbox-text')
		if data.textstyle then
			aboveCell:cssText(data.textstyle)
		end
		if data.abovestyle then
			aboveCell:cssText(data.abovestyle)
		end
		aboveCell
			:newline()
			:wikitext(data.above)
	end

	-- The body row
	local bodyRow = root:newline():tag('tr'):newline()
	if data.image then
		bodyRow:tag('td')
			:addClass('mbox-image')
			:wikitext(data.image)
	else
		bodyRow:tag('td'):css('width', '1px')
	end
	local textCell = bodyRow:newline():tag('td')
	textCell:addClass('mbox-text plainlist')
	if data.textstyle then
		textCell:cssText(data.textstyle)
	end
	textCell:wikitext(data.text)
	if data.imageright then
		bodyRow:newline():tag('td')
			:addClass('mbox-imageright')
			:wikitext(data.imageright)
	end

	-- The below row
	if data.below then
		local belowCell = root:newline():tag('tr'):tag('td')
		belowCell
			:attr('colspan', data.imageright and 3 or 2)
			:addClass('mbox-text')
		if data.textstyle then
			belowCell:cssText(data.textstyle)
		end
		belowCell:wikitext(data.below)
	end

	root:newline()
	return tostring(root)
end

return p