Module:Block value: Difference between revisions

From Modded Wiki
Jump to navigation Jump to search
m add support for alternative value modules
m strip trailing s only if not found otherwise
 
(19 intermediate revisions by 5 users not shown)
Line 1: Line 1:
local p = {}
local p = {}
p.value = function( f )
local args = require( 'Module:ProcessArgs' ).norm( f.args or f )
local block = mw.text.trim( args[1] or '' ):lower()
local type = args.type


-- Most of these transforms are unnecessary, but are kept for compatibility with original template
function p.value( f )
local args = f
-- Strip trailing "s" on everything but these
if f == mw.getCurrentFrame() then  
local keepS = {
args = require( 'Module:ProcessArgs' ).merge( true )
glass = true,
steps = true, stairs = true,
bars = true,
cactus = true,
leaves = true,
grass = true,
potatoes = true
}
if not keepS[block:match( '%w+$' )] then
block = block:gsub( 's$', '' )
end
end
local block = mw.text.trim( args[1] or '' ):lower()
local argType = args.type
-- Other transforms
local values = mw.loadData( 'Module:' .. argType .. ' values' )
block = block
local value = values[block]
:gsub( 'wooden', 'wood' )
:gsub( 'mossy', 'moss' )
:gsub( 'steps', 'stairs' )
:gsub( "['%(%)%-%s]+", '' )
local value = mw.loadData( 'Module:' .. type .. ' values' )[block]
local category = ''
local category = ''
if not value then
if not value then
value = '[[Template:' .. type .. ' values#Missing value|?]]'
value = values[block:gsub( 's$', '' )]
local title = mw.title.getCurrentTitle()
if not args.nocat and title.namespace == 0 and not title.isSubpage then
if not value then
category = '[[Category:Missing ' .. type:lower() .. ']]'
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
end
end
return value .. category
return value .. category
end
end
return p
return p

Latest revision as of 16:56, 2 March 2020

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