Module:SS Medals: Difference between revisions

From JoJo's Bizarre Encyclopedia - JoJo Wiki
Jump to navigation Jump to search
Content deleted Content added
Undo revision 968375 by Vish (talk)
Tag: Undo
No edit summary
Tag: Reverted
Line 1: Line 1:
local p = {}
local p = {}


-- getClass function to determine the correct class value
-- Helper function to determine the correct class value and format it
local function getClass(data, id, forDisplay)
local function getClass(data, id, frame, forDisplay)
local class = data[id]["class"]
local class = data[id]["class"]
if not class then
return "None"
end

if type(class) == "string" then
if type(class) == "string" then
-- Process single string class
return forDisplay and frame:preprocess("{{SSIcon|" .. class .. "}}") or class
if forDisplay then
return frame:preprocess("{{SSIcon|" .. class .. "}}")
else
return class
end
elseif type(class) == "table" then
elseif type(class) == "table" then
-- Process list of classes
if #class == 1 then
if #class == 1 then
return forDisplay and frame:preprocess("{{SSIcon|" .. class[1] .. "}}") or class[1]
-- Single class in a table
if forDisplay then
return frame:preprocess("{{SSIcon|" .. class[1] .. "}}")
else
return class[1]
end
elseif forDisplay then
elseif forDisplay then
-- Multiple classes; format each with SSIcon
local result = {}
local result = {}
for _, v in ipairs(class) do
for _, v in ipairs(class) do
table.insert(result, frame:preprocess("{{SSIcon|" .. v .. "}}"))
result[#result + 1] = frame:preprocess("{{SSIcon|" .. v .. "}}")
end
end
return table.concat(result)
return table.concat(result)
Line 29: Line 45:
end
end


-- Handle image file name generation and specific class-based requests
if param == "frameImage" then
if param == "frameImage" then
local rarity = data[id]["rarity"] or "None"
local rarity = data[id]["rarity"] or "None"
local class = getClass(data, id, false)
local class = getClass(data, id, frame, false)
return string.format("Unit_Frame_%s_%s.png", rarity, class)
return string.format("Unit_Frame_%s_%s.png", rarity, class)
elseif param == "ability" then
elseif param == "ability" then
local class = getClass(data, id, false)
local class = getClass(data, id, frame, false)
return string.format("Unit_Ability_%s.png", class)
return string.format("Unit_Ability_%s.png", class)
elseif param == "coinImage" then
elseif param == "coinImage" then
Line 42: Line 57:
return string.format("Unit_bg_%s.png", data[id]["rarity"] or "None")
return string.format("Unit_bg_%s.png", data[id]["rarity"] or "None")
elseif param == "class" then
elseif param == "class" then
return getClass(data, id, true) -- Return class for display with SSIcon
return getClass(data, id, frame, true)
elseif param.match("^character%d+$") then

-- Handling specific requests for 'character' parameters
elseif param:match("^character%d+$") then
local index = tonumber(param:match("%d+"))
local index = tonumber(param:match("%d+"))
local characters = data[id]["character"]
local characters = data[id]["character"]
Line 56: Line 69:
if type(data[id]["character"]) == "table" then
if type(data[id]["character"]) == "table" then
if #data[id]["character"] == 1 then
if #data[id]["character"] == 1 then
return data[id]["character"][1] -- Return the single character if there's only one
return data[id]["character"][1]
else
else
return table.concat(data[id]["character"], ", ") -- Concatenate with comma if multiple
return table.concat(data[id]["character"], ", ")
end
end
elseif type(data[id]["character"]) == "string" then
elseif type(data[id]["character"]) == "string" then
Line 66: Line 79:
end
end
else
else
-- Standard parameter handling
local value = data[id][param]
local value = data[id][param]
if value then
if value then

Revision as of 19:23, 7 June 2024

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

local p = {}

-- Helper function to determine the correct class value and format it
local function getClass(data, id, frame, forDisplay)
    local class = data[id]["class"]
    if not class then
        return "None"
    end

    if type(class) == "string" then
        -- Process single string class
        if forDisplay then
            return frame:preprocess("{{SSIcon|" .. class .. "}}")
        else
            return class
        end
    elseif type(class) == "table" then
        -- Process list of classes
        if #class == 1 then
            -- Single class in a table
            if forDisplay then
                return frame:preprocess("{{SSIcon|" .. class[1] .. "}}")
            else
                return class[1]
            end
        elseif forDisplay then
            -- Multiple classes; format each with SSIcon
            local result = {}
            for _, v in ipairs(class) do
                result[#result + 1] = frame:preprocess("{{SSIcon|" .. v .. "}}")
            end
            return table.concat(result)
        end
    end
    return "None"
end

function p.getData(frame)
    local data = mw.loadJsonData('JoJo Wiki:SS Medals')
    local id = frame.args[1]
    local param = frame.args[2]

    if not data[id] then
        return "N/A"
    end

    if param == "frameImage" then
        local rarity = data[id]["rarity"] or "None"
        local class = getClass(data, id, frame, false)
        return string.format("Unit_Frame_%s_%s.png", rarity, class)
    elseif param == "ability" then
        local class = getClass(data, id, frame, false)
        return string.format("Unit_Ability_%s.png", class)
    elseif param == "coinImage" then
        return string.format("Unit_Coin_%s.png", data[id]["rarity"] or "None")
    elseif param == "bgImage" then
        return string.format("Unit_bg_%s.png", data[id]["rarity"] or "None")
    elseif param == "class" then
        return getClass(data, id, frame, true)
    elseif param.match("^character%d+$") then
        local index = tonumber(param:match("%d+"))
        local characters = data[id]["character"]
        if characters and type(characters) == "table" and characters[index] then
            return characters[index]
        else
            return "None"
        end
    elseif param == "character" then
        if type(data[id]["character"]) == "table" then
            if #data[id]["character"] == 1 then
                return data[id]["character"][1]
            else
                return table.concat(data[id]["character"], ", ")
            end
        elseif type(data[id]["character"]) == "string" then
            return data[id]["character"]
        else
            return "None"
        end
    else
        local value = data[id][param]
        if value then
            if type(value) == "table" then
                return table.concat(value, ", ")
            else
                return tostring(value)
            end
        else
            return "None"
        end
    end
end

return p