Module:Block value: Difference between revisions
m add debug logging |
removed most transformations and updated data modules to match; makes adding values more intuitive |
||
| Line 1: | Line 1: | ||
local p = {} | local p = {} | ||
p.value | |||
function p.value( f ) | |||
local args = f | local args = f | ||
if f == mw.getCurrentFrame() then | if f == mw.getCurrentFrame() then | ||
| Line 6: | Line 7: | ||
end | end | ||
local block = mw.text.trim( args[1] or '' ):lower() | local block = mw.text.trim( args[1] or '' ):lower() | ||
local | local argType = args.type | ||
local value = mw.loadData( 'Module:' .. | local value = mw.loadData( 'Module:' .. argType .. ' values' )[block] | ||
local category = '' | local category = '' | ||
if not value then | if not value then | ||
value = '[[Template:' .. | value = '[[Template:' .. argType .. ' values#Missing value|?]]' | ||
local title = mw.title.getCurrentTitle() | local title = mw.title.getCurrentTitle() | ||
if not args.nocat and title.namespace == 0 and not title.isSubpage then | if not args.nocat and title.namespace == 0 and not title.isSubpage then | ||
category = '[[Category:Missing ' .. | category = '[[Category:Missing ' .. argType:lower() .. ']]' | ||
end | end | ||
end | end | ||
return value .. category | return value .. category | ||
end | end | ||
return p | return p | ||