Module:Percentage: Difference between revisions

From Zoophilia Wiki
Jump to navigationJump to search
meta>Frietjes
No edit summary
meta>Frietjes
No edit summary
Line 37: Line 37:


function p.main(frame)
function p.main(frame)
return percentage(tonumber(frame.args[1]) or 0, tonumber(frame.args[2]) or 100, tonumber(frame.args[3]) or 0, frame.args['%'] or '%', frame.args['pad'] or '', frame.args['sigfig'] or '')
return percentage(
tonumber(frame.args[1]) or 0,
tonumber(frame.args[2]) or 100,
tonumber(frame.args[3] or frame.args['pad']) or 0,
frame.args['%'] or '%', frame.args['pad'] or '',
frame.args['sigfig'] or ''
)
end
end


return p
return p

Revision as of 13:50, 20 October 2019

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

--
-- This module implements [[Template:Percentage]]
--
local p = {}

local math_module = require( "Module:Math" )
local precision = math_module._precision
local sortkey = require( "Module:Sortkey" )

local function rnd(num, digits)
	-- This function implements {{rnd}}
	return math_module._precision_format(tostring(num), tostring(digits))
end

local function oom(num)
	-- This function implements {{order of magnitude}}
	return math_module._order(tostring(num))
end

function percentage(n1, n2, prec, suffix, pad, sigfig)
	local pct = 100*n1/n2
	skey = '<span data-sort-value="'
			.. sortkey._sortKeyForNumber(pct) .. '♠" style="display:none"></span>'
	if sigfig ~= '' then
		return skey .. rnd(pct, tonumber(sigfig) - oom(pct) - 1) .. suffix
	end
	if pad ~= '' then
		return skey .. rnd(pct, prec) .. suffix
	end
	
	if pct ~= 0 then
		pct = ((pct < 0) and -1 or 1)*math.floor(math.abs(pct * 10^prec) + 0.5) / 10^prec
	end
	
	return skey .. pct .. suffix
end

function p.main(frame)
	return percentage(
		tonumber(frame.args[1]) or 0,
		tonumber(frame.args[2]) or 100,
		tonumber(frame.args[3] or frame.args['pad']) or 0,
		frame.args['%'] or '%', frame.args['pad'] or '',
		frame.args['sigfig'] or ''
		)
end

return p