Difference between revisions of "Module:Block value"

From Box of Rocks WIKI
Jump to navigation Jump to search
Crafting>Sonicwave
m (strip trailing s only if not found otherwise)
 
m (1 revision imported)
 
(No difference)

Latest revision as of 13:23, 13 May 2021

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

local p = {}

function p.value( f )
	local args = f
	if f == mw.getCurrentFrame() then 
		args = require( 'Module:ProcessArgs' ).merge( true )
	end
	local block = mw.text.trim( args[1] or '' ):lower()
	local argType = args.type
	
	local values = mw.loadData( 'Module:' .. argType .. ' values' )
	local value = values[block]
	local category = ''
	if not value then
		value = values[block:gsub( 's$', '' )]
		
		if not value then
			value = '[[Template:' .. argType .. ' values#Missing value|?]]'
			local title = mw.title.getCurrentTitle()
			if not args.nocat and title.namespace == 0 and not title.isSubpage then
				category = '[[Category:Missing ' .. argType:lower() .. ']]'
			end
		end
	end
	return value .. category
end

return p