Module:Toolbar: Difference between revisions

From the Croc Wiki, the Croc encyclopedia
Jump to navigationJump to search
Content added Content deleted
(use a more efficient string-building algorithm)
(allow access to the p._main function from other modules, return the blank string if no arguments were specified, and switch indentation to tabs)
Line 1: Line 1:
local p = {}
local p = {}


-- Get the keys of the numerical arguments that are present.
local function getArgNums(args)
local function getArgNums(args)
-- Get the keys of the numerical arguments that are present.
local nums = {}
local tinsert = table.insert
local nums = {}
local tinsert = table.insert
for k, v in pairs(args) do
for k, v in pairs(args) do
if type(k) == 'number' then
if type(k) == 'number' then
tinsert(nums, k)
tinsert(nums, k)
end
end
end
end
table.sort(nums)
return nums
table.sort(nums)
return nums
end
end


local function makeToolbarItems(args)
local function makeToolbarItems(args)
local nums = getArgNums(args)
-- Get numerical argument keys.
local nums = getArgNums(args)
local sep = (args.separator or 'pipe') .. '-separator'
sep = mw.message.new(sep):plain()
-- Get the separator text.
local ret = {}
local sep = (args.separator or 'pipe') .. '-separator'
local tinsert = table.insert
sep = mw.message.new(sep):plain()
for i, v in ipairs(nums) do
tinsert(ret, args[v])
-- Generate the toolbar items.
end
local ret = {}
if #ret > 0 then
local tinsert = table.insert
return table.concat(ret, sep)
for i, v in ipairs(nums) do
end
tinsert(ret, args[v])
end
return table.concat(ret, sep)
end
end


local function makeToolbar(args)
function p._main(args)
local toolbarItems = makeToolbarItems(args)
return mw.ustring.format(
if not toolbarItems then return '' end -- Return the blank string if no arguments were specified, rather than returning empty brackets
'<span class="plainlinks%s"%s>(%s)</span>',
return mw.ustring.format(
type(args.class) == 'string' and ' ' .. args.class or '',
'<span class="plainlinks%s"%s>(%s)</span>',
type(args.style) == 'string' and mw.ustring.format(' style="%s"', args.style) or '',
type(args.class) == 'string' and ' ' .. args.class or '',
makeToolbarItems(args)
type(args.style) == 'string' and mw.ustring.format(' style="%s"', args.style) or '',
)
toolbarItems
)
end
end


function p.main(frame)
function p.main(frame)
-- If called via #invoke, use the args passed into the invoking template.
-- If called via #invoke, use the args passed into the invoking template.
-- Otherwise, for testing purposes, assume args are being passed directly in.
-- Otherwise, for testing purposes, assume args are being passed directly in.
local origArgs
local origArgs
if frame == mw.getCurrentFrame() then
if frame == mw.getCurrentFrame() then
origArgs = frame:getParent().args
origArgs = frame:getParent().args
for k, v in pairs(frame.args) do
for k, v in pairs(frame.args) do
origArgs = frame.args
origArgs = frame.args
break
break
end
end
else
else
origArgs = frame
origArgs = frame
end
end
-- Strip whitespace and remove nil values
local args = {}
-- Strip whitespace and remove nil values
for k, v in pairs(origArgs) do
local args = {}
if type(v) == 'string' then
for k, v in pairs(origArgs) do
v = mw.text.trim(v)
if type(v) == 'string' then
end
v = mw.text.trim(v)
end
if v ~= '' then
args[k] = v
if v ~= '' then
end
args[k] = v
end
end
return p._main(args)
end
return makeToolbar(args)
end
end

return p
return p

Revision as of 01:00, October 29, 2013

This module implements {{toolbar}}. Please see the template page for documentation.

See also


local p = {}

local function getArgNums(args)
	-- Get the keys of the numerical arguments that are present.
	local nums = {}
	local tinsert = table.insert
	for k, v in pairs(args) do
		if type(k) == 'number' then
			tinsert(nums, k)
		end
	end
	table.sort(nums)
	return nums
end

local function makeToolbarItems(args)
	local nums = getArgNums(args)
	local sep = (args.separator or 'pipe') .. '-separator'
	sep = mw.message.new(sep):plain()
	local ret = {}
	local tinsert = table.insert
	for i, v in ipairs(nums) do
		tinsert(ret, args[v])
	end
	if #ret > 0 then
		return table.concat(ret, sep)
	end
end

function p._main(args)
	local toolbarItems = makeToolbarItems(args)
	if not toolbarItems then return '' end -- Return the blank string if no arguments were specified, rather than returning empty brackets
	return mw.ustring.format(
		'<span class="plainlinks%s"%s>(%s)</span>',
		type(args.class) == 'string' and ' ' .. args.class or '',
		type(args.style) == 'string' and mw.ustring.format(' style="%s"', args.style) or '',
		toolbarItems
	)
end

function p.main(frame)
	-- If called via #invoke, use the args passed into the invoking template.
	-- Otherwise, for testing purposes, assume args are being passed directly in.
	local origArgs
	if frame == mw.getCurrentFrame() then
		origArgs = frame:getParent().args
		for k, v in pairs(frame.args) do
			origArgs = frame.args
			break
		end
	else
		origArgs = frame
	end
	-- Strip whitespace and remove nil values
	local args = {}
	for k, v in pairs(origArgs) do
		if type(v) == 'string' then
			v = mw.text.trim(v)
		end
		if v ~= '' then
			args[k] = v
		end
	end
	return p._main(args)
end

return p