Module:DamagePatch: Difference between revisions

From Elwiki
No edit summary
Tag: Manual revert
No edit summary
Line 54: Line 54:
         :tag('div'):wikitext(old_table)
         :tag('div'):wikitext(old_table)


     old_content:tag('div'):wikitext(args.old)
     old_content:tag('div'):wikitext('<span>' .. args.old .. '</span>')


     local new_content = mw.html.create('div')
     local new_content = mw.html.create('div')
         :tag('div'):wikitext(new_table)
         :tag('div'):wikitext(new_table)
      
      
     new_content:tag('div'):wikitext(args.new)
     new_content:tag('div'):wikitext('<span>' .. args.new .. '</span>')


     local kr_date = 'KR (' .. args.date .. ')'
     local kr_date = 'KR (' .. args.date .. ')'

Revision as of 20:14, 5 November 2023

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

require('Module:CommonFunctions');
local getArgs = require('Module:Arguments').getArgs
local p = {}

function p.main(frame)
    local args = getArgs(frame)

    -- Collect arguments from the old table.
    local input_args = split(mw.text.unstrip(args[1]), '|')
    local old_args = {}
    for k, v in ipairs(input_args) do
        local old_arg = split(v, '=')
        if not old_arg[2] then
            old_args[k] = v
        else
            old_args[old_arg[1]] = old_arg[2]
        end
    end

    args[1] = nil
    local new_args = table.deep_copy(old_args)

    local exclude_args = {'date', 'remove'}
    -- Apply the new values to the new table.
    for k, v in pairs(args) do
        if args[k] and not indexOf(k, exclude_args) then
            new_args[k] = args[k]
        end
    end

    -- Remove the values requested in the new table.
    for k, v in pairs(old_args) do
        if indexOf(k, split(args.remove)) then
            new_args[k] = nil
        end
    end

    if args.dump then
        return inspect_dump(frame, new_args)
    end

    -- Finally, display the tabs.
    local old_table = frame:expandTemplate{
        title = 'Damage',
        args = old_args
    }

    local new_table = frame:expandTemplate{
        title = 'Damage',
        args = new_args
    }

    local old_content = mw.html.create('div')
        :tag('div'):wikitext(old_table)

    old_content:tag('div'):wikitext('<span>' .. args.old .. '</span>')

    local new_content = mw.html.create('div')
        :tag('div'):wikitext(new_table)
    
    new_content:tag('div'):wikitext('<span>' .. args.new .. '</span>')

    local kr_date = 'KR (' .. args.date .. ')'

    local tabber = frame:expandTemplate{
        title = 'Tabber',
        args = {
            NA = tostring(old_content),
            [kr_date] = tostring(new_content)
        }
    }

    return tabber
  
end

return p