Jump to content

Module:Tree chart/sandbox

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Jackmcbarn (talk | contribs) at 00:27, 17 December 2014 (simiplify p.main). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
require('Module:No globals')

local p = {}

local cells = mw.loadData('Module:TreeChart/data')

local function make_cell(builder,name,key)
	local props = cells[name][key]
	if not props then
		return
	end
	for _, v in ipairs(props) do
		builder:tag('td',{selfClosing=true})
				:css(v.style or {})
				:attr(v.attr or {})
	end
end

function p._main(cell_args)
	local ret = mw.html.create()
	local top = ret:tag('tr')
						:css{ height = '1px',
								['text-align'] = 'center' }
	local bottom = ret:tag('tr')
						:css{ height = '1px',
								['text-align'] = 'center' }
	for _, v in ipairs(cell_args) do
		if type(v) == 'string' then
			make_cell(top,v,'t')
			make_cell(bottom,v,'b')
		else
			top:tag('td')
				:attr{ colspan = v.colspan or 6,
						rowspan = v.rowspan or 2 }
				:css{ padding = '0.2em',
						border = (v.thick or '2') .. 'px solid black' }
				:cssText(v.css)
				:wikitext(v.text)
		end
	end
	return tostring(ret)
end

function p.main(frame)
	local args = require('Module:Arguments').getArgs(frame, {wrappers = 'Template:Chart', trim = false, removeBlanks = false})
	local cell_args = {}
	for _, val in ipairs(args) do
		local trimmedVal = val:match('^%s*(.-)%s*$')
		if trimmedVal == '' then
			trimmedVal = '$'
		end
		if cells[trimmedVal] then
			table.insert(cell_args, trimmedVal)
		else
			-- Unnamed params behave weirdly
			-- white space at the front counts for param_{{{1}}}, but not whitespace at the end, so remove it
			local rightTrimmedVal = val:gsub('%s+$','')
			table.insert(cell_args, {
				text = args[trimmedVal] or ('{{{'..trimmedVal..'}}}'),
				colspan = args['colspan_'..rightTrimmedVal] or args.colspan,
				rowspan = args['rowspan_'..rightTrimmedVal] or args.rowspan,
				thick = args['border_'..rightTrimmedVal] or args.border,
				css = args['boxstyle_'..rightTrimmedVal] or args.boxstyle
			})
		end
	end
	
	return p._main(cell_args)
end

return p