Module:DamagePatch: Difference between revisions

Fix an issue where tabs were displayed in a wrong order
(Created page with "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.orig), '|') 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_...")
 
(Fix an issue where tabs were displayed in a wrong order)
 
(13 intermediate revisions by the same user not shown)
Line 7: Line 7:


     -- Collect arguments from the old table.
     -- Collect arguments from the old table.
     local input_args = split(mw.text.unstrip(args.orig), '|')
     local input_args = split(mw.text.unstrip(args[1]), '|')
     local old_args = {}
     local old_args = {}
     for k, v in ipairs(input_args) do
     for k, v in ipairs(input_args) do
Line 18: Line 18:
     end
     end


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


Line 50: Line 50:
         args = new_args
         args = new_args
     }
     }
    local old_content = mw.html.create('div')
        :tag('div'):wikitext(old_table)
    if args.old then
        old_content:tag('div'):wikitext(frame:preprocess(string.char(10) .. args.old))
    end
    local new_content = mw.html.create('div')
        :tag('div'):wikitext(new_table)
    if args.new or args.old then
        new_content:tag('div'):wikitext(frame:preprocess(string.char(10) .. (args.new or args.old)))
    end


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


     local tabber = frame:expandTemplate{
     local tabber = frame:preprocess("<tabber>\\\\NA=".. tostring(old_content) .."\\\\".. kr_date .."=".. tostring(new_content) .."</tabber>")
        title = 'Tabber',
        args = {
            NA = old_table,
            [kr_date] = new_table
        }
    }


     return tabber
     return tabber