Module:ModuleShowVariantsOrSingle

From The First Descendant Wiki
Revision as of 00:28, 6 June 2024 by Software2 (talk | contribs)

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

------------------------------------
-- Modules can have variants, or they can be one of a kind.
-- It doesn't make sense to show all the variant fluff if a module is one of a kind.
-- This script shows or hides all that variant info based on how many unique modules are defined,
-- no having to manually pick a template yourself!

local p = {}


local function moreThanOne(module_name)
    local variants_chapter = "== Variants ==\n{{Template:ModuleTableCompareLevels|module_name=" .. module_name .. "}}\n\n"
    local variant_details_chapter = "== Variant Details ==\n"
    return variants_chapter .. variant_details_chapter
end

local function addChapter(variantID, moduleText)
    return "\n= " .. tostring(variantID) .. " =\n" ..moduleText
end


function p.processData(frame)
    if frame.args.count == nil then
        return "ERROR: Module:ModuleShowVariantsOrSingle not passed a count. Please tell us on Discord!"
    end

    local smw_count = tonumber(frame.args.count)

    local result = ""
    if smw_count > 1 then
        result = moreThanOne(frame.args.module_name)
        for i=1, smw_count do
            result = result .. addChapter(i, frame.args[i])
        end

        result = result .. "\n<headertabs />"
    else
        result = frame.args[1]
    end

    return frame:preprocess(result)
end

return p