Module:Error: Difference between revisions

From Zoophilia Wiki
Jump to navigationJump to search
meta>Mr. Stradivarius
simplify argument-grabbing code
meta>Mr. Stradivarius
simplify code some more and trim whitespace from the message
Line 6: Line 6:


local function _error(args)
local function _error(args)
     local s = args.message or args[1] or error('no message specified', 2)
     local message = args.message or args[1] or error('no message specified', 2)
    message = mw.ustring.match(tostring(message), '^%s*(.*%S)') or ''  -- Convert message to string and trim whitespace.
     local tag = mw.ustring.lower(tostring(args.tag))
     local tag = mw.ustring.lower(tostring(args.tag))


     -- Work out what html tag we should use.
     -- Work out what html tag we should use.
    local t
     if not (tag == 'p' or tag == 'span' or tag == 'div') then
     if tag == 'p' or tag == 'span' or tag == 'div' then
         tag = 'strong'
         t = tag
    else
        t = 'strong'
     end
     end
    local root = HtmlBuilder.create(t)


     -- Generate the html.
     -- Generate the html.
    local root = HtmlBuilder.create(tag)
     root
     root
         .addClass('error')
         .addClass('error')
         .wikitext(tostring(s))
         .wikitext(message)


     return tostring(root)
     return tostring(root)
Line 48: Line 46:
     end
     end


    local args = origArgs
     return _error(args)
     return _error(args)
end
end


return p
return p

Revision as of 11:49, 4 April 2013

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

-- This module implements {{error}}.

local p = {}

local HtmlBuilder = require('Module:HtmlBuilder')

local function _error(args)
    local message = args.message or args[1] or error('no message specified', 2)
    message = mw.ustring.match(tostring(message), '^%s*(.*%S)') or ''  -- Convert message to string and trim whitespace.
    local tag = mw.ustring.lower(tostring(args.tag))

    -- Work out what html tag we should use.
    if not (tag == 'p' or tag == 'span' or tag == 'div') then
        tag = 'strong'
    end

    -- Generate the html.
    local root = HtmlBuilder.create(tag)
    root
        .addClass('error')
        .wikitext(message)

    return tostring(root)
end

function p.error(frame)
    local origArgs
    if frame == mw.getCurrentFrame() then
        -- We're being called via #invoke. The args are passed through to the module
        -- from the template page, so use the args that were passed into the template.
        origArgs = frame.args
    else
        -- We're being called from another module or from the debug console, so assume
        -- the args are passed in directly.
        origArgs = frame
    end
    
    -- ParserFunctions considers whitespace to be false, so to preserve the previous 
    -- behavior of the template, change any arguments consisting only of whitespace
    -- to nil, so Lua will consider them false too.
    local args = {}
    for k, v in pairs(origArgs) do
        if mw.ustring.match(v, '%S') then
            args[k] = v
        end
    end

    return _error(args)
end

return p