Module:SS Medals: Difference between revisions

From JoJo's Bizarre Encyclopedia - JoJo Wiki
Jump to navigation Jump to search
Content deleted Content added
No edit summary
No edit summary
Line 1: Line 1:
local p = {}
local p = {}


function p.getTitle(id)
function p.getData(frame)
-- Load JSON data from the page "JoJo Wiki:SS Medals"
-- Load JSON data directly from the page "JoJo Wiki:SS Medals"
local jsonData = mw.loadJsonData('JoJo Wiki:SS Medals')
local data = mw.loadJsonData('JoJo Wiki:SS Medals')
-- Retrieve the ID and parameter to return from the passed frame arguments
-- Parse JSON data
local data = mw.text.jsonDecode(jsonData)
local id = frame.args[1]
local param = frame.args[2] -- Parameter to return (e.g., title, rarity, character)
-- Search for the entry with the given ID
-- Check if data for the given ID exists and the parameter is valid
for _, entry in ipairs(data) do
if data[id] and data[id][param] then
return tostring(data[id][param]) -- Convert to string if necessary
if entry.id == id then
else
return entry.title
return "No data found for the given ID or parameter."
end
end
end
return nil
end
end



Revision as of 20:23, 2 June 2024

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

local p = {}

function p.getData(frame)
    -- Load JSON data directly from the page "JoJo Wiki:SS Medals"
    local data = mw.loadJsonData('JoJo Wiki:SS Medals')
    
    -- Retrieve the ID and parameter to return from the passed frame arguments
    local id = frame.args[1]
    local param = frame.args[2] -- Parameter to return (e.g., title, rarity, character)
    
    -- Check if data for the given ID exists and the parameter is valid
    if data[id] and data[id][param] then
        return tostring(data[id][param]) -- Convert to string if necessary
    else
        return "No data found for the given ID or parameter."
    end
end

return p